blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6a8fa52904f38b005d51dfb1e2d6ee9faa650a52 | e1e43f3e90aa96d758be7b7a8356413a61a2716f | /datacommsserver/esockserver/test/TE_Socket/SocketTestSection7.cpp | 4f12df59ec54d023603d3f655700768189d3e649 | [] | no_license | SymbianSource/oss.FCL.sf.os.commsfw | 76b450b5f52119f6bf23ae8a5974c9a09018fdfa | bc8ac1a6d5273cbfa7852bbb8ce27d6ddc076984 | refs/heads/master | 2021-01-18T23:55:06.285537 | 2010-10-03T23:21:43 | 2010-10-03T23:21:43 | 72,773,202 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,448 | cpp | // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// This contains ESock Test cases from section 7
//
//
// EPOC includes
#include <e32base.h>
// Test system includes
#include "SocketTestSection7.h"
// Test step 7.1
const TDesC& CSocketTest7_1::GetTestName()
{
_LIT(ret,"Test7.1");
return ret;
}
enum TVerdict CSocketTest7_1::InternalDoTestStepL( void )
{
TVerdict verdict = EPass;
Logger().WriteFormat(_L("Test Purpose: Alloc Heaven during socket open"));
#if defined (_DEBUG_SOCKET_FUNCTIONS)
// connect to esock
Logger().WriteFormat(_L("Attempting to connect to socket server"));
RSocketServ ss;
TInt ret = OptimalConnect(ss);
CleanupClosePushL(ss);
Logger().WriteFormat(_L("Connect returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// get a protocol
Logger().WriteFormat(_L("Attempting to FindProtocol dummy protocol 1"));
TProtocolDesc protoInfo;
ret = ss.FindProtocol(_L("Dummy Protocol 1"), protoInfo);
Logger().WriteFormat(_L("FindProtocol returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// Stretch socket arrays in the server.
RSocket *sockets = new (ELeave) RSocket[KNumStretchOpens];
CleanupArrayDeletePushL(sockets);
TInt i;
Logger().WriteFormat(_L("Attempting to Open %d sockets"), KNumStretchOpens);
for (i=0; i<KNumStretchOpens; i++)
{
ret = sockets[i].Open(ss, protoInfo.iAddrFamily, protoInfo.iSockType, protoInfo.iProtocol);
if (KErrNone != ret)
{
Logger().WriteFormat(_L("Open returned %S for socket %d"), &EpocErrorToText(ret), i);
TESTL(EFalse);
}
}
Logger().WriteFormat(_L("Closing the first %d sockets"), KNumStretchOpens-1);
for (i=0; i<KNumStretchOpens-1; i++)
{
sockets[i].Close();
}
RSocket sock;
TInt failure = 0;
ret = -1;
Logger().WriteFormat(_L("Starting OOM Socket Open Loop"));
// ss.__DbgMarkHeap(); // in ESOCKMT leak checking is best done by shutting down the server
while (ret != KErrNone)
{
Logger().WriteFormat(_L("Failing after %d allocs"), failure);
ss.__DbgFailNext(failure);
ret = sock.Open(ss, protoInfo.iAddrFamily, protoInfo.iSockType, protoInfo.iProtocol);
// if (ret != KErrNone)
// {
// ss.__DbgCheckHeap(0);
// }
failure++;
}
Logger().WriteFormat(_L("Created socket OK"));
sockets[KNumStretchOpens-1].Close();
CleanupStack::PopAndDestroy(sockets);
sock.Close();
// ss.__DbgMarkEnd(0);
// Flush any FailNext there might be hanging around.
ss.__DbgFailNext(-1);
CleanupStack::Pop(&ss);
ss.Close();
#else
Logger().WriteFormat(_L("TestDisabled on release build."));
verdict = EInconclusive;
#endif
SetTestStepResult(verdict);
return verdict;
}
// Test step 7.2
const TDesC& CSocketTest7_2::GetTestName()
{
_LIT(ret,"Test7.2");
return ret;
}
enum TVerdict CSocketTest7_2::InternalDoTestStepL( void )
{
TVerdict verdict = EPass;
Logger().WriteFormat(_L("Test Purpose: Alloc Heaven during host resolver open"));
#if defined (_DEBUG_SOCKET_FUNCTIONS)
// connect to esock
Logger().WriteFormat(_L("Attempting to connect to socket server"));
RSocketServ ss;
TInt ret = OptimalConnect(ss);
CleanupClosePushL(ss);
Logger().WriteFormat(_L("Connect returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// get a protocol
Logger().WriteFormat(_L("Attempting to FindProtocol dummy protocol 1"));
TProtocolDesc protoInfo;
ret = ss.FindProtocol(_L("Dummy Protocol 1"), protoInfo);
Logger().WriteFormat(_L("FindProtocol returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// Stretch host resolver arrays in the server.
RHostResolver *hrs = new (ELeave) RHostResolver[KNumStretchOpens];
CleanupArrayDeletePushL(hrs);
Logger().WriteFormat(_L("Attempting to Open %d host resolvers"), KNumStretchOpens);
TInt i;
for (i=0; i<KNumStretchOpens; i++)
{
ret = hrs[i].Open(ss, protoInfo.iAddrFamily, protoInfo.iProtocol);
if (KErrNone != ret)
{
Logger().WriteFormat(_L("Open returned %S for host resolver %d"), &EpocErrorToText(ret), i);
TESTL(EFalse);
}
}
Logger().WriteFormat(_L("Closing the first %d host resolvers"), KNumStretchOpens-1);
for (i=0; i<KNumStretchOpens-1; i++)
{
hrs[i].Close();
}
RHostResolver hr;
TInt failure = 0;
ret = -1;
Logger().WriteFormat(_L("Starting OOM Host Resolver Open Loop"));
// ss.__DbgMarkHeap(); // in ESOCKMT leak checking is best done by shutting down the server
while (ret != KErrNone)
{
Logger().WriteFormat(_L("Failing after %d allocs"), failure);
ss.__DbgFailNext(failure);
ret = hr.Open(ss, protoInfo.iAddrFamily, protoInfo.iProtocol);
// if (ret != KErrNone)
// {
// ss.__DbgCheckHeap(0);
// }
failure++;
}
Logger().WriteFormat(_L("Created Host Resolver OK"));
hrs[KNumStretchOpens-1].Close();
CleanupStack::PopAndDestroy(hrs);
hr.Close();
// ss.__DbgMarkEnd(0);
// Flush any FailNext there might be hanging around.
ss.__DbgFailNext(-1);
CleanupStack::Pop(&ss);
ss.Close();
#else
Logger().WriteFormat(_L("TestDisabled on release build."));
verdict = EInconclusive;
#endif
SetTestStepResult(verdict);
return verdict;
}
// Test step 7.3
const TDesC& CSocketTest7_3::GetTestName()
{
_LIT(ret,"Test7.3");
return ret;
}
enum TVerdict CSocketTest7_3::InternalDoTestStepL( void )
{
TVerdict verdict = EPass;
Logger().WriteFormat(_L("Test Purpose: Alloc Heaven for service resolver open"));
#if defined (_DEBUG_SOCKET_FUNCTIONS)
// connect to esock
Logger().WriteFormat(_L("Attempting to connect to socket server"));
RSocketServ ss;
TInt ret = OptimalConnect(ss);
CleanupClosePushL(ss);
Logger().WriteFormat(_L("Connect returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// get a protocol
Logger().WriteFormat(_L("Attempting to FindProtocol dummy protocol 1"));
TProtocolDesc protoInfo;
ret = ss.FindProtocol(_L("Dummy Protocol 1"), protoInfo);
Logger().WriteFormat(_L("FindProtocol returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// Stretch service resolver arrays in the server.
RServiceResolver *srs = new (ELeave) RServiceResolver[KNumStretchOpens];
CleanupArrayDeletePushL(srs);
TInt i;
Logger().WriteFormat(_L("Attempting to Open %d service resolvers"), KNumStretchOpens);
for (i=0; i<KNumStretchOpens; i++)
{
ret = srs[i].Open(ss, protoInfo.iAddrFamily, protoInfo.iSockType, protoInfo.iProtocol);
if (KErrNone != ret)
{
Logger().WriteFormat(_L("Open returned %S for service resolver %d"), &EpocErrorToText(ret), i);
TESTL(EFalse);
}
}
Logger().WriteFormat(_L("Closing the first %d service resolvers"), KNumStretchOpens-1);
for (i=0; i<KNumStretchOpens-1; i++)
{
srs[i].Close();
}
RServiceResolver sr;
TInt failure = 0;
ret = -1;
Logger().WriteFormat(_L("Starting OOM Service Resolver Open Loop"));
// ss.__DbgMarkHeap(); // in ESOCKMT leak checking is best done by shutting down the server
while (ret != KErrNone)
{
Logger().WriteFormat(_L("Failing after %d allocs"), failure);
ss.__DbgFailNext(failure);
ret = sr.Open(ss, protoInfo.iAddrFamily, protoInfo.iSockType, protoInfo.iProtocol);
// if (ret != KErrNone)
// {
// ss.__DbgCheckHeap(0);
// }
failure++;
}
Logger().WriteFormat(_L("Created service resolver OK"));
srs[KNumStretchOpens-1].Close();
CleanupStack::PopAndDestroy(srs);
sr.Close();
// ss.__DbgMarkEnd(0);
// Flush any FailNext there might be hanging around.
ss.__DbgFailNext(-1);
CleanupStack::Pop(&ss);
ss.Close();
#else
Logger().WriteFormat(_L("TestDisabled on release build."));
verdict = EInconclusive;
#endif
SetTestStepResult(verdict);
return verdict;
}
// Test step 7.4
const TDesC& CSocketTest7_4::GetTestName()
{
_LIT(ret,"Test7.4");
return ret;
}
enum TVerdict CSocketTest7_4::InternalDoTestStepL( void )
{
TVerdict verdict = EPass;
Logger().WriteFormat(_L("Test Purpose: Alloc Heaven for net database open"));
#if defined (_DEBUG_SOCKET_FUNCTIONS)
// connect to esock
Logger().WriteFormat(_L("Attempting to connect to socket server"));
RSocketServ ss;
TInt ret = OptimalConnect(ss);
CleanupClosePushL(ss);
Logger().WriteFormat(_L("Connect returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// get a protocol
Logger().WriteFormat(_L("Attempting to FindProtocol dummy protocol 1"));
TProtocolDesc protoInfo;
ret = ss.FindProtocol(_L("Dummy Protocol 1"), protoInfo);
Logger().WriteFormat(_L("FindProtocol returned %S"), &EpocErrorToText(ret));
TESTL(KErrNone == ret);
// Stretch net database arrays in the server.
RNetDatabase *ndbs = new (ELeave) RNetDatabase[KNumStretchOpens];
CleanupArrayDeletePushL(ndbs);
Logger().WriteFormat(_L("Attempting to Open %d net databases"), KNumStretchOpens);
TInt i;
for (i=0; i<KNumStretchOpens; i++)
{
ret = ndbs[i].Open(ss, protoInfo.iAddrFamily, protoInfo.iProtocol);
if (KErrNone != ret)
{
Logger().WriteFormat(_L("Open returned %S for net database %d"), &EpocErrorToText(ret), i);
TESTL(EFalse);
}
}
Logger().WriteFormat(_L("Closing the first %d net databases"), KNumStretchOpens-1);
for (i=0; i<KNumStretchOpens-1; i++)
{
ndbs[i].Close();
}
RNetDatabase ndb;
TInt failure = 0;
ret = -1;
Logger().WriteFormat(_L("Starting OOM Net Database Open Loop"));
// ss.__DbgMarkHeap(); // in ESOCKMT leak checking is best done by shutting down the server
while (ret != KErrNone)
{
Logger().WriteFormat(_L("Failing after %d allocs"), failure);
ss.__DbgFailNext(failure);
ret = ndb.Open(ss, protoInfo.iAddrFamily, protoInfo.iProtocol);
// if (ret != KErrNone)
// {
// ss.__DbgCheckHeap(0);
// }
failure++;
}
Logger().WriteFormat(_L("Created net database OK"));
ndbs[KNumStretchOpens-1].Close();
CleanupStack::PopAndDestroy(ndbs);
ndb.Close();
// ss.__DbgMarkEnd(0);
// Flush any FailNext there might be hanging around.
ss.__DbgFailNext(-1);
CleanupStack::Pop(&ss);
ss.Close();
#else
Logger().WriteFormat(_L("TestDisabled on release build."));
verdict = EInconclusive;
#endif
SetTestStepResult(verdict);
return verdict;
}
| [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
360fade339e28b3d8009e4808e7e4a3951253f04 | 9fa57f8b6bbd516f1266b4a79b5cca6f74e792cd | /fluidmodel.h | f353d6a9517d6cf3bdb5746060530e00dcf04b80 | [
"MIT"
] | permissive | 1Hyena/atomorph | aeb7c5062f2b515f4198aa74774991f74aa0e60b | e06b00a1ba2e64e55f76f23868e69589b9a4ee03 | refs/heads/master | 2023-04-15T09:52:16.151632 | 2023-04-12T14:09:48 | 2023-04-12T14:09:48 | 67,799,234 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,594 | h | /*
* See Copyright Notice at the end of this file.
*/
#ifndef FLUIDMODEL_H
#define FLUIDMODEL_H
#include <algorithm>
struct Line {
double x1, y1;
double x2, y2;
};
struct Material {
Material(double m_,
double rd_,
double k_,
double v_,
double d_,
double g_);
double m; //mass
double rd;
double k;
double v;
double d;
double g;
};
struct Particle {
Particle();
Particle(Material *mat_,
double x_,
double y_,
double u_,
double v_);
void clear();
void copy_from(Particle *p);
Material *mat;
double x;
double y;
double u;
double v;
double dudx;
double dudy;
double dvdx;
double dvdy;
unsigned cx;
unsigned cy;
double px[3];
double py[3];
double gx[3];
double gy[3];
// CUSTOM VARIABLES:
double gravity_x;
double gravity_y;
double freedom_r; // freedom radius multiplier
bool active;
bool mature;
double R,G,B,A; // ideal color (does not blend)
double r,g,b,a; // current color (blends over time)
size_t destination_pos;
size_t source_pos;
size_t frame_key;
double strength; // how easily it regains its color
bool hack;
bool source_owner; // true when it was first one to occupy the source location.
// END OF CUSTOM VARIABLES
};
struct Node {
Node();
void clear();
double m;
double d;
double gx;
double gy;
double u;
double v;
double ax;
double ay;
bool active;
size_t pos;
double r,g,b,a;
double weight;
};
class FluidModel {
public:
FluidModel(unsigned gsizeX_,
unsigned gsizeY_,
unsigned particle_count);
~FluidModel();
void setPressed(bool b);
void setMovePos(double x, double y);
void step(size_t steps_left, double freedom_radius, double t);
const Line * getLines();
Material * getMaterial();
Particle * getParticles();
unsigned get_particle_count(void) {return particle_count;}
private:
Particle * particles;
unsigned gsizeX;
unsigned gsizeY;
unsigned particle_count;
Node ** active;
unsigned activeCount;
Material water;
bool pressed;
bool pressedprev;
double mx;
double my;
double mxprev;
double myprev;
Node ** grid;
Line * lines;
};
#endif
/* This version:
* Copyright Xueqiao Xu ( http://code.google.com/p/mycodeplayground )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Download from: http://code.google.com/p/mycodeplayground
* Python version:
* Copyright Xueqiao Xu ( http://code.google.com/p/mycodeplayground )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Download from: http://code.google.com/p/mycodeplayground
* Javascript version:
* Copyright Stephen Sinclair (radarsat1) ( http://www.music.mcgill.ca/~sinclair )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Download from: http://www.music.mcgill.ca/~sinclair/blog
* Flash version:
* Copyright iunpin ( http://wonderfl.net/user/iunpin )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Download from: http://wonderfl.net/c/6eu4
* Original Java version:
* http://grantkot.com/MPM/Liquid.html
*/
| [
"hyena@hyena.net.ee"
] | hyena@hyena.net.ee |
d566df8f3e1f7c765f05fb8ca8f47ac94991abfc | ae34ed2d235e2150ba55c6a0c346569477c19826 | /ABBACA3D/290J_2015/Qdomain/QdomainOrbitalIntegrals.h | d6c4e792c93161416aef0c17a1e541f89b2acaf2 | [] | no_license | jramirezpr/walnut290J2017 | a8734c1c3f1ee67afb9a00012a169d2da48cb1b5 | 2cce4d0772ebd37d105afb0e4a3f894dba76da3e | refs/heads/master | 2021-01-19T13:22:03.986945 | 2017-04-13T20:28:27 | 2017-04-13T20:38:13 | 88,081,568 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,567 | h | /*
#############################################################################
#
# Copyright 2015-2016 Chris Anderson
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the Lesser GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# For a copy of the GNU General Public License see
# <http://www.gnu.org/licenses/>.
#
#############################################################################
*/
//
// Removed nuclear interpolation for evaluation of nuclear potential contribution
// and code for incremental construction
//
//
// Thurs. Dec. 17, 2015
//
// author: Chris Anderson
// (C) UCLA
#ifdef _USE_ASSERTS_
#include <cassert>
#endif
#include <sstream>
#include <iostream>
#include <string>
#include <vector>
#include <sys/param.h>
#include <unistd.h>
using namespace std;
#include "GridFunctionNd/UCLAQ_GridFunction3d.h"
#include "GridFunctionNd/UCLAQ_GridFunction3dUtility.h"
#include "MultiParticleHamiltonian/RealSpatialOrbitalIntegrals.h"
#include "Timing/ClockIt.h"
#ifndef _QdomainOrbitalIntegrals_
#define _QdomainOrbitalIntegrals_
#define _DEFAULT_INV_LAPLACIAN_EXTENSION_FACTOR_ 2.0
#define _DEFAULT_OUTPUT_FILENAME_ "orbitalIntegrals.dat"
#define _DEFAULT_laplaceOpCoefficient 1.0/(4.0*3.14159265358979323846)
//
// Member function required of InverseLaplaceOp for instantiation
//
// InverseLaplaceOp()
// void initialize();
// void initialize(double laplaceOpCoefficient, long xPanel, double xMin, double xMax,
// long yPanel, double yMin, double yMax,
// long zPanel, double zMin, double zMax, double invLapExtFactor);
// void applyInverseOp(const UCLAQ::GridFunction3d& V);
//
//
namespace UCLAQ
{
template < class InverseLaplaceOp, class SingleParticleOp > class QdomainOrbitalIntegrals
{
public :
QdomainOrbitalIntegrals()
{
initialize();
}
void initialize()
{
doubleOrbitalIntegralData.clear();
doubleOrbitalIntegralCount = 0;
singleOrbitalIntegralData.clear();
singleOrbitalIntegralCount = 0;
singleOrbitalIntegralIndices.clear();
doubleOrbitalIntegralIndices.clear();
singleOrbitalTime = 0.0;
doubleOrbitalTime = 0.0;
startupTime = 0.0;
totalTime = 0.0;
timingConstantsFlag = false;
binaryOutputFlag = false;
incrementalFlag = false;
xMin = 0.0; xMax = 0.0; xPanel = 0;
yMin = 0.0; yMax = 0.0; yPanel = 0;
zMin = 0.0; zMax = 0.0; zPanel = 0;
basisVectorsPtr = NULL;
invLaplaceOp3d.initialize();
invLapExtFactor = _DEFAULT_INV_LAPLACIAN_EXTENSION_FACTOR_;
outputFileName = _DEFAULT_OUTPUT_FILENAME_;
laplaceOpCoefficient = _DEFAULT_laplaceOpCoefficient;
verboseFlag = false;
}
~QdomainOrbitalIntegrals()
{}
void setVerbose(bool flagValue = true)
{verboseFlag = flagValue;}
void clearVerbose()
{verboseFlag = false;}
//
// Coefficient of Laplace operator so that inverse Laplacian
// with infinite boundary conditions yields electron-electron
// interaction potential.
//
// The default value = 1/(4*pi) is the coefficient associated with
// the Schroedinger operator in atomic units.
//
void setLaplaceOpCoefficient(double value)
{
laplaceOpCoefficient = value;
}
void setInvLaplaceExtFactor(double invLapExtFactor)
{
this->invLapExtFactor = invLapExtFactor;
}
//
// The domain characteristics are captured from either the external potential or
// one of the input orbital basis vectors. Consistency of the specification
// of the potential and orbital basis vectors is checked.
//
void attachBasisVectors(vector<UCLAQ::GridFunction3d>& externalBasisVectors)
{
basisVectorsPtr = &externalBasisVectors;
vector<UCLAQ::GridFunction3d>& basisVectors = *basisVectorsPtr;
try{captureDomainSpecificationAndInitialize(basisVectors[0]);} catch (const runtime_error& e){throw e;}
//
// Create default basis index values
//
basisIndexValues.resize(basisVectors.size());
for(long k = 0; k < basisIndexValues.size(); k++)
{
basisIndexValues[k] = (double)k;
}
}
void attachSingleParticleOperator(SingleParticleOp* sOperatorPtr)
{
singleParticleSop = sOperatorPtr;
}
void createOrbitalIntegrals(RealSpatialOrbitalIntegrals& realSpatialOrbitalIntegrals, long orbitalCount = -1)
{
if(orbitalCount <= 0)
{
orbFunBasisCount = basisVectorsPtr->size();
}
else if (orbFunBasisCount > basisVectorsPtr->size())
{
orbFunBasisCount = basisVectorsPtr->size();
}
globalClockIt.start();
clockIt.start();
orbitalProgressValue = 0;
createSingleOrbitalIntegrals();
clockIt.stop();
singleOrbitalTime = clockIt.getMilliSecElapsedTime();
clockIt.start();
orbitalProgressValue = 0;
createDoubleOrbitalIntegrals();
clockIt.stop();
doubleOrbitalTime = clockIt.getMilliSecElapsedTime();
// Pack orbital integrals into a RealSpatialOrbitalIntegrals instance
realSpatialOrbitalIntegrals.initialize(orbFunBasisCount,&basisIndexValues[0],
singleOrbitalIntegralCount, &singleOrbitalIntegralData[0], doubleOrbitalIntegralCount, &doubleOrbitalIntegralData[0]);
globalClockIt.stop();
if(verboseFlag)
{
outputTimingData();
}
}
void outputOrbitalIntegrals(RealSpatialOrbitalIntegrals& realSpatialOrbitalIntegrals, string& orbitalIntegralsFile)
{
outputFileName.assign(orbitalIntegralsFile);
if((not binaryOutputFlag)&&(not timingConstantsFlag))
{
realSpatialOrbitalIntegrals.outputOrbitalIntegralData(outputFileName);
}
else if(not timingConstantsFlag)
{
outputOrbitalIntegralDataBinary();
}
}
void captureDomainSpecificationAndInitialize(UCLAQ::GridFunction3d& gF)
{
xMin = gF.getXmin();
xMax = gF.getXmax();
yMin = gF.getYmin();
yMax = gF.getYmax();
zMin = gF.getZmin();
zMax = gF.getZmax();
xPanel = gF.getXpanelCount();
yPanel = gF.getYpanelCount();
zPanel = gF.getZpanelCount();
// Initialize required grid functions
oFunI.initialize(xPanel,xMin,xMax,yPanel,yMin,yMax,zPanel,zMin,zMax);
oFunJ.initialize(xPanel,xMin,xMax,yPanel,yMin,yMax,zPanel,zMin,zMax);
oFunIxJ.initialize(xPanel,xMin,xMax,yPanel,yMin,yMax,zPanel,zMin,zMax);
oFunMxN.initialize(xPanel,xMin,xMax,yPanel,yMin,yMax,zPanel,zMin,zMax);
// Initialize infinite domain Poisson solver
invLaplaceOp3d.initialize(laplaceOpCoefficient, xPanel, xMin, xMax,yPanel, yMin, yMax,zPanel, zMin, zMax, invLapExtFactor);
}
void createSingleOrbitalIntegrals()
{
long i; long j;
vector<UCLAQ::GridFunction3d>& basisVectors = *basisVectorsPtr;
if(not incrementalFlag)
{
singleOrbitalIntegralCount = (orbFunBasisCount)*(orbFunBasisCount+1)/2;
singleOrbitalIntegralData.resize(singleOrbitalIntegralCount);
}
else
{
singleOrbitalIntegralData.resize(singleIntegralCountIncremental);
singleOrbitalIntegralIndices.resize(singleIntegralCountIncremental);
}
long dataIndex = 0;
long ijIndex = 0;
long ijCount = 0;
//
// When constructing integrals start indices counting at 1
// and offset by -1 when accessing basis function array.
//
if(verboseFlag)
{
if(incrementalFlag != 1)
{
printf("Computing %12ld one-electron integrals \n",singleOrbitalIntegralCount);
}
else
{
printf("Computing %12ld one-electron integrals \n",singleIntegralCountIncremental);
}
}
for(i = 1; i <= orbFunBasisCount; i++)
{
oFunI = basisVectors[i-1];
singleParticleSop->apply(oFunI);
for(j = 1; j <= i; j++)
{
ijIndex = ((i-1)*i)/2 + j;
oFunJ = basisVectors[j-1];
if(incrementalFlag != 1)
{
singleOrbitalIntegralData[dataIndex]= oFunJ.scaledDot(oFunI);
}
else if((ijIndex >= ijIndexStart)&&(ijIndex <= ijIndexEnd))
{
singleOrbitalIntegralData[ijCount] = oFunJ.scaledDot(oFunI);
singleOrbitalIntegralIndices[ijCount] = dataIndex;
ijCount++;
}
dataIndex++;
if(verboseFlag)
{
if(not incrementalFlag)
{
progressMessage(dataIndex,singleOrbitalIntegralCount);
}
else
{
progressMessage(ijCount,singleIntegralCountIncremental);
}}
}}
}
//
// This method computes the single orbital integral values and then overwrites the
// corresponding values in the input realSpatialOrbitalIntegrals.
//
// The modified potential that necessitates an invocation to this member function
// is specified in the single particle Schroedinger operator which is referenced
// by this class. If the Schroedinger operator instance used to create the updated single orbital integrals
// differs from that used for the original invocation of createOrbitalIntegrals, then the new
// operator must be attached to this class using a call to the member function
//
// void attachSingleParticleOperator(QdomainSingleParticleSopBase* sOperatorPtr)
//
// before calling this update member function.
//
// !!! This method assumes that there has been a previous invocation of createOrbitalIntegrals
// Error checking is NOT done to validate this assumption.
//
// Assumptions:
//
// (*) The reference to the single particle Schroedinger operator has been set to a valid instance.
// (*) References to the orbital basis has been set to a valid instance.
// (*) The number of orbitals has been specified.
// (*) The nuclear interpolant has been initialized (if needed)
//
//
void updateSingleOrbitalIntegrals(RealSpatialOrbitalIntegrals& realSpatialOrbitalIntegrals)
{
string errMessage;
if(singleOrbitalIntegralCount != realSpatialOrbitalIntegrals.singleOrbitalIntegralCount)
{
errMessage = "\nXXX QdomainOrbitalIntegrals XXX\n";
errMessage += "Error in member function updateSingleOrbitalIntegrals(...)\n\n";
errMessage += "Allocation for the updated single orbital integral data in \n";
errMessage += "input realSpatialOrbitalIntegrals instance is \n";
errMessage += "insufficient for updated values.\n";
throw std::runtime_error(errMessage);
}
globalClockIt.start();
clockIt.start();
orbitalProgressValue = 0;
createSingleOrbitalIntegrals();
clockIt.stop();
singleOrbitalTime = clockIt.getMilliSecElapsedTime();
// Re-pack single orbital integral data into realSpatialOrbitalIntegrals;
for(long i = 0; i < singleOrbitalIntegralCount; i++)
{realSpatialOrbitalIntegrals.singleOrbitalIntegralData[i] = singleOrbitalIntegralData[i];}
if(verboseFlag)
{
outputTimingData();
}
}
void createDoubleOrbitalIntegrals()
{
vector<UCLAQ::GridFunction3d>& basisVectors = *basisVectorsPtr;
long i; long j;
long m; long n;
long p = orbFunBasisCount;
long ijIndex = 0;
long dCount = 0;
doubleOrbitalIntegralCount = (p*(p*p*p + 2*p*p + 3*p +2))/8;
if(not incrementalFlag)
{
if(verboseFlag)
{
printf("Computing %12ld two-electron integrals \n",doubleOrbitalIntegralCount);
}
doubleOrbitalIntegralData.resize(doubleOrbitalIntegralCount);
for(i = 0; i < doubleOrbitalIntegralCount; i++)
{doubleOrbitalIntegralData[i] = 0.0;}
}
else
{
if(verboseFlag)
{
printf("Computing %12ld two-electron integrals \n",doubleIntegralCountIncremental);
}
doubleOrbitalIntegralData.resize(doubleIntegralCountIncremental);
doubleOrbitalIntegralIndices.resize(doubleIntegralCountIncremental);
for(i = 0; i < doubleIntegralCountIncremental; i++)
{doubleOrbitalIntegralData[i] = 0.0;}
}
long dataIndex = 0;
//
// When constructing integrals start indices counting at 1
// and offset by -1 when accessing basis function array.
//
for(i = 1; i <= orbFunBasisCount; i++)
{
for(j = 1; j <= i; j++)
{
ijIndex = ((i-1)*i)/2 + j;
if(not incrementalFlag)
{
oFunIxJ = basisVectors[i-1];
oFunIxJ *= basisVectors[j-1];
//
// Evaluate the convolution of the Green's function with oFunI x oFunJ
//
invLaplaceOp3d.applyInverseOp(oFunIxJ);
}
else if((ijIndex >= ijIndexStart)&&(ijIndex <= ijIndexEnd))
{
oFunIxJ = basisVectors[i-1];
oFunIxJ *= basisVectors[j-1];
//
// Evaluate the convolution of the Green's function with oFunI x oFunJ
//
invLaplaceOp3d.applyInverseOp(oFunIxJ);
}
// m < i
for(m = 1; m < i; m++)
{
for(n = 1; n <= m; n++)
{
if(incrementalFlag != 1)
{
oFunMxN = basisVectors[m-1];
oFunMxN *= basisVectors[n-1];
// - sign included because the Green's function is -Delta^(-1)
doubleOrbitalIntegralData[dataIndex] = -oFunMxN.scaledDot(oFunIxJ);
}
else if((ijIndex >= ijIndexStart)&&(ijIndex <= ijIndexEnd))
{
oFunMxN = basisVectors[m-1];
oFunMxN *= basisVectors[n-1];
// - sign included because the Green's function is -Delta^(-1)
doubleOrbitalIntegralData[dCount] = -oFunMxN.scaledDot(oFunIxJ);
doubleOrbitalIntegralIndices[dCount] = dataIndex;
dCount++;
}
dataIndex++;
if(verboseFlag)
{
if(incrementalFlag != 1)
{progressMessage(dataIndex,doubleOrbitalIntegralCount);}
else
{progressMessage(dCount,doubleIntegralCountIncremental);}
}
}
}
m = i;
for(n = 1; n <= j; n++)
{
if(incrementalFlag != 1)
{
oFunMxN = basisVectors[m-1];
oFunMxN *= basisVectors[n-1];
// - sign included because the Green's function is -Delta^(-1)
doubleOrbitalIntegralData[dataIndex] = -oFunMxN.scaledDot(oFunIxJ);
}
else if((ijIndex >= ijIndexStart)&&(ijIndex <= ijIndexEnd))
{
oFunMxN = basisVectors[m-1];
oFunMxN *= basisVectors[n-1];
// - sign included because the Green's function is -Delta^(-1)
doubleOrbitalIntegralData[dCount] = -oFunMxN.scaledDot(oFunIxJ);
doubleOrbitalIntegralIndices[dCount] = dataIndex;
dCount++;
}
dataIndex++;
if(verboseFlag)
{
if(incrementalFlag != 1)
{progressMessage(dataIndex,doubleOrbitalIntegralCount);}
else
{progressMessage(dCount,doubleIntegralCountIncremental);}
}
}
}}
}
void outputOrbitalIntegralDataBinary()
{
ostringstream s;
FILE *binaryDataFile;
if(incrementalFlag != 1)
{
if( (binaryDataFile = fopen(outputFileName.c_str(), "wb" )) == NULL )
{
printf( "The file %s could not be opened\n",outputFileName.c_str());
exit(1);
}
int orbFunBasisCountInt = orbFunBasisCount;
int singleOrbitalIntegralCountInt = singleOrbitalIntegralCount;
int doubleOrbitalIntegralCountInt = doubleOrbitalIntegralCount;
fwrite(&orbFunBasisCountInt, sizeof(int), 1, binaryDataFile);
fwrite(&singleOrbitalIntegralCountInt, sizeof(int), 1, binaryDataFile);
fwrite(&doubleOrbitalIntegralCountInt, sizeof(int), 1, binaryDataFile);
//fwrite(&orbFunBasisCount, sizeof(long), 1, binaryDataFile);
//fwrite(&singleOrbitalIntegralCount, sizeof(long), 1, binaryDataFile);
//fwrite(&doubleOrbitalIntegralCount, sizeof(long), 1, binaryDataFile);
fwrite(&basisIndexValues[0],sizeof(double),orbFunBasisCount,binaryDataFile);
fwrite(&singleOrbitalIntegralData[0], sizeof(double),singleOrbitalIntegralCount,binaryDataFile);
fwrite(&doubleOrbitalIntegralData[0], sizeof(double),doubleOrbitalIntegralCount,binaryDataFile);
fclose(binaryDataFile);
printf("\n#######################################################\n\n");
printf("Orbital Integral Data File (binary format): %s \n",outputFileName.c_str());
printf("\n#######################################################\n");
return;
}
//
// Create file names for incremental results
//
string binFilePrefix(outputFileName);
string singleIndicesName = binFilePrefix + "SingleIndices.bin";
string doubleIndicesName = binFilePrefix + "DoubleIndices.bin";
string singleIntegralsName = binFilePrefix + "SingleIntegrals.bin";
string doubleIntegralsName = binFilePrefix + "DoubleIntegrals.bin";
//
// write out the number of indices output and then the indices
//
if( (binaryDataFile = fopen(singleIndicesName.c_str(), "wb" )) == NULL )
{
printf( "The file %s could not be opened\n",singleIndicesName.c_str());
exit(1);
}
fwrite(&singleIntegralCountIncremental,sizeof(int), 1, binaryDataFile);
fwrite(&singleOrbitalIntegralIndices[0], sizeof(int),singleIntegralCountIncremental, binaryDataFile);
fclose(binaryDataFile);
//
// write out the number of integrals output and then the integrals
//
if( (binaryDataFile = fopen(singleIntegralsName.c_str(), "wb" )) == NULL )
{
printf( "The file %s could not be opened\n",singleIntegralsName.c_str());
exit(1);
}
fwrite(&singleIntegralCountIncremental,sizeof(int), 1, binaryDataFile);
fwrite(&singleOrbitalIntegralData[0], sizeof(double),singleIntegralCountIncremental, binaryDataFile);
fclose(binaryDataFile);
//
// write out the number of indices output and then the indices
//
if( (binaryDataFile = fopen(doubleIndicesName.c_str(), "wb" )) == NULL )
{
printf( "The file %s could not be opened\n",doubleIndicesName.c_str());
exit(1);
}
fwrite(&doubleIntegralCountIncremental,sizeof(int), 1, binaryDataFile);
fwrite(&doubleOrbitalIntegralIndices[0], sizeof(int),doubleIntegralCountIncremental, binaryDataFile);
fclose(binaryDataFile);
//
// write out the number of integrals output and then the integrals
//
if( (binaryDataFile = fopen(doubleIntegralsName.c_str(), "wb" )) == NULL )
{
printf( "The file %s could not be opened\n",doubleIntegralsName.c_str());
exit(1);
}
fwrite(&doubleIntegralCountIncremental,sizeof(int), 1, binaryDataFile);
fwrite(&doubleOrbitalIntegralData[0], sizeof(double),doubleIntegralCountIncremental, binaryDataFile);
fclose(binaryDataFile);
printf("\n#######################################################\n\n");
printf("Orbital Integral Data Files Output (binary format) \n");
printf("=== %s \n",singleIndicesName.c_str());
printf("=== %s \n",singleIntegralsName.c_str());
printf("=== %s \n",doubleIndicesName.c_str());
printf("=== %s \n",doubleIntegralsName.c_str());
char* fullPath;
printf("\n");
fullPath = realpath(singleIndicesName.c_str(),NULL);
printf("singleIndicesPath : %s \n",fullPath);
free(fullPath);
fullPath = realpath(singleIntegralsName.c_str(),NULL);
printf("singleIntegralsPath : %s \n",fullPath);
free(fullPath);
fullPath = realpath(doubleIndicesName.c_str(),NULL);
printf("doubleIndicesPath : %s \n",fullPath);
free(fullPath);
fullPath = realpath(doubleIntegralsName.c_str(),NULL);
printf("doubleIntegralsPath : %s \n",fullPath);
free(fullPath);
printf("\n#######################################################\n");
}
void progressMessage(long dataIndex,long totalIndexSize)
{
long percentDone = long ((double(dataIndex)/double(totalIndexSize))*10.0);
if(percentDone > orbitalProgressValue)
{
printf("Completed %5ld %% of the required integrals \n",percentDone*10);
orbitalProgressValue = percentDone;
}
}
void outputTimingData()
{
totalTime = globalClockIt.getMilliSecElapsedTime();
printf("Clock Time Taken (minutes) : %15.6f \n",totalTime/(60000.0));
printf("Startup Time Taken (seconds) : %15.8e \n",startupTime/(1000.0));
printf("Single Integral Time Taken (seconds) : %15.8e \n",singleOrbitalTime/(1000.0));
printf("Double Integral Time Taken (seconds) : %15.8e \n",doubleOrbitalTime/(1000.0));
printf("OrbitalIntegrals_Time_M : %15.6f \n",totalTime/(60000.0));
}
//
// This routine times the dot product component of the double orbital integral
// calculation.
//
double timeDots(long repetitions)
{
vector<UCLAQ::GridFunction3d>& basisVectors = *basisVectorsPtr;
long i; long j;
long m; long n;
UCLAQ::GridFunction3d oFunIxJ(basisVectors[0]);
UCLAQ::GridFunction3d oFunMxN(basisVectors[0]);
oFunIxJ = basisVectors[0];
oFunMxN = basisVectors[1];
double dotVal;
clockIt.start();
long k;
for(k = 1; k <= repetitions; k++)
{
for(i = 1; i <= orbFunBasisCount; i++)
{
for(j = 1; j <= i; j++)
{
for(m = 1; m < i; m++)
{
for(n = 1; n <= m; n++)
{
dotVal = oFunMxN.scaledDot(oFunIxJ);
}}
m = i;
for(n = 1; n <= j; n++)
{
dotVal = oFunMxN.scaledDot(oFunIxJ);
}
}}
}
clockIt.stop();
double dotTime = (clockIt.getMilliSecElapsedTime())/((double)(repetitions));
dotTime = dotTime/double(doubleOrbitalIntegralCount);
return dotTime;
}
//
// This routine times the grid function product component of the
// double orbital integral calculation.
//
double timeProducts(long repetitions)
{
vector<UCLAQ::GridFunction3d>& basisVectors = *basisVectorsPtr;
long i; long j;
long m; long n;
UCLAQ::GridFunction3d oFunIxJ(basisVectors[0]);
UCLAQ::GridFunction3d oFunMxN(basisVectors[0]);
oFunIxJ = basisVectors[0];
oFunMxN = basisVectors[1];
double dotVal;
clockIt.start();
long k;
for(k = 1; k <= repetitions; k++)
{
for(i = 1; i <= orbFunBasisCount; i++)
{
for(j = 1; j <= i; j++)
{
oFunIxJ = basisVectors[i-1];
oFunIxJ *= basisVectors[j-1];
for(m = 1; m < i; m++)
{
for(n = 1; n <= m; n++)
{
oFunMxN = basisVectors[m-1];
oFunMxN *= basisVectors[n-1];
}}
m = i;
for(n = 1; n <= j; n++)
{
oFunMxN = basisVectors[m-1];
oFunMxN *= basisVectors[n-1];
}
}}
}
clockIt.stop();
double prodTime = (clockIt.getMilliSecElapsedTime())/((double)(repetitions));
prodTime = prodTime/double(doubleOrbitalIntegralCount + singleOrbitalIntegralCount);
return prodTime;
}
// void run();
//void readParameterLists();
//void readParameterLists(const char* parameterInputFile);
//void readParameterLists(XML_ParameterListArray& paramsInput);
//void getExtenralPotential();
//void getOrbitalBasis();
void setTimingConstantsFlag(bool flagValue = true)
{timingConstantsFlag = flagValue;}
void clearTimingConstantsFlag()
{timingConstantsFlag = false;}
//
// Input/output parameters
//
long orbFunBasisCount;
string orbFunBasisFileName;
string outputFileName;
bool binaryOutputFlag;
string programInputFileName;
//
// Parameters required to set up the 3D grid
//
double xMin; double xMax; long xPanel;
double yMin; double yMax; long yPanel;
double zMin; double zMax; long zPanel;
//
// Grid functions for computing single and double orbital integrals
//
UCLAQ::GridFunction3d oFunI;
UCLAQ::GridFunction3d oFunJ;
UCLAQ::GridFunction3d oFunIxJ;
UCLAQ::GridFunction3d oFunMxN;
//
// The use of a pointer for the orbital basis vectors
// facilitates the use of this class to create orbitals when
// basis functions are externally managed.
//
vector<double> basisIndexValues;
vector< UCLAQ::GridFunction3d >* basisVectorsPtr;
// Pointer to single particle Schroedinger operator
SingleParticleOp* singleParticleSop;
//
// Inverse Laplace operator and requisite parameter
//
double invLapExtFactor;
InverseLaplaceOp invLaplaceOp3d;
//
// Coefficient of Laplace operator so that inverse Laplacian
// with infinite boundary conditions yields electron-electron
// interaction potential.
//
// The default value = 1/(4*pi) is the coefficient associated with
// the Schroedinger operator in atomic units.
//
double laplaceOpCoefficient;
//
// Parameters for parallel construction
//
bool incrementalFlag;
long iStart;
long iEnd;
long jStart;
long jEnd;
long ijIndexStart;
long ijIndexEnd;
long doubleIntegralCountIncremental;
long singleIntegralCountIncremental;
vector<int> singleOrbitalIntegralIndices;
vector<int> doubleOrbitalIntegralIndices;
//
// Orbital data
//
long singleOrbitalIntegralCount;
vector<double> singleOrbitalIntegralData;
long doubleOrbitalIntegralCount;
vector<double> doubleOrbitalIntegralData;
long orbitalProgressValue;
//
// Timing data and routines
//
ClockIt clockIt;
ClockIt globalClockIt;
bool timingConstantsFlag;
double singleOrbitalTime;
double doubleOrbitalTime;
double startupTime;
double totalTime;
bool verboseFlag;
};
} // UCLAQ namespace
#undef _DEFAULT_INV_LAPLACIAN_EXTENSION_FACTOR_
#undef _DEFAULT_LAPLACE_OP_ORDER_
#undef _DEFAULT_OUTPUT_FILENAME_
#undef _DEFAULT_laplaceOpCoefficient
#endif
| [
"jramirezpr@walnut.math.ucla.edu"
] | jramirezpr@walnut.math.ucla.edu |
556b53b1e59535465b3cffa8fcc278586c7ab690 | 8a7836c37daf54d0585baff10fce72331deeb5e9 | /Classes/character.h | 3b0b90895ac401df8ca8572cc8190c7ae1a66882 | [] | no_license | aMammoth/CustomPuzzleLeague | 586d98be56310e180ffbc8cd064fa7e07519e6f1 | 383d649d84bc5a786a67d70d976462fbca4f0b70 | refs/heads/master | 2021-01-22T21:38:02.114694 | 2015-03-01T22:05:14 | 2015-03-01T22:05:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,080 | h | #ifndef __CHARACTER_H_CPL__
#define __CHARACTER_H_CPL__
#include <vector>
#include <memory>
#include <string>
using SharedSounds = std::shared_ptr<std::vector<std::string> >;
//Holds data for a loaded character
class Character
{
public:
//The name of the character, also its unique identifier
std::string name;
//The description of the character, to be displayed on certain conditions
std::string description;
//Sounds to be played on chaining
std::vector<SharedSounds> chains_sounds;
//Sounds to be played on comboing
std::vector<SharedSounds> combos_sounds;
//Sounds to be played on selecting
std::vector<std::string> selection_sounds;
//Sounds to be played on taunting
std::vector<std::string> taunt_sounds;
//Sounds to be played on winning
std::vector<std::string> win_sounds;
//Backgrounds to be displayed behind the board
std::vector<std::string> game_backgrounds;
//Character main sprite path
std::string main_sprite_path;
//Character icon sprite path
std::string icon_sprite_path;
//Basic constructor
Character(std::string name = "");
};
#endif | [
"filo.mystere@gmail.com"
] | filo.mystere@gmail.com |
d06e17e2b78ab43d8d43c2c9ab3b5be6e9ab1246 | 80854572da765ae5464cc818b1db4e61d3e7e1fb | /james dev area/CyUtilsCPP/CyUtilsCPP/LaunchParams.cpp | bcffcaf51b310b63c6712194b098c57a0cd92885 | [] | no_license | JCTyblaidd/CypherChallenge2 | 70785db50fde9c89618211b67caf03d307664d5e | 73d33e8328a744e93817671ae9a217efe969c3e0 | refs/heads/master | 2020-05-25T14:17:50.508638 | 2016-11-26T17:07:19 | 2016-11-26T17:07:19 | 68,601,668 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,676 | cpp | #include "LaunchParams.hpp"
#include <string>
namespace params {
void LaunchParams::Load(int argCount, char *args[]) {
flags.clear();
integral_vars.clear();
variable_vars.clear();
//Parse//
for (size_t index = 0; index < argCount; index++) {
std::string str = std::string(args[index]);
size_t diff = str.find('=', 0);
if (str[0] != '-') {
continue;
}
if (diff == std::string::npos) {
//Flag//
std::string flagType = str.substr(1);
flags.emplace(flagType);
}
else {
std::string prelim = str.substr(1, diff - 1);
std::string postLim = str.substr(diff + 1);
if (postLim == "true") {
integral_vars.emplace(prelim, 1);
}
else if (postLim == "false") {
integral_vars.emplace(prelim, 0);
}
else {
try {
int32_t t = std::stoi(postLim);
integral_vars.emplace(prelim, t);
}
catch (std::exception err) {
variable_vars.emplace(prelim, postLim);
}
}
}
}
}
bool LaunchParams::hasFlag(std::string str) {
return flags.find(str) != flags.end();
}
std::string LaunchParams::getStringWithDefault(std::string var, std::string _default) {
auto v = variable_vars.find(var);
if (v == variable_vars.end()) {
return _default;
}
else {
return variable_vars.at(var);
}
}
int32_t LaunchParams::getIntWithDefault(std::string var, int32_t _default) {
auto v = integral_vars.find(var);
if (v == integral_vars.end()) {
return _default;
}
else {
return integral_vars.at(var);
}
}
bool LaunchParams::getConditionWithDefault(std::string var, bool _default) {
return getIntWithDefault(var, static_cast<int32_t>(_default)) != 0;
}
} | [
"james@tyblaidd.co.uk"
] | james@tyblaidd.co.uk |
40ab898778e77520799497594be63204f24bbde3 | b6bd43ef98023a2fcb16dbc3ce6fd7104282ee14 | /HW0/hw0.cc | 20b9e57ca910d13ad0d1c24917c4c3ce884d67b3 | [] | no_license | Marc-9/cs253 | 9a2357cb96b5b0351008c0dbbfea148285d65f52 | a894795f3e86ee6f5de371450664ae39ff8eadfe | refs/heads/master | 2022-07-11T15:20:33.640163 | 2020-05-12T00:51:21 | 2020-05-12T00:51:21 | 263,192,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 246 | cc | #include <iostream>
using namespace std;
int main()
{
cout << "Three: One to call his dad to pay for the lightbulb\n";
cout << "Another to single handedly beat the csu football team\n";
cout << "And the third to screw it in\n";
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
4e4a3ac4bd329b76978728891a08b3b730d07932 | fa0c642ba67143982d3381f66c029690b6d2bd17 | /Source/Engine/Platform/ios/TrackingCenter/iosTrackingCenterAppCPA.h | 609ed21c32234a1127a76c1cf0736911f878e4c6 | [
"MIT"
] | permissive | blockspacer/EasyGameEngine | 3f605fb2d5747ab250ef8929b0b60e5a41cf6966 | da0b0667138573948cbd2e90e56ece5c42cb0392 | refs/heads/master | 2023-05-05T20:01:31.532452 | 2021-06-01T13:35:54 | 2021-06-01T13:35:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | h | //! @file iosTrackingCenterAppCPA.h
//! @author foreven
//! @version 1.0.0.
//! @date 2013/09/16
#pragma once
namespace EGE
{
//----------------------------------------------------------------------------
// iosTrackingCenterAppCPA
//----------------------------------------------------------------------------
class iosTrackingCenterAppCPA : public TObject< ITrackingCenter >
{
public:
iosTrackingCenterAppCPA( UStringPtr app_id );
virtual ~iosTrackingCenterAppCPA( );
private:
UString mAppID;
public:
virtual _void Start( ) override;
};
} | [
"zopenge@126.com"
] | zopenge@126.com |
b5400d738d910335eb83f2c9a544722da6ff88f1 | 07b3fce1393d998ca8c2ad525893cbc1c52105dc | /examples/Simple/Accelerometer/Accelerometer.ino | 6173f520e4a5e684d1c6c4643c5ced8ef302710e | [] | no_license | MTolba/OneSheeldPIC32 | 6291661a4a0aae57f175867d3d576506a669a919 | c01d5c41dffac71106fff665e13d915e4d6d2e92 | refs/heads/master | 2020-12-26T04:05:38.525827 | 2014-08-12T16:01:02 | 2014-08-12T16:01:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,050 | ino | /*
Accelerometer Shield Example
This example shows an application on 1Sheeld's accelerometer shield.
By using this example, you can turn on the LED on pin 13 if the
smartphone's accelerometer sensor reaches the maximum
acceleration in any of the x, y and z axises.
*/
/* Include 1Sheeld library. */
#include <OneSheeld.h>
/* A name for the LED on pin 13. */
int ledPin = 13;
void setup()
{
/* Start communication. */
OneSheeld.begin();
/* Set the LED pin as output. */
pinMode(ledPin,OUTPUT);
}
void loop()
{
if (Serial.available())OneSheeld.processInput();
/* Check X-axis acceleration. */
if(AccelerometerSensor.getX() > 8)
{
digitalWrite(ledPin,HIGH);
}
else
{
digitalWrite(ledPin,LOW);
}
/* Check Y-axis acceleration. */
if(AccelerometerSensor.getY() > 8)
{
digitalWrite(ledPin,HIGH);
}
else
{
digitalWrite(ledPin,LOW);
}
/* Check z-Axis acceleration. */
if(AccelerometerSensor.getZ() > 8)
{
digitalWrite(ledPin,HIGH);
}
else
{
digitalWrite(ledPin,LOW);
}
}
| [
"tom.kappenman@wsu.edu"
] | tom.kappenman@wsu.edu |
c13e1b3679c86e2579dc95c7ef93d4a0db0e7be9 | c1b03b59b3974058e3dc4e3aa7a46a7ab9cc3b29 | /src/module-wx.new/generated/Class_wx_GridCellChoiceEditor.cpp | ce995fa600c653c86d2d82533b49ed4931a74318 | [] | no_license | gura-lang/gura | 972725895c93c22e0ec87c17166df4d15bdbe338 | 03aff5e2b7fe4f761a16400ae7cc6fa7fec73a47 | refs/heads/master | 2021-01-25T08:04:38.269289 | 2020-05-09T12:42:23 | 2020-05-09T12:42:23 | 7,141,465 | 25 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,828 | cpp | //----------------------------------------------------------------------------
// wxGridCellChoiceEditor
//----------------------------------------------------------------------------
#include "stdafx.h"
Gura_BeginModuleScope(wx)
//----------------------------------------------------------------------------
// Gura interfaces for wxGridCellChoiceEditor
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Object implementation for wxGridCellChoiceEditor
//----------------------------------------------------------------------------
Object_wx_GridCellChoiceEditor::~Object_wx_GridCellChoiceEditor()
{
}
Object *Object_wx_GridCellChoiceEditor::Clone() const
{
return nullptr;
}
String Object_wx_GridCellChoiceEditor::ToString(bool exprFlag)
{
String rtn("<wx.GridCellChoiceEditor:");
if (GetEntity() == nullptr) {
rtn += "invalid>";
} else {
char buff[64];
::sprintf(buff, "%p>", GetEntity());
rtn += buff;
}
return rtn;
}
//----------------------------------------------------------------------------
// Constructor implementation
//----------------------------------------------------------------------------
Gura_DeclareFunctionAlias(__GridCellChoiceEditor, "GridCellChoiceEditor")
{
SetFuncAttr(VTYPE_any, RSLTMODE_Normal, FLAG_None);
//DeclareArg(env, "count", VTYPE_number, OCCUR_Once);
//DeclareArg(env, "_arg1", VTYPE_number, OCCUR_Once);
//DeclareArg(env, "allowOthers", VTYPE_number, OCCUR_Once);
SetClassToConstruct(Gura_UserClass(wx_GridCellChoiceEditor));
DeclareBlock(OCCUR_ZeroOrOnce);
}
Gura_ImplementFunction(__GridCellChoiceEditor)
{
//size_t count = arg.GetNumber(0)
//const wxString choices[] _arg1 = arg.GetNumber(1)
//bool allowOthers = arg.GetNumber(2)
//wxGridCellChoiceEditor(count, _arg1, allowOthers);
return Value::Nil;
}
Gura_DeclareFunctionAlias(__GridCellChoiceEditor_1, "GridCellChoiceEditor_1")
{
SetFuncAttr(VTYPE_any, RSLTMODE_Normal, FLAG_None);
//DeclareArg(env, "choices", VTYPE_number, OCCUR_Once);
//DeclareArg(env, "allowOthers", VTYPE_number, OCCUR_Once);
SetClassToConstruct(Gura_UserClass(wx_GridCellChoiceEditor));
DeclareBlock(OCCUR_ZeroOrOnce);
}
Gura_ImplementFunction(__GridCellChoiceEditor_1)
{
//const wxArrayString& choices = arg.GetNumber(0)
//bool allowOthers = arg.GetNumber(1)
//wxGridCellChoiceEditor(choices, allowOthers);
return Value::Nil;
}
//----------------------------------------------------------------------------
// Method implementation
//----------------------------------------------------------------------------
Gura_DeclareMethodAlias(wx_GridCellChoiceEditor, __SetParameters, "SetParameters")
{
SetFuncAttr(VTYPE_any, RSLTMODE_Void, FLAG_None);
//DeclareArg(env, "params", VTYPE_number, OCCUR_Once);
}
Gura_ImplementMethod(wx_GridCellChoiceEditor, __SetParameters)
{
Object_wx_GridCellChoiceEditor *pThis = Object_wx_GridCellChoiceEditor::GetObjectThis(arg);
if (pThis->IsInvalid(env)) return Value::Nil;
//const wxString& params = arg.GetNumber(0)
//pThis->GetEntity()->SetParameters(params);
return Value::Nil;
}
//----------------------------------------------------------------------------
// Class implementation for wxGridCellChoiceEditor
//----------------------------------------------------------------------------
Gura_ImplementUserInheritableClass(wx_GridCellChoiceEditor)
{
// Constructor assignment
Gura_AssignFunction(__GridCellChoiceEditor);
Gura_AssignFunction(__GridCellChoiceEditor_1);
// Method assignment
Gura_AssignMethod(wx_GridCellChoiceEditor, __SetParameters);
}
Gura_ImplementDescendantCreator(wx_GridCellChoiceEditor)
{
return new Object_wx_GridCellChoiceEditor((pClass == nullptr)? this : pClass, nullptr, nullptr, OwnerFalse);
}
Gura_EndModuleScope(wx)
| [
"ypsitau@nifty.com"
] | ypsitau@nifty.com |
dea05209ee16d6c9438de3cec63546ef642e8e07 | 09af8e25c6948e187bdf05f4f620ab5f2e7aeb71 | /examples/auto_future_graphics_design_delta/fonts_edit.cpp | 203eb9b42a7a1ed28d1b19df1d8a4b23f927d525 | [] | no_license | rlalance/my_imgui | 1a8d501758c25ac2bb8eff28d2cd7deb8720bbd0 | a74d712611aae0448bc68cb93aafe68b19727944 | refs/heads/master | 2022-07-21T18:27:50.762261 | 2019-01-10T07:53:43 | 2019-01-10T07:53:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,125 | cpp | #include "fonts_edit.h"
#include <string>
#include <imgui.h>
#define IMGUI_DEFINE_MATH_OPERATORS
#include "imgui_internal.h"
#include <windows.h>
#include <locale.h>
#include <ShlObj.h>
#include <Commdlg.h>
#ifdef IMGUI_WAYLAND
#include "../../deps/glad/glad.h"
#else
#include <GL/gl3w.h>
#endif
#include "SOIL.h"
#include <stdio.h>
#include <iostream>
#include "dir_output.h"
using namespace std;
fonts_edit::fonts_edit()
{
}
fonts_edit::~fonts_edit()
{
}
static void ShowHelpMarker(const char* desc)
{
ImGui::TextDisabled("(?)");
if (ImGui::IsItemHovered())
{
ImGui::BeginTooltip();
ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f);
ImGui::TextUnformatted(desc);
ImGui::PopTextWrapPos();
ImGui::EndTooltip();
}
}
void fonts_edit::draw_fonts_list()
{
try
{
static float font_size = 16.f;
ImGui::InputFloat("load font size:", &font_size, 0.1, 10.f, 32.f);
if (ImGui::Button("Load new font from ttf file..."))
{
OPENFILENAME ofn = { sizeof(OPENFILENAME) };
ofn.hwndOwner = GetForegroundWindow();
ofn.lpstrFilter = "ttf file:\0*.ttf\0\0";
char strFileName[MAX_PATH] = { 0 };
ofn.nFilterIndex = 1;
ofn.lpstrFile = strFileName;
ofn.nMaxFile = sizeof(strFileName);
ofn.lpstrTitle = "Loading ttf file...";
ofn.Flags = OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
if (GetOpenFileName(&ofn))
{
string ttf_file = strFileName;
string ttf_file_name = ttf_file.substr(ttf_file.find_last_of('\\') + 1);
ImFontAtlas* atlas = ImGui::GetIO().Fonts;
for (size_t i = 0; i < atlas->Fonts.size();i++)
{
ImFont* font = atlas->Fonts[i];
string font_name = font->ConfigData[0].Name;
font_name = font_name.substr(0, font_name.find_first_of(','));
if (font_name == ttf_file_name)
{
MessageBox(GetForegroundWindow(), "ttf file you selected is already in the fonts list!", "Error info", MB_OK);
throw "fail to load ttf file!";
}
}
string ttf_file_path = ttf_file.substr(0, ttf_file.find_last_of('\\') + 1);
extern string g_cureent_directory;
string str_ttf_path = g_cureent_directory+font_fold;
if (ttf_file_path != str_ttf_path)
{
string str_cmd = "copy ";
str_cmd += ttf_file;
str_cmd += " ";
str_cmd += str_ttf_path;
system(str_cmd.c_str());
}
atlas->AddFontFromFileTTF(strFileName, font_size, NULL, atlas->GetGlyphRangesChinese());
font_size = 16.f;
}
}
}
catch (std::exception& e)
{
cout << e.what() << endl;
}
ImGuiStyle& style = ImGui::GetStyle();
bool fonts_opened = ImGui::TreeNode("Fonts", "Fonts (%d)", ImGui::GetIO().Fonts->Fonts.Size);
if (fonts_opened)
{
ImFontAtlas* atlas = ImGui::GetIO().Fonts;
for (int i = 0; i < atlas->ConfigData.size(); i++)
{
auto& cfg_data = atlas->ConfigData[i];
ImFont* font = atlas->Fonts[i];
//ImGui::TextColored(ImVec4(1.0f, 0.0f, 1.0f, 1.0f), "Pink");
ImGuiTreeNodeFlags node_flags = ImGuiTreeNodeFlags_OpenOnArrow;
bool is_current_font = ImGui::GetIO().FontDefault == font;
if (is_current_font)
{
node_flags |= ImGuiTreeNodeFlags_Selected;
}
if (ImGui::TreeNodeEx((void*)(intptr_t)i,node_flags,cfg_data.Name))
{
ImGui::Text("Font data size:%d", cfg_data.FontDataSize);
ImGui::Text("Font size in pixels:%f", cfg_data.SizePixels);
if (font->ConfigData &&!is_current_font&& ImGui::SmallButton("Set as default"))
{
ImGui::GetIO().FontDefault = font;
}
ImGui::TreePop();
}
}
/*if (ImGui::TreeNode("Atlas texture", "Atlas texture (%dx%d pixels)", atlas->TexWidth, atlas->TexHeight))
{
ImGui::Image(atlas->TexID, ImVec2((float)atlas->TexWidth, (float)atlas->TexHeight), ImVec2(0, 0), ImVec2(1, 1), ImColor(255, 255, 255, 255), ImColor(255, 255, 255, 128));
ImGui::TreePop();
}
ImGui::PushItemWidth(100);
for (int i = 0; i < atlas->Fonts.Size; i++)
{
ImFont* font = atlas->Fonts[i];
ImGui::PushID(font);
bool font_details_opened = ImGui::TreeNode(font, "Font %d: \'%s\', %.2f px, %d glyphs", i, font->ConfigData ? font->ConfigData[0].Name : "", font->FontSize, font->Glyphs.Size);
ImGui::SameLine(); if (ImGui::SmallButton("Set as default")) ImGui::GetIO().FontDefault = font;
if (font_details_opened)
{
ImGui::PushFont(font);
ImGui::Text("The quick brown fox jumps over the lazy dog");
ImGui::PopFont();
ImGui::DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f"); // Scale only this font
ImGui::InputFloat("Font offset", &font->DisplayOffset.y, 1, 1, 0);
ImGui::SameLine(); ShowHelpMarker("Note than the default embedded font is NOT meant to be scaled.\n\nFont are currently rendered into bitmaps at a given size at the time of building the atlas. You may oversample them to get some flexibility with scaling. You can also render at multiple sizes and select which one to use at runtime.\n\n(Glimmer of hope: the atlas system should hopefully be rewritten in the future to make scaling more natural and automatic.)");
ImGui::Text("Ascent: %f, Descent: %f, Height: %f", font->Ascent, font->Descent, font->Ascent - font->Descent);
ImGui::Text("Fallback character: '%c' (%d)", font->FallbackChar, font->FallbackChar);
ImGui::Text("Texture surface: %d pixels (approx) ~ %dx%d", font->MetricsTotalSurface, (int)sqrtf((float)font->MetricsTotalSurface), (int)sqrtf((float)font->MetricsTotalSurface));
for (int config_i = 0; config_i < font->ConfigDataCount; config_i++)
if (ImFontConfig* cfg = &font->ConfigData[config_i])
ImGui::BulletText("Input %d: \'%s\', Oversample: (%d,%d), PixelSnapH: %d", config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH);
if (ImGui::TreeNode("Glyphs", "Glyphs (%d)", font->Glyphs.Size))
{
// Display all glyphs of the fonts in separate pages of 256 characters
for (int base = 0; base < 0x10000; base += 256)
{
int count = 0;
for (int n = 0; n < 256; n++)
count += font->FindGlyphNoFallback((ImWchar)(base + n)) ? 1 : 0;
if (count > 0 && ImGui::TreeNode((void*)(intptr_t)base, "U+%04X..U+%04X (%d %s)", base, base + 255, count, count > 1 ? "glyphs" : "glyph"))
{
float cell_size = font->FontSize * 1;
float cell_spacing = style.ItemSpacing.y;
ImVec2 base_pos = ImGui::GetCursorScreenPos();
ImDrawList* draw_list = ImGui::GetWindowDrawList();
for (int n = 0; n < 256; n++)
{
ImVec2 cell_p1(base_pos.x + (n % 16) * (cell_size + cell_spacing), base_pos.y + (n / 16) * (cell_size + cell_spacing));
ImVec2 cell_p2(cell_p1.x + cell_size, cell_p1.y + cell_size);
const ImFontGlyph* glyph = font->FindGlyphNoFallback((ImWchar)(base + n));
draw_list->AddRect(cell_p1, cell_p2, glyph ? IM_COL32(255, 255, 255, 100) : IM_COL32(255, 255, 255, 50));
font->RenderChar(draw_list, cell_size, cell_p1, ImGui::GetColorU32(ImGuiCol_Text), (ImWchar)(base + n)); // We use ImFont::RenderChar as a shortcut because we don't have UTF-8 conversion functions available to generate a string.
if (glyph && ImGui::IsMouseHoveringRect(cell_p1, cell_p2))
{
ImGui::BeginTooltip();
ImGui::Text("Codepoint: U+%04X", base + n);
ImGui::Separator();
ImGui::Text("AdvanceX: %.1f", glyph->AdvanceX);
ImGui::Text("Pos: (%.2f,%.2f)->(%.2f,%.2f)", glyph->X0, glyph->Y0, glyph->X1, glyph->Y1);
ImGui::Text("UV: (%.3f,%.3f)->(%.3f,%.3f)", glyph->U0, glyph->V0, glyph->U1, glyph->V1);
ImGui::EndTooltip();
}
}
ImGui::Dummy(ImVec2((cell_size + cell_spacing) * 16, (cell_size + cell_spacing) * 16));
ImGui::TreePop();
}
}
ImGui::TreePop();
}
ImGui::TreePop();
}
ImGui::PopID();
}
static float window_scale = 1.0f;
ImGui::DragFloat("this window scale", &window_scale, 0.005f, 0.3f, 2.0f, "%.1f"); // scale only this window
ImGui::DragFloat("global scale", &ImGui::GetIO().FontGlobalScale, 0.005f, 0.3f, 2.0f, "%.1f"); // scale everything
ImGui::PopItemWidth();
ImGui::SetWindowFontScale(window_scale);*/
ImGui::TreePop();
}
}
| [
"zhangjiusheng@auto-future.com"
] | zhangjiusheng@auto-future.com |
f574a3254c22a4b6867af19de9a4791822748c7b | 01661a0a9be9dafb5f3dc8cf15f5716acd027d34 | /Assignment2/pattern2.cpp | 1f4de71d1251b186dcd76e8ee8ab619f449e5002 | [] | no_license | 711-akanksha/AAssignment | cc486f0183a1963edb2d0501486e966dac782fe6 | 0664770deaf4c2e2ec8c08304fc6ad49e8f69a9c | refs/heads/master | 2022-12-30T06:01:15.846047 | 2020-10-22T18:17:33 | 2020-10-22T18:17:33 | 286,148,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 999 | cpp | #include<iostream>
using namespace std;
int main()
{
int n;
cout << "enter number of rows and Column of oval \n";
cin >> n ;
int mr = n / 2;
mr = n- mr;
int m = n/ 2;
int frow = n - m - m/ 2 - 1;//to find 1st block in 1st row where we should start priting the patter gt
int lrow = frow + m - 1;
int fcolumn = n- mr -mr / 2 ;//to find the 1st block colum wise to print * gt
int lcolumn = fcolumn + mr - 1;
int btw1 = frow - 1;
int btw2 = lrow + 1;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (i == 0 || i == n - 1)
{
if (j >= frow && j <= lrow)
{
cout << "*";
} else {
cout << " ";
}
} else if (i == 1 || i == n- 2)
{
if ( j == btw2 || j == btw1)
{
cout << "*";
} else {
cout << " ";
}
} else {
if (i >= fcolumn && i <= lcolumn)
{
if (j == 0 || j == n - 1)
{
cout << "
*";
} else {
cout << " ";
}
}
}
}
cout << "\n";
}
}
| [
"akanksha1116gupta@gmail.com"
] | akanksha1116gupta@gmail.com |
0f37b717db7d1736ac2a195c75b3363429cb94d9 | fbfd3ec0f89101f4e7403854b0ebbeade1d06c1d | /Unreal Engine Full C++/ShootTheMap/Source/ShootTheMap/Public/Weapons/STMAIWeaponComponent.h | 8a11c85a4f11ba9456ba5c38d0b49c5c64b61123 | [] | no_license | markveligod/CoursesUnrealEngine | b1a14692f2d74d15a3911df4933b6f7588149f3d | 3939882f35a81a47a7f8b8dd324f566a141e16dd | refs/heads/main | 2023-05-30T23:24:02.200425 | 2021-06-16T16:19:20 | 2021-06-16T16:19:20 | 320,260,105 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 348 | h | // ShootTheMap
#pragma once
#include "CoreMinimal.h"
#include "Weapons/STMWeaponComponent.h"
#include "STMAIWeaponComponent.generated.h"
/**
*
*/
UCLASS()
class SHOOTTHEMAP_API USTMAIWeaponComponent : public USTMWeaponComponent
{
GENERATED_BODY()
public:
virtual void StartFire() override;
virtual void NextWeapon() override;
};
| [
"34418187+markveligod@users.noreply.github.com"
] | 34418187+markveligod@users.noreply.github.com |
94e028c923dcd809a65d0400430e07e762e2e96d | aaa9d2c9772918382fefe02c4badabd23f51cb3e | /CFCDoubtSession/May_20_2021/doubt.cpp | 41e5673bfd5b2505ef9f8dbb22481aea7ff94dc6 | [
"CC0-1.0"
] | permissive | PritishWadhwa/Code-For-Cause-CPP-TA-May-June-2021 | 56e1f36f790f168777a9f9c920f0bbff43eba1a1 | be2552476478f83a324407d2af48f3516432f321 | refs/heads/master | 2023-05-27T10:19:59.173434 | 2021-06-11T18:14:24 | 2021-06-11T18:14:24 | 365,787,418 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 107 | cpp | #include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
return 0;
} | [
"pritish19440@iiitd.ac.in"
] | pritish19440@iiitd.ac.in |
5da84e9dc1ce77b062bbf16313c5a60d606b1dde | 117754accc15c9e3dd932e2554fed89ab9eb34a0 | /C++/Project 9 (Criando um Conversor de Escalas Temométricas).cpp | dc23c6f904c92a8904c08d64b41317024cd471ea | [] | no_license | eduradev/c- | 17fac65cb6e949f98a93b67411028878c7ce30f3 | 53002311945aaae3aca661d018c1fae41b58be69 | refs/heads/main | 2023-08-28T12:05:03.993653 | 2021-09-30T01:34:17 | 2021-09-30T01:34:17 | 346,203,675 | 1 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 463 | cpp | #include <iostream>
#include <locale.h>
using namespace std;
int _conversao() {
float tcelsius;
cout <<"Entre com a temperatura em Celsius para converte-la em Fahrenheit: ";
cin >>tcelsius;
float tfahrenheit = tcelsius *9 / 5 + 32;
cout <<"\n";
cout << tcelsius << "Cº equivale a:" <<endl;
cout <<"\n";
cout << tfahrenheit <<"ºF" << endl;
}
int main() {
setlocale(LC_ALL, "Portuguese");
_conversao();
cin.get();
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
6635728a5a710f02a17dcd92a01f41a78c3821dd | 6923f79f1eaaba0ab28b25337ba6cb56be97d32d | /NumericalRecipes2/recipes/rj.cpp | b8e755a8c76bcf3d18f5ce546d63c97d2226d18e | [] | no_license | burakbayramli/books | 9fe7ba0cabf06e113eb125d62fe16d4946f4a4f0 | 5e9a0e03aa7ddf5e5ddf89943ccc68d94b539e95 | refs/heads/master | 2023-08-17T05:31:08.885134 | 2023-08-14T10:05:37 | 2023-08-14T10:05:37 | 72,460,321 | 223 | 174 | null | 2022-10-24T12:15:06 | 2016-10-31T17:24:00 | Jupyter Notebook | UTF-8 | C++ | false | false | 1,669 | cpp | #include <cmath>
#include "nr.h"
using namespace std;
DP NR::rj(const DP x, const DP y, const DP z, const DP p)
{
const DP ERRTOL=0.0015, TINY=2.5e-13, BIG=9.0e11;
const DP C1=3.0/14.0, C2=1.0/3.0, C3=3.0/22.0, C4=3.0/26.0;
const DP C5=0.75*C3, C6=1.5*C4, C7=0.5*C2, C8=C3+C3;
DP a,alamb,alpha,ans,ave,b,beta,delp,delx,dely,delz,ea,eb,ec,ed,ee,
fac,pt,rcx,rho,sqrtx,sqrty,sqrtz,sum,tau,xt,yt,zt;
if (MIN(MIN(x,y),z) < 0.0 || MIN(MIN(x+y,x+z),MIN(y+z,fabs(p))) < TINY
|| MAX(MAX(x,y),MAX(z,fabs(p))) > BIG)
nrerror("invalid arguments in rj");
sum=0.0;
fac=1.0;
if (p > 0.0) {
xt=x;
yt=y;
zt=z;
pt=p;
} else {
xt=MIN(MIN(x,y),z);
zt=MAX(MAX(x,y),z);
yt=x+y+z-xt-zt;
a=1.0/(yt-p);
b=a*(zt-yt)*(yt-xt);
pt=yt+b;
rho=xt*zt/yt;
tau=p*pt/yt;
rcx=rc(rho,tau);
}
do {
sqrtx=sqrt(xt);
sqrty=sqrt(yt);
sqrtz=sqrt(zt);
alamb=sqrtx*(sqrty+sqrtz)+sqrty*sqrtz;
alpha=SQR(pt*(sqrtx+sqrty+sqrtz)+sqrtx*sqrty*sqrtz);
beta=pt*SQR(pt+alamb);
sum += fac*rc(alpha,beta);
fac=0.25*fac;
xt=0.25*(xt+alamb);
yt=0.25*(yt+alamb);
zt=0.25*(zt+alamb);
pt=0.25*(pt+alamb);
ave=0.2*(xt+yt+zt+pt+pt);
delx=(ave-xt)/ave;
dely=(ave-yt)/ave;
delz=(ave-zt)/ave;
delp=(ave-pt)/ave;
} while (MAX(MAX(fabs(delx),fabs(dely)),
MAX(fabs(delz),fabs(delp))) > ERRTOL);
ea=delx*(dely+delz)+dely*delz;
eb=delx*dely*delz;
ec=delp*delp;
ed=ea-3.0*ec;
ee=eb+2.0*delp*(ea-ec);
ans=3.0*sum+fac*(1.0+ed*(-C1+C5*ed-C6*ee)+eb*(C7+delp*(-C8+delp*C4))
+delp*ea*(C2-delp*C3)-C2*delp*ec)/(ave*sqrt(ave));
if (p <= 0.0) ans=a*(b*ans+3.0*(rcx-rf(xt,yt,zt)));
return ans;
}
| [
"bb@b.om"
] | bb@b.om |
18ee06c2de55e0e4ebed3c5bf544ca2d87f49cf6 | 7b27de28852c1676cca01b3e45fb17ff2db0ee13 | /src/AgeCards.cpp | 853a4982560ed593fddb3dbd744d86027a96d9e4 | [] | no_license | jwvance/Duel | 568847483c8369cc87cec52ea63430e5da481d2e | 439e21a1f9ee30316948dfb1818c278629ec3c7b | refs/heads/master | 2021-09-03T03:46:37.970721 | 2018-01-05T09:15:18 | 2018-01-05T09:15:18 | 111,451,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,615 | cpp | #include <vector>
#include <unordered_map>
#include <fstream>
#include <iostream>
#include <algorithm>
#include <random>
#include <ctime>
#include "AgeCards.hpp"
#include "json.hpp"
#include "termcolor.hpp"
using json = nlohmann::json;
AgeCard::AgeCard(std::string t, std::string n, unsigned int age, unsigned int coinc, std::vector<std::string> rc,
std::string chainc, std::vector<std::string> rr, std::string c, unsigned int vp, unsigned int coinr, std::string s, unsigned int str)
: card_type(t),
card_name(n),
card_age(age),
card_coinCost(coinc),
card_resourceCost(rc),
card_chainCost(chainc),
card_resourceReward(rr),
card_chain(c),
card_VP(vp),
card_coinReward(coinr),
card_sym(s),
card_str(str)
{};
void AgeCard::PrintInfo_Resource(void){
std::cout << termcolor::white << this->card_name << ", resource: ";
if(this->card_resourceReward.size() > 1){
std::cout << "2 " << this->card_resourceReward[0];
}else{
std::cout << this->card_resourceReward[0];
}
std::cout << termcolor::white << std::endl;
}
void AgeCard::PrintInfo_Science(void){
std::cout << termcolor::green << this->card_name << ", symbol: " << this->card_sym;
if(this->card_VP) std::cout << ", " << this->card_VP << " VPs";
if(this->card_chain != "noChain") std::cout << ", chain symbol: " << this->card_chain;
std::cout << termcolor::white << std:: endl;
}
void AgeCard::PrintInfo_Military(void){
std::cout << termcolor::red << this->card_name << ", shields: " << this->card_str << termcolor::white << std::endl;
}
void AgeCard::PrintInfo_Civil(void){
std::cout << termcolor::cyan << this->card_name << ", " << this->card_VP << " VPs" << termcolor::white << std::endl;
}
void AgeCard::PrintInfo_Commercial(void){
std::cout << termcolor::yellow << this->card_name;
if(this->card_resourceReward.size()){
std::cout << ", resource:";
for(auto& rr : this->card_resourceReward){
//if discounted material
if(rr.back() == '1') std::cout << " " << rr.substr(0, rr.length()-2) << " costs 1 coin";
//TODO: if option of different free materials
}
}
if(this->card_coinReward) std::cout << ", worth " << this->card_coinReward << " coin";
if(this->card_chain != "noChain") std::cout << ", chain symbol: " << this->card_chain;
std::cout << termcolor::white << std::endl;
}
void AgeCard::PrintCard(std::string complexity){
std::cout << card_name << ", " << card_type << " card, Age " << card_age << "." << std::endl;
if(complexity == "complex"){
std::cout << "\nCost: " <<
card_coinCost << " coins";
if(card_resourceCost[0] != "noResource"){
std::cout << ", or ";
for(auto x : card_resourceCost) { std::cout << x << " "; }
}
if(card_chainCost != "noChain"){
std::cout << ", or free with " << card_chainCost;
}
std::cout << "." << std::endl;
std::cout << "This card grants: ";
if(card_VP != 0) { std::cout << card_VP << " VPs, "; }
if(card_coinReward != 0 ) { std::cout << card_coinReward << " coins, "; }
if(card_sym != "noScience") { std::cout << "the " << card_sym << " symbol, "; }
if(card_str != 0) { std::cout << card_str << " shields."; }
}
}
std::vector<AgeCard> InitAgeCardDeck(std::string fileName){
std::string t, name, chainCost, ch, ss;
unsigned int age, coinCost, VP, coinR, shield;
std::vector<std::string> resourceCost, resourceReward;
// read a JSON file
std::ifstream json_stream(fileName);
json json_data;
json_stream >> json_data;
//prepare card deck
std::vector<AgeCard> deck;
//fetch first card data from json file
auto deserialized_json = json_data["Cards"].get<std::vector<std::unordered_map<std::string, json>>>();
for (int i = 0; i < deserialized_json.size(); i++){
//deserialize json and construct a card object
for(auto j : deserialized_json[i]){
//std::cout << j.first << ": " << j.second << '\n';
if(j.first == "type") t = j.second;
if(j.first == "name") name = j.second;
if(j.first == "age") age = j.second;
if(j.first == "coinCost") coinCost = j.second;
if(j.first == "resourceCost") {
for(auto& resource : j.second){
if(resource == "noResource") break;
resourceCost.push_back(resource);
}
}
if(j.first == "resourceReward") {
for(auto& resource : j.second){
if(resource == "noResource") break;
resourceReward.push_back(resource);
}
}
if(j.first == "chainCost") chainCost = j.second;
if(j.first == "chain") ch = j.second;
if(j.first == "VP") VP = j.second;
if(j.first == "coinReward") coinR = j.second;
if(j.first == "sym") ss = j.second;
if(j.first == "shield") shield = j.second;
}
deck.push_back(AgeCard(t, name, age, coinCost, resourceCost, chainCost, resourceReward, ch, VP, coinR, ss, shield));
resourceCost.clear();
resourceReward.clear();
}
//shuffle deck for unique sets every play
std::default_random_engine gen(std::time(NULL));
std::shuffle(deck.begin(), deck.end(), gen);
return deck;
} | [
"jasonv3@gmail.com"
] | jasonv3@gmail.com |
d1592fd1ba2c7e9e9ced5c3cc98e02fbae6f0a77 | ba99077bcefee6b45d392c18ec9b1c8764564128 | /刷题/洛谷刷题/动态规划/TG/P1880 [NOI1995]石子合并.cpp | c666c48326aaa100b4faa9ed159fb7df822dde75 | [] | no_license | Chicaogo/WinCode | 5f1c25b84f0714029a118d64509891f222a8e5b8 | b35b9a4137fa69f516d361826a0ac35844490a90 | refs/heads/master | 2021-06-30T19:06:41.067956 | 2019-06-04T13:51:13 | 2019-06-04T13:51:13 | 149,734,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 809 | cpp | #include<bits/stdc++.h>
using namespace std;
const int maxn = 10100;
int dp1[maxn][maxn],dp2[maxn][maxn],a[maxn],sum[maxn];
int n;
inline void init()
{
cin >> n;
for(int i=1; i<=n*2; i++)
{
scanf("%d",&a[i]);
a[i+n]=a[i];
sum[i]=sum[i-1]+a[i];
}
}
inline void DP()
{
for(int l=1; l<=n; l++)
{
for(int i=1; i+l<=n; i++)
{
int j=i+l;
dp1[i][j]= 1<<30;
for(int k=i; k<=j; k++)
{
dp1[i][j]=min(dp1[i][j],dp1[i][k-1]+dp1[k][j]+sum[j]-sum[i-1]);
dp2[i][j]=max(dp2[i][j],dp2[i][k-1]+dp2[k][j]+sum[j]-sum[i-1]);
}
}
}
printf("%d\n%d",dp1[1][n],dp2[1][n]);
}
int main(int argc, char const *argv[])
{
init();
DP();
return 0;
}
| [
"chicago01@qq.com"
] | chicago01@qq.com |
82c0ce104ee932a4ef9f0f168c62bcb3dcd0fb00 | aaa655b43e1ca4bdcd3a72e6ccc5ff03784b298a | /2017_round1A/02.cpp | 7a72f205c9e4b6b3bfbd176d1c64c923d7ea4aaa | [] | no_license | maoredman/google_code_jam | 5218cb3a1399f9b02f16e5647888639200f51927 | 68ee4bdd9d78387975dfc944fa4d05739977eae6 | refs/heads/master | 2021-01-21T17:28:54.948602 | 2017-04-15T07:11:19 | 2017-04-15T07:11:19 | 85,577,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,156 | cpp | #include <stdio.h>
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <cmath>
#include <algorithm>
#include <sstream>
#include <fstream>
#include <unordered_map>
using namespace std;
// in terminal: MY_PROGRAM < input_file.txt > output_file.txt
int max (int a, int b) {
return (a > b) ? a : b;
}
int min (int a, int b) {
return (a < b) ? a : b;
}
bool thisPackageWorks (int ingredientIndex, int input_lower, int input_higher, vector<int>& ingredientRequirement, unordered_map<int,vector<int> >& packagesOfIngredients) {
if (ingredientIndex >= ingredientRequirement.size()) {
return true;
}
int lower, higher;
for (int b = 0; b < packagesOfIngredients[ingredientIndex].size(); ++b) {
lower = ceil(packagesOfIngredients[ingredientIndex][b] / 1.1 / (float) ingredientRequirement[ingredientIndex]);
higher = floor(packagesOfIngredients[ingredientIndex][b] / 0.9 / (float) ingredientRequirement[ingredientIndex]);
/* cout << "internal lower is " << lower << endl;
cout << "internal higher is " << higher << endl; */
if ( (higher >= lower) && (higher >= input_lower && lower <= input_higher) ) { // this level OK
bool worksForOtherIngredients = thisPackageWorks(ingredientIndex + 1, max(lower, input_lower), min(higher, input_higher), ingredientRequirement, packagesOfIngredients);
if (worksForOtherIngredients) {
// erase the i+1th element
packagesOfIngredients[ingredientIndex].erase(packagesOfIngredients[ingredientIndex].begin() + b);
--b;
return true;
}
}
}
return false;
}
int main() { // works only in cases where "first come, first served" works; doesn't optimize for most number of kits
int T;
int numIngredients, packages; // N, P
cin >> T;
for (int i = 1; i <= T; ++i) {
cin >> numIngredients >> packages;
vector<int> ingredientRequirement; // ingredient indices 0 ~ numIngredients-1
for (int i = 0; i < numIngredients; ++i) {
int requirement;
cin >> requirement;
ingredientRequirement.push_back(requirement);
}
unordered_map<int,vector<int> > packagesOfIngredients;
for (int a = 0; a < numIngredients; ++a){
vector<int> packagesOfOneIngredient;
for (int b = 0; b < packages; ++b){
int onePackage;
cin >> onePackage;
packagesOfOneIngredient.push_back(onePackage);
}
packagesOfIngredients[a] = packagesOfOneIngredient;
}
int count = 0;
for (int a = 0; a < packages; ++a) {
int lower = ceil(packagesOfIngredients[0][a] / 1.1 / (float)ingredientRequirement[0]);
int higher = floor(packagesOfIngredients[0][a] / 0.9 / (float)ingredientRequirement[0]);
if( higher >= lower && thisPackageWorks(1, lower, higher, ingredientRequirement, packagesOfIngredients) ) {
++count;
}
}
cout << "Case #" << i << ": " << count << endl;
}
} | [
"ccm29cam@gmail.com"
] | ccm29cam@gmail.com |
06dcf445bc6ae6c78948664cc3f87c388f425392 | 2d612e3a94d65d3558d91746fcb573fc030424d5 | /cpp/Osmosis/Chain/Http/ObjectStore.cpp | 37d1e70155693695248a151db31f97bafbcb4488 | [
"Apache-2.0"
] | permissive | LightBitsLabs/osmosis | d891d110b98ee114a65d713ef0cc1f40da2fcfab | 2506e44b01db98bacd210249efeaaa3ee3fd1542 | refs/heads/master | 2023-08-31T08:22:22.946950 | 2022-09-12T10:34:35 | 2022-09-12T10:34:35 | 55,957,901 | 0 | 0 | Apache-2.0 | 2023-03-23T10:16:39 | 2016-04-11T09:12:03 | C++ | UTF-8 | C++ | false | false | 539 | cpp | #include "Osmosis/Chain/Http/ObjectStore.h"
#include "Osmosis/Chain/ObjectStoreInterface.h"
#include "Osmosis/Chain/Http/Connection.h"
namespace Osmosis {
namespace Chain {
namespace Http
{
ObjectStore::ObjectStore( const std::string & url ):
_url( url )
{
ASSERT( boost::starts_with( url, "http://" ) );
}
std::unique_ptr< ObjectStoreConnectionInterface > ObjectStore::connect()
{
return std::unique_ptr< ObjectStoreConnectionInterface >( new Connection( _url ) );
}
} // namespace Http
} // namespace Chain
} // namespace Osmosis
| [
"maor@lightbitslabs.com"
] | maor@lightbitslabs.com |
dfecb31b310bd318eb9992c1a92c05778aa9577a | 61a634ec641498d5528ed71b531258aa0dd142ea | /cegui/src/widgets/ListHeader.cpp | e8dfacf5d208d28f0fa5f0320617a6ba5c6fb402 | [
"MIT"
] | permissive | kdavison/cegui-mirror | 05a3a3cf21b47d1ba1b535341037168b82b8694d | 43167021708fd46e7cd550234c92a9e6fdbb9d62 | refs/heads/master | 2020-03-10T18:32:56.264215 | 2018-04-07T07:38:34 | 2018-04-07T07:38:34 | 129,527,885 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,948 | cpp | /***********************************************************************
created: 13/4/2004
author: Paul D Turner
purpose: Implementation of ListHeader widget base class
*************************************************************************/
/***************************************************************************
* Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
***************************************************************************/
#include "CEGUI/widgets/ListHeader.h"
#include "CEGUI/Exceptions.h"
#include "CEGUI/CoordConverter.h"
#include "CEGUI/SharedStringStream.h"
#include <sstream>
// Start of CEGUI namespace section
namespace CEGUI
{
const String ListHeader::EventNamespace("ListHeader");
const String ListHeader::WidgetTypeName("CEGUI/ListHeader");
/*************************************************************************
ListHeaderWindowRenderer constructor
*************************************************************************/
ListHeaderWindowRenderer::ListHeaderWindowRenderer(const String& name) :
WindowRenderer(name, "ListHeader")
{
}
/*************************************************************************
Constants
*************************************************************************/
// Event names
const String ListHeader::EventSortColumnChanged( "SortColumnChanged" );
const String ListHeader::EventSortDirectionChanged( "SortDirectionChanged" );
const String ListHeader::EventSegmentSized( "SegmentSized" );
const String ListHeader::EventSegmentClicked( "SegmentClicked" );
const String ListHeader::EventSplitterDoubleClicked( "SplitterDoubleClicked" );
const String ListHeader::EventSegmentSequenceChanged( "SegmentSequenceChanged" );
const String ListHeader::EventSegmentAdded( "SegmentAdded" );
const String ListHeader::EventSegmentRemoved( "SegmentRemoved" );
const String ListHeader::EventSortSettingChanged( "SortSettingChanged" );
const String ListHeader::EventDragMoveSettingChanged( "DragMoveSettingChanged" );
const String ListHeader::EventDragSizeSettingChanged( "DragSizeSettingChanged" );
const String ListHeader::EventSegmentRenderOffsetChanged( "SegmentRenderOffsetChanged" );
// values
const float ListHeader::ScrollSpeed = 8.0f;
const float ListHeader::MinimumSegmentPixelWidth = 20.0f;
/*************************************************************************
Child Widget name suffix constants
*************************************************************************/
const String ListHeader::SegmentNameSuffix("__auto_seg_");
/*************************************************************************
Constructor for the list header base class.
*************************************************************************/
ListHeader::ListHeader(const String& type, const String& name) :
Window(type, name),
d_sortSegment(nullptr),
d_sizingEnabled(true),
d_sortingEnabled(true),
d_movingEnabled(true),
d_uniqueIDNumber(0),
d_segmentOffset(0.0f),
d_sortDir(ListHeaderSegment::SortDirection::NoSorting)
{
addHeaderProperties();
}
/*************************************************************************
Destructor for the list header base class.
*************************************************************************/
ListHeader::~ListHeader(void)
{
}
/*************************************************************************
Return the current number of segments in the header.
*************************************************************************/
unsigned int ListHeader::getColumnCount(void) const
{
return static_cast<unsigned int>(d_segments.size());
}
/*************************************************************************
Given a zero based column index, return the ListHeaderSegment.
*************************************************************************/
ListHeaderSegment& ListHeader::getSegmentFromColumn(unsigned int column) const
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"requested column index is out of range for this ListHeader.");
}
else
{
return *d_segments[column];
}
}
/*************************************************************************
Return the ListHeaderSegment with the requested ID.
*************************************************************************/
ListHeaderSegment& ListHeader::getSegmentFromID(unsigned int id) const
{
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
if (d_segments[i]->getID() == id)
{
return *d_segments[i];
}
}
// No such segment found, throw exception
throw InvalidRequestException(
"no segment with the requested ID is attached to this ListHeader.");
}
/*************************************************************************
Return the sort-key segment.
*************************************************************************/
ListHeaderSegment& ListHeader::getSortSegment(void) const
{
if (!d_sortSegment)
{
throw InvalidRequestException(
"Sort segment was invalid! (No segments are attached to the ListHeader?)");
}
else
{
return *d_sortSegment;
}
}
/*************************************************************************
Return the sort-key segment.
*************************************************************************/
unsigned int ListHeader::getSortSegmentID(void) const
{
return getSortSegment().getID();
}
/*************************************************************************
Given a segment, return it's zero based column index.
*************************************************************************/
unsigned int ListHeader::getColumnFromSegment(const ListHeaderSegment& segment) const
{
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
if (d_segments[i] == &segment)
{
return i;
}
}
// No such segment found, throw exception
throw InvalidRequestException(
"the given ListHeaderSegment is not attached to this ListHeader.");
}
/*************************************************************************
Return the column index that has a segment with the requested ID.
*************************************************************************/
unsigned int ListHeader::getColumnFromID(unsigned int id) const
{
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
if (d_segments[i]->getID() == id)
{
return i;
}
}
// No such segment found, throw exception
throw InvalidRequestException(
"no column with the requested ID is available on this ListHeader.");
}
/*************************************************************************
Return the current sort-key column
*************************************************************************/
unsigned int ListHeader::getSortColumn(void) const
{
return getColumnFromSegment(getSortSegment());
}
/*************************************************************************
return the zero based column index of the segment with the requested
text.
*************************************************************************/
unsigned int ListHeader::getColumnWithText(const String& text) const
{
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
if (d_segments[i]->getText() == text)
{
return i;
}
}
// No such segment found, throw exception
throw InvalidRequestException(
"no column with the text '" + text + "' is attached to this ListHeader.");
}
/*************************************************************************
return the pixel offset to the given segment
*************************************************************************/
float ListHeader::getPixelOffsetToSegment(const ListHeaderSegment& segment) const
{
float offset = 0.0f;
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
if (d_segments[i] == &segment)
{
return offset;
}
offset += d_segments[i]->getPixelSize().d_width;
}
// No such segment found, throw exception
throw InvalidRequestException(
"the given ListHeaderSegment is not attached to this ListHeader.");
}
/*************************************************************************
return the pixel offset to the segment with the given column index
*************************************************************************/
float ListHeader::getPixelOffsetToColumn(unsigned int column) const
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"requested column index is out of range for this ListHeader.");
}
else
{
float offset = 0.0f;
for (unsigned int i = 0; i < column; ++i)
{
offset += d_segments[i]->getPixelSize().d_width;
}
return offset;
}
}
/*************************************************************************
Return the total pixel width of all segments
*************************************************************************/
float ListHeader::getTotalSegmentsPixelExtent(void) const
{
float extent = 0.0f;
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
extent += d_segments[i]->getPixelSize().d_width;
}
return extent;
}
/*************************************************************************
Return the width of the segment at the specified column index.
*************************************************************************/
UDim ListHeader::getColumnWidth(unsigned int column) const
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"requested column index is out of range for this ListHeader.");
}
else
{
return d_segments[column]->getWidth();
}
}
/*************************************************************************
return the current sort direction
*************************************************************************/
ListHeaderSegment::SortDirection ListHeader::getSortDirection(void) const
{
return d_sortDir;
}
/*************************************************************************
Return whether sorting is enabled for this header.
*************************************************************************/
bool ListHeader::isSortingEnabled(void) const
{
return d_sortingEnabled;
}
/*************************************************************************
Return whether segment sizing is enabled for this header
*************************************************************************/
bool ListHeader::isColumnSizingEnabled(void) const
{
return d_sizingEnabled;
}
/*************************************************************************
Return whether segment dragging is enabled for this header.
*************************************************************************/
bool ListHeader::isColumnDraggingEnabled(void) const
{
return d_movingEnabled;
}
/*************************************************************************
Set whether the ability to change sort segment / direction is enabled
*************************************************************************/
void ListHeader::setSortingEnabled(bool setting)
{
if (d_sortingEnabled != setting)
{
d_sortingEnabled = setting;
// make the setting change for all component segments.
for (unsigned int i = 0; i <getColumnCount(); ++i)
{
d_segments[i]->setClickable(d_sortingEnabled);
}
// Fire setting changed event.
WindowEventArgs args(this);
onSortSettingChanged(args);
}
}
/*************************************************************************
Set the sort direction on the current sort segment / column.
*************************************************************************/
void ListHeader::setSortDirection(ListHeaderSegment::SortDirection direction)
{
if (d_sortDir != direction)
{
d_sortDir = direction;
// set direction of current sort segment
if (d_sortSegment)
{
d_sortSegment->setSortDirection(direction);
}
// Fire sort direction changed event.
WindowEventArgs args(this);
onSortDirectionChanged(args);
}
}
/*************************************************************************
Set the current sort segment.
*************************************************************************/
void ListHeader::setSortSegment(const ListHeaderSegment& segment)
{
setSortColumn(getColumnFromSegment(segment));
}
/*************************************************************************
Set the current sort segment via column index.
*************************************************************************/
void ListHeader::setSortColumn(unsigned int column)
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"specified column index is out of range for this ListHeader.");
}
else
{
// if column is different to current sort segment
if (d_sortSegment != d_segments[column])
{
// set sort direction on 'old' sort segment to none.
if (d_sortSegment)
{
d_sortSegment->setSortDirection(ListHeaderSegment::SortDirection::NoSorting);
}
// set-up new sort segment
d_sortSegment = d_segments[column];
d_sortSegment->setSortDirection(d_sortDir);
// Fire sort column changed event
WindowEventArgs args(this);
onSortColumnChanged(args);
}
}
}
/*************************************************************************
Set the current sort segment via ID code.
*************************************************************************/
void ListHeader::setSortColumnFromID(unsigned int id)
{
setSortSegment(getSegmentFromID(id));
}
/*************************************************************************
Set whether or not segments may be sized.
*************************************************************************/
void ListHeader::setColumnSizingEnabled(bool setting)
{
if (d_sizingEnabled != setting)
{
d_sizingEnabled = setting;
// make the setting change for all component segments.
for (unsigned int i = 0; i <getColumnCount(); ++i)
{
d_segments[i]->setSizingEnabled(d_sizingEnabled);
}
// Fire setting changed event.
WindowEventArgs args(this);
onDragSizeSettingChanged(args);
}
}
/*************************************************************************
Set whether columns may be dragged into new orders.
*************************************************************************/
void ListHeader::setColumnDraggingEnabled(bool setting)
{
if (d_movingEnabled != setting)
{
d_movingEnabled = setting;
// make the setting change for all component segments.
for (unsigned int i = 0; i <getColumnCount(); ++i)
{
d_segments[i]->setDragMovingEnabled(d_movingEnabled);
}
// Fire setting changed event.
WindowEventArgs args(this);
onDragMoveSettingChanged(args);
}
}
/*************************************************************************
Add a new column segment to the header.
*************************************************************************/
void ListHeader::addColumn(const String& text, unsigned int id, const UDim& width)
{
// add just inserts at end.
insertColumn(text, id, width, getColumnCount());
}
/*************************************************************************
Insert a new column segment into the header
*************************************************************************/
void ListHeader::insertColumn(const String& text, unsigned int id, const UDim& width, unsigned int position)
{
// if position is too big, insert at end.
if (position > getColumnCount())
{
position = getColumnCount();
}
ListHeaderSegment* seg = createInitialisedSegment(text, id, width);
d_segments.insert((d_segments.begin() + position), seg);
// add window as a child of this
addChild(seg);
layoutSegments();
// Fire segment added event.
WindowEventArgs args(this);
onSegmentAdded(args);
// if sort segment is invalid, make it valid now we have a segment attached
if (!d_sortSegment)
{
setSortColumn(position);
}
}
/*************************************************************************
Remove a column from the header
*************************************************************************/
void ListHeader::removeColumn(unsigned int column)
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"specified column index is out of range for this ListHeader.");
}
else
{
ListHeaderSegment* seg = d_segments[column];
// remove from the list of segments
d_segments.erase(d_segments.begin() + column);
// have we removed the sort column?
if (d_sortSegment == seg)
{
// any other columns?
if (getColumnCount() > 0)
{
// put first column in as sort column
d_sortDir = ListHeaderSegment::SortDirection::NoSorting;
setSortColumn(0);
}
// no columns, set sort segment to NULL
else
{
d_sortSegment = nullptr;
}
}
// detach segment window from the header (this)
removeChild(seg);
// destroy the segment (done in derived class, since that's where it was created).
destroyListSegment(seg);
layoutSegments();
// Fire segment removed event.
WindowEventArgs args(this);
onSegmentRemoved(args);
}
}
/*************************************************************************
Move a column segment to a new position
*************************************************************************/
void ListHeader::moveColumn(unsigned int column, unsigned int position)
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"specified column index is out of range for this ListHeader.");
}
else
{
// if position is too big, move to end.
if (position >= getColumnCount())
{
position = getColumnCount() - 1;
}
ListHeaderSegment* seg = d_segments[column];
// remove original copy of segment
d_segments.erase(d_segments.begin() + column);
// insert the segment at it's new position
d_segments.insert(d_segments.begin() + position, seg);
// Fire sequence changed event
HeaderSequenceEventArgs args(this, column, position);
onSegmentSequenceChanged(args);
layoutSegments();
}
}
/*************************************************************************
Insert a new column segment into the header
*************************************************************************/
void ListHeader::insertColumn(const String& text, unsigned int id, const UDim& width, const ListHeaderSegment& position)
{
insertColumn(text, id, width, getColumnFromSegment(position));
}
/*************************************************************************
Remove a segment from the header
*************************************************************************/
void ListHeader::removeSegment(const ListHeaderSegment& segment)
{
removeColumn(getColumnFromSegment(segment));
}
/*************************************************************************
Move a column segment to a new position.
*************************************************************************/
void ListHeader::moveColumn(unsigned int column, const ListHeaderSegment& position)
{
moveColumn(column, getColumnFromSegment(position));
}
/*************************************************************************
Move a segment to a new position
*************************************************************************/
void ListHeader::moveSegment(const ListHeaderSegment& segment, unsigned int position)
{
moveColumn(getColumnFromSegment(segment), position);
}
/*************************************************************************
Move a segment to a new position
*************************************************************************/
void ListHeader::moveSegment(const ListHeaderSegment& segment, const ListHeaderSegment& position)
{
moveColumn(getColumnFromSegment(segment), getColumnFromSegment(position));
}
/*************************************************************************
Set the current segment offset value (metrics dependant)
*************************************************************************/
void ListHeader::setSegmentOffset(float offset)
{
if (d_segmentOffset != offset)
{
d_segmentOffset = offset;
layoutSegments();
invalidate();
// Fire event.
WindowEventArgs args(this);
onSegmentOffsetChanged(args);
}
}
/*************************************************************************
Set the width of the specified column.
*************************************************************************/
void ListHeader::setColumnWidth(unsigned int column, const UDim& width)
{
if (column >= getColumnCount())
{
throw InvalidRequestException(
"specified column index is out of range for this ListHeader.");
}
else
{
d_segments[column]->setSize(USize(width, d_segments[column]->getSize().d_height));
layoutSegments();
// Fire segment sized event.
WindowEventArgs args(d_segments[column]);
onSegmentSized(args);
}
}
/*************************************************************************
Create initialise and return a ListHeaderSegment object, with all
events subscribed and ready to use.
*************************************************************************/
ListHeaderSegment* ListHeader::createInitialisedSegment(const String& text, unsigned int id, const UDim& width)
{
// Build unique name
std::stringstream& name = SharedStringstream::GetPreparedStream();
name << SegmentNameSuffix << d_uniqueIDNumber;
// create segment.
ListHeaderSegment* newseg = createNewSegment(name.str());
d_uniqueIDNumber++;
// setup segment;
newseg->setSize(USize(width, cegui_reldim(1.0f)));
newseg->setMinSize(USize(cegui_absdim(MinimumSegmentPixelWidth), cegui_absdim(0)));
newseg->setText(text);
newseg->setID(id);
newseg->setSizingEnabled(d_sizingEnabled);
newseg->setDragMovingEnabled(d_movingEnabled);
newseg->setClickable(d_sortingEnabled);
// subscribe events we listen to
newseg->subscribeEvent(ListHeaderSegment::EventSegmentSized, Event::Subscriber(&CEGUI::ListHeader::segmentSizedHandler, this));
newseg->subscribeEvent(ListHeaderSegment::EventSegmentDragStop, Event::Subscriber(&CEGUI::ListHeader::segmentMovedHandler, this));
newseg->subscribeEvent(ListHeaderSegment::EventSegmentClicked, Event::Subscriber(&CEGUI::ListHeader::segmentClickedHandler, this));
newseg->subscribeEvent(ListHeaderSegment::EventSplitterDoubleClicked, Event::Subscriber(&CEGUI::ListHeader::segmentDoubleClickHandler, this));
newseg->subscribeEvent(ListHeaderSegment::EventSegmentDragPositionChanged, Event::Subscriber(&CEGUI::ListHeader::segmentDragHandler, this));
return newseg;
}
/*************************************************************************
Layout the segments
*************************************************************************/
void ListHeader::layoutSegments(void)
{
UVector2 pos(cegui_absdim(-d_segmentOffset), cegui_absdim(0.0f));
for (unsigned int i = 0; i < getColumnCount(); ++i)
{
d_segments[i]->setPosition(pos);
pos.d_x += d_segments[i]->getWidth();
}
}
bool ListHeader::validateWindowRenderer(const WindowRenderer* renderer) const
{
return dynamic_cast<const ListHeaderWindowRenderer*>(renderer) != nullptr;
}
/*************************************************************************
Handler called when the sort column is changed.
*************************************************************************/
void ListHeader::onSortColumnChanged(WindowEventArgs& e)
{
fireEvent(EventSortColumnChanged, e, EventNamespace);
}
/*************************************************************************
Handler called when the sort direction is changed.
*************************************************************************/
void ListHeader::onSortDirectionChanged(WindowEventArgs& e)
{
fireEvent(EventSortDirectionChanged, e, EventNamespace);
}
/*************************************************************************
Handler called when a segment is sized by the user.
e.window points to the segment.
*************************************************************************/
void ListHeader::onSegmentSized(WindowEventArgs& e)
{
fireEvent(EventSegmentSized, e, EventNamespace);
}
/*************************************************************************
Handler called when a segment is clicked by the user.
e.window points to the segment.
*************************************************************************/
void ListHeader::onSegmentClicked(WindowEventArgs& e)
{
fireEvent(EventSegmentClicked, e, EventNamespace);
}
/*************************************************************************
Handler called when a segment splitter / sizer is double-clicked.
e.window points to the segment.
*************************************************************************/
void ListHeader::onSplitterDoubleClicked(WindowEventArgs& e)
{
fireEvent(EventSplitterDoubleClicked, e, EventNamespace);
}
/*************************************************************************
Handler called when the segment / column order changes.
*************************************************************************/
void ListHeader::onSegmentSequenceChanged(WindowEventArgs& e)
{
fireEvent(EventSegmentSequenceChanged, e, EventNamespace);
}
/*************************************************************************
Handler called when a new segment is added to the header.
*************************************************************************/
void ListHeader::onSegmentAdded(WindowEventArgs& e)
{
fireEvent(EventSegmentAdded, e, EventNamespace);
}
/*************************************************************************
Handler called when a segment is removed from the header.
*************************************************************************/
void ListHeader::onSegmentRemoved(WindowEventArgs& e)
{
fireEvent(EventSegmentRemoved, e, EventNamespace);
}
/*************************************************************************
Handler called then setting that controls the users ability to
modify the search column & direction changes.
*************************************************************************/
void ListHeader::onSortSettingChanged(WindowEventArgs& e)
{
fireEvent(EventSortSettingChanged, e, EventNamespace);
}
/*************************************************************************
Handler called when the setting that controls the users ability to
drag and drop segments changes.
*************************************************************************/
void ListHeader::onDragMoveSettingChanged(WindowEventArgs& e)
{
fireEvent(EventDragMoveSettingChanged, e, EventNamespace);
}
/*************************************************************************
Handler called when the setting that controls the users ability t
size segments changes.
*************************************************************************/
void ListHeader::onDragSizeSettingChanged(WindowEventArgs& e)
{
fireEvent(EventDragSizeSettingChanged, e, EventNamespace);
}
/*************************************************************************
Handler called when the base rendering offset for the segments
(scroll position) changes.
*************************************************************************/
void ListHeader::onSegmentOffsetChanged(WindowEventArgs& e)
{
fireEvent(EventSegmentRenderOffsetChanged, e, EventNamespace);
}
/*************************************************************************
Handler method for when a segment is sized.
*************************************************************************/
bool ListHeader::segmentSizedHandler(const EventArgs& e)
{
layoutSegments();
// Fire segment sized event.
WindowEventArgs args((static_cast<const WindowEventArgs&>(e)).window);
onSegmentSized(args);
return true;
}
/*************************************************************************
Handler method for when a segment is dragged & dropped.
*************************************************************************/
bool ListHeader::segmentMovedHandler(const EventArgs& e)
{
const glm::vec2 cursor_pos(getUnprojectedPosition(
getGUIContext().getCursor().getPosition()));
// segment must be dropped within the window
if (isHit(cursor_pos))
{
// get cursor position as something local
const glm::vec2 local_cursor_pos(CoordConverter::screenToWindow(*this, cursor_pos));
// set up to allow for current offsets
float currwidth = -d_segmentOffset;
// calculate column where dragged segment was dropped
unsigned int col;
for (col = 0; col < getColumnCount(); ++col)
{
currwidth += d_segments[col]->getPixelSize().d_width;
if (local_cursor_pos.x < currwidth)
{
// this is the column, exit loop early
break;
}
}
// find original column for dragged segment.
ListHeaderSegment* seg = static_cast<ListHeaderSegment*>((static_cast<const WindowEventArgs&>(e)).window);
unsigned int curcol = getColumnFromSegment(*seg);
// move column
moveColumn(curcol, col);
}
return true;
}
/*************************************************************************
Handler for when a segment is clicked (to change sort segment / direction)
*************************************************************************/
bool ListHeader::segmentClickedHandler(const EventArgs& e)
{
// double-check we allow this action
if (d_sortingEnabled)
{
ListHeaderSegment* seg = static_cast<ListHeaderSegment*>(static_cast<const WindowEventArgs&>(e).window);
// is this a new sort column?
if (d_sortSegment != seg)
{
d_sortDir = ListHeaderSegment::SortDirection::Descending;
setSortSegment(*seg);
}
// not a new segment, toggle current direction
else if (d_sortSegment)
{
ListHeaderSegment::SortDirection currDir = d_sortSegment->getSortDirection();
// set new direction based on the current value.
switch (currDir)
{
case ListHeaderSegment::SortDirection::NoSorting:
setSortDirection(ListHeaderSegment::SortDirection::Descending);
break;
case ListHeaderSegment::SortDirection::Ascending:
setSortDirection(ListHeaderSegment::SortDirection::Descending);
break;
case ListHeaderSegment::SortDirection::Descending:
setSortDirection(ListHeaderSegment::SortDirection::Ascending);
break;
}
}
// Notify that a segment has been clicked
WindowEventArgs args((static_cast<const WindowEventArgs&>(e)).window);
onSegmentClicked(args);
}
return true;
}
/*************************************************************************
Handler called when a segment splitter is double-clicked.
*************************************************************************/
bool ListHeader::segmentDoubleClickHandler(const EventArgs& e)
{
WindowEventArgs args((static_cast<const WindowEventArgs&>(e)).window);
onSplitterDoubleClicked(args);
return true;
}
/*************************************************************************
Handler called whenever the cursor moves while dragging a segment
*************************************************************************/
bool ListHeader::segmentDragHandler(const EventArgs&)
{
// what we do here is monitor the position and scroll if we can when cursor is outside area.
// get cursor position as something local
const glm::vec2 local_cursor_pos(CoordConverter::screenToWindow(*this,
getUnprojectedPosition(getGUIContext().
getCursor().getPosition())));
// scroll left?
if (local_cursor_pos.x < 0.0f)
{
if (d_segmentOffset > 0.0f)
{
setSegmentOffset(std::max(0.0f, d_segmentOffset - ScrollSpeed));
}
}
// scroll right?
else if (local_cursor_pos.x >= d_pixelSize.d_width)
{
float maxOffset = std::max(0.0f, getTotalSegmentsPixelExtent() - d_pixelSize.d_width);
// if we have not scrolled to the limit
if (d_segmentOffset < maxOffset)
{
// scroll, but never beyond the limit
setSegmentOffset(std::min(maxOffset, d_segmentOffset + ScrollSpeed));
}
}
return true;
}
/*************************************************************************
Add ListHeader specific properties
*************************************************************************/
void ListHeader::addHeaderProperties(void)
{
const String& propertyOrigin = WidgetTypeName;
CEGUI_DEFINE_PROPERTY(ListHeader, bool,
"SortSettingEnabled", "Property to get/set the setting for for user modification of the sort column & direction. Value is either \"true\" or \"false\".",
&ListHeader::setSortingEnabled, &ListHeader::isSortingEnabled, true /* TODO: Inconsistency */
);
CEGUI_DEFINE_PROPERTY(ListHeader, bool,
"ColumnsSizable", "Property to get/set the setting for user sizing of the column headers. Value is either \"true\" or \"false\".",
&ListHeader::setColumnSizingEnabled, &ListHeader::isColumnSizingEnabled, true /* TODO: Inconsistency */
);
CEGUI_DEFINE_PROPERTY(ListHeader, bool,
"ColumnsMovable", "Property to get/set the setting for user moving of the column headers. Value is either \"true\" or \"false\".",
&ListHeader::setColumnDraggingEnabled, &ListHeader::isColumnDraggingEnabled, true /* TODO: Inconsistency */
);
CEGUI_DEFINE_PROPERTY(ListHeader, unsigned int,
"SortColumnID", "Property to get/set the current sort column (via ID code). Value is an unsigned integer number.",
&ListHeader::setSortColumnFromID, &ListHeader::getSortSegmentID, 0 /* TODO: Inconsistency */
);
CEGUI_DEFINE_PROPERTY(ListHeader, ListHeaderSegment::SortDirection,
"SortDirection", "Property to get/set the sort direction setting of the header. Value is the text of one of the SortDirection enumerated value names.",
&ListHeader::setSortDirection, &ListHeader::getSortDirection, ListHeaderSegment::SortDirection::NoSorting
);
}
/*************************************************************************
Create new segment
*************************************************************************/
ListHeaderSegment* ListHeader::createNewSegment(const String& name) const
{
if (d_windowRenderer != nullptr)
{
ListHeaderWindowRenderer* wr = static_cast<ListHeaderWindowRenderer*>(d_windowRenderer);
return wr->createNewSegment(name);
}
else
{
//return createNewSegment_impl(name);
throw InvalidRequestException(
"This function must be implemented by the window renderer module");
}
}
/*************************************************************************
Destroy segment
*************************************************************************/
void ListHeader::destroyListSegment(ListHeaderSegment* segment) const
{
if (d_windowRenderer != nullptr)
{
ListHeaderWindowRenderer* wr = static_cast<ListHeaderWindowRenderer*>(d_windowRenderer);
wr->destroyListSegment(segment);
}
else
{
//return destroyListSegment_impl(segment);
throw InvalidRequestException(
"This function must be implemented by the window renderer module");
}
}
} // End of CEGUI namespace section
| [
"beck.ct@gmail.com"
] | beck.ct@gmail.com |
9871780b27cbcd254091de6ddb13a0ca0a0cad90 | 09065a6a94f5a3dc9cae0bbd629f975d2de32f91 | /SensorArm/src/sensorarm_controller_node.h | 812b5f1e4374c0b5211c1882e8ab280219b94cdf | [
"MIT"
] | permissive | dgitz/icarus_sim | 9fbb27d2cba9db17ec74d5a3447fc4269aaf2877 | c211428581947af84286e1555960c0c15844c551 | refs/heads/master | 2020-04-26T13:27:55.293632 | 2020-03-05T03:42:10 | 2020-03-05T03:42:10 | 173,580,123 | 0 | 0 | MIT | 2020-03-05T03:42:11 | 2019-03-03T13:43:49 | C | UTF-8 | C++ | false | false | 1,947 | h | // Derived class
#include "SensorArmControllerProcess.h"
#include "BaseNode.cpp"
//C System Files
//C++ System Files
//ROS Base Functionality
//ROS Messages
//Project
/*! \class SampleNode SampleNode.h "SampleNode.h"
* \brief This is a SampleNode class. Used for the sensorarm_controller_node node.
*
*/
class SensorArmControllerNode: public BaseNode {
public:
const string BASE_NODE_NAME = "sensorarm_controller_node";
const uint8_t MAJOR_RELEASE_VERSION = 0;
const uint8_t MINOR_RELEASE_VERSION = 1;
const uint8_t BUILD_NUMBER = 0;
const string FIRMWARE_DESCRIPTION = "Latest Rev: 7-Dec-2019";
const uint8_t DIAGNOSTIC_SYSTEM = REMOTE_CONTROL;
const uint8_t DIAGNOSTIC_SUBSYSTEM = ROBOT_CONTROLLER;
const uint8_t DIAGNOSTIC_COMPONENT = CONTROLLER_NODE;
~SensorArmControllerNode()
{
}
/*! \brief Initialize
*
*/
bool start(int argc,char **argv);
SensorArmControllerProcess* get_process() { return process; }
void thread_loop();
//Cleanup
void cleanup();
private:
//Initialization Functions
/*! \brief Read Node Specific Launch Parameters
*
*/
eros::diagnostic read_launchparameters();
eros::diagnostic rescan_topics();
/*! \brief Setup other pubs/subs, other node specific init stuff
*
*/
eros::diagnostic finish_initialization();
//Update Functions
bool run_001hz();
bool run_01hz();
bool run_01hz_noisy();
bool run_1hz();
bool run_10hz();
bool run_loop1();
bool run_loop2();
bool run_loop3();
//Attribute Functions
//Message Functions
void PPS1_Callback(const std_msgs::Bool::ConstPtr& t_msg);
void Command_Callback(const eros::command::ConstPtr& t_msg);
bool new_devicemsg(std::string query,eros::device t_device);
//Support Functions
std::string base_node_name;
ros::Subscriber pps1_sub;
ros::Subscriber command_sub;
std::vector<ros::Publisher> joint_pubs;
ros::ServiceClient srv_device;
SensorArmControllerProcess *process;
std::vector<ros::Subscriber> multiple_subs;
};
| [
"davidgitz@gmail.com"
] | davidgitz@gmail.com |
1b0faa1ae86c7fb63f409875c6d7d3a2d00321a4 | f2b13f76046b7f7f8f47fba86dbfbc7da405d150 | /Ch2_Functions_and_files/2.8/getInteger.cpp | 344a877b814b1bf451aef7eaf0dbe06a195aceae | [] | no_license | Tylerdclark/learn-cpp | 30ff1e401f0d81cafb4ac7548e882bf8f8fe61a6 | 10a0cf7261ce0cdaa33c87d539932703c2beaada | refs/heads/master | 2023-02-28T00:23:01.532406 | 2021-01-30T17:50:24 | 2021-01-30T17:50:24 | 276,786,086 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #include <iostream>
int getInteger()
{
std::cout << "Enter an integer: ";
int x{};
std::cin >> x;
return x;
} | [
"tylerc.thedeveloper@gmail.com"
] | tylerc.thedeveloper@gmail.com |
1086a16348956a690a345edba2dd7bfafb15844c | 2c522019b2caf9674d06210b91f9555b6a61c16a | /car/Car.cpp | 1062ee25e8c605ec7a5de2068fa2c6eb762ef28c | [] | no_license | Jang-zn/cppStudy | 7d7065bf2f716652601582c70f9f0c58bd58f174 | 8b036b77ec2b4cd0f206835afaa4904a57405256 | refs/heads/master | 2023-09-03T09:20:35.969339 | 2021-11-09T07:47:44 | 2021-11-09T07:47:44 | 425,658,344 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 763 | cpp | #include "iostream"
#include "cstring"
#include "Car.h"
using namespace std;
using namespace CAR_CONST;
void Car::initMembers(char* Id, int fuel){
strcpy(gamerID, Id);
fuelGauge=fuel;
currSpeed=0;
}
void Car::showCarState(){
cout<<"ID : "<<gamerID<<endl;
cout<<"연료량 : "<<fuelGauge<<"%"<<endl;
cout<<"현재속도 : "<<currSpeed<<"km/h"<<endl;
}
void Car::acc(){
cout<<"Accel"<<endl;
if(fuelGauge<=0){
return;
}else{
fuelGauge-=FUEL_STEP;
}
if(currSpeed+ACC_STEP>=MAX_SPD){
currSpeed=MAX_SPD;
return;
}
currSpeed+=ACC_STEP;
}
void Car::brk(){
cout<<"Break"<<endl;
if(currSpeed<BRK_STEP){
currSpeed=0;
return;
}
currSpeed-=BRK_STEP;
}
| [
"zn2309@naver.com"
] | zn2309@naver.com |
00f69992b69ff0f91e10534c393970f2f488c504 | 02ab470d3187e5d3e2800859984a9ee58f9bd3c0 | /casmacat/NotImplementedException.h | e8c0480ececff1511818925eb759a27a20febd93 | [] | no_license | PRHLT/CATTI | e128883400b9637768da348205d5083841958969 | 61cff0de9c9c5dd0e32d9b560139b9e4a9c2c7f5 | refs/heads/master | 2021-05-01T21:28:14.304219 | 2018-02-06T11:40:12 | 2018-02-06T11:40:12 | 75,202,392 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 547 | h | #ifndef NOT_IMPLEMENTED_EXCEPTION_HPP
#define NOT_IMPLEMENTED_EXCEPTION_HPP
#include <string>
#include <stdexcept>
namespace casmacat {
#define STRINGIFY(s) XSTRINGIFY(s)
#define XSTRINGIFY(s) #s
#define METHOD_DEFINITION (std::string(__FILE__)+std::string(":")+std::string(__func__)+std::string(":")+std::string(STRINGIFY(__LINE__)))
class NotImplementedException: public std::runtime_error {
public:
NotImplementedException(const std::string& msg): runtime_error(std::string("Method not implemented: ")+msg) {}
};
}
#endif
| [
"noreply@github.com"
] | noreply@github.com |
76d113d659730257b90cafe3e110de4e31170a91 | 8ee0be0b14ec99858712a5c37df4116a52cb9801 | /engine/include/zz_vertex_buffer.h | 7e4c76c58730b166c92fffaf1b333c24ffb1032c | [] | no_license | eRose-DatabaseCleaning/Sources-non-evo | 47968c0a4fd773d6ff8c9eb509ad19caf3f48d59 | 2b152f5dba3bce3c135d98504ebb7be5a6c0660e | refs/heads/master | 2021-01-13T14:31:36.871082 | 2019-05-24T14:46:41 | 2019-05-24T14:46:41 | 72,851,710 | 6 | 3 | null | 2016-11-14T23:30:24 | 2016-11-04T13:47:51 | C++ | UTF-8 | C++ | false | false | 925 | h | /**
* @file zz_vertex_buffer.h
* @brief vertex buffer class.
* @author Jiho Choi (zho@korea.com)
* @version 1.0
* @date 14-jan-2004
*
* $Header: /engine/include/zz_vertex_buffer.h 4 04-07-05 9:37p Zho $
*/
#ifndef __ZZ_VERTEX_BUFFER_H__
#define __ZZ_VERTEX_BUFFER_H__
#ifndef __ZZ_DEVICE_RESOURCE_H__
#include "zz_device_resource.h"
#endif
//--------------------------------------------------------------------------------
class zz_vertex_buffer : public zz_device_resource {
//--------------------------------------------------------------------------------
protected:
int size_total; // total size(in bytes). passes to renderer
public:
zz_vertex_buffer ();
~zz_vertex_buffer ();
// virtuals from zz_device_resource
void create_buffer (int size_total_in);
void update_buffer (const void * buffer_in);
void destroy_buffer ();
};
#endif // __ZZ_VERTEX_BUFFER_H__ | [
"hugo.delannoy@hotmail.com"
] | hugo.delannoy@hotmail.com |
8d96dfa1168efe49b9a64f346cb06dce4e726a45 | 5e5aa4ff67ebb836d44fb0aabfec1dda214ad57a | /pacmanV3/Player.h | 9b1f6434dc18ca0986f869c3856b6b3e8f8166fe | [] | no_license | danvil97/pacman | 6f8c4c098bcdfdb4a82925dc026e09fbb7ca409f | 076b1e74d2d82ab636a88e2dfa56e68ae1c4ae20 | refs/heads/master | 2021-08-31T16:48:05.295099 | 2017-12-22T04:26:18 | 2017-12-22T04:26:18 | 115,036,169 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 685 | h | #pragma once
#include "stdafx.h"
using namespace sf;
#include "Entity.h"
const float PLAYER_SCALE = 1.5;
class Player:
public Entity
{
enum stateE {
left,
right,
up,
down,
stay
};
public:
bool life;
stateE state;
stateE prevState;
int dir,score;
int lives;
int CookieCount;
Player(sf::String F, float X, float Y, float W, float H);
void update(float &CurrentFrame,float time, sf::Clock &eatableClock);
void controlPlayer(float &CurrentFrame,float time);
void mapInteraction(float time,sf::Clock &eatableClock);
void animation(float &CurrentFrame, float time,stateE);
bool CollideTheWall();
//bool iCanMove();
~Player();
};
| [
"noreply@github.com"
] | noreply@github.com |
f06678adf70ed819fa1a4b91b433be26ae62351e | eec5c03a744148d686965671e00682ec927c24e7 | /fifo.cpp | a36854825cd22a034e7887ec39750bc10f46ca5c | [] | no_license | MunkhjargalG/lab1 | 843295921fc0eaaf01c0b44d92c527855001b426 | ccc915cd9486c7642ddb65e1dd8af92ebe31b8be | refs/heads/master | 2021-01-11T03:35:57.561393 | 2016-09-30T04:06:09 | 2016-09-30T04:06:09 | 68,940,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 185 | cpp | #include<stdio.h>
#include<conio.h>
int n,i;
int a[10000];
main ()
{
a[1]=0;
a[2]=1;
printf("n=");
scanf("%d",&n);
for(i=3;i<=n;i++){
a[i]=a[i-1]+a[i-2];
}
printf("%d\t",a[n]);
}
| [
"g_munkhjargal@yahoo.com"
] | g_munkhjargal@yahoo.com |
6869e4427120019e18407a26cc37826c2116f617 | c7b1d547065896a5959812e549b8eec58e519fc5 | /Interpreter.Tests/runtime_type_conversion.cpp | 3adc8bb6512ccee0ee768669f49b78c34cd7bb86 | [] | no_license | Sebazzz/lsbasi | 413146a3b277cddd7f74b8ff63424e7f28c734b5 | 6112a589672fbde480a0afceeb33eaf510f929b8 | refs/heads/master | 2023-03-12T02:55:38.974666 | 2023-02-25T14:39:04 | 2023-02-25T14:39:04 | 222,300,145 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,935 | cpp | #include "common_test.h"
#include "routine_symbol.h"
TEST_CASE( "Implicit assignment from real to integer disallowed", "[interpreter_program]" ) {
const auto program = R"(
PROGRAM Simple;
VAR a: INTEGER;
b: REAL;
BEGIN
a := b;
END.
)";
REQUIRE_THROWS_MATCHES(
test_program_interpretation(program),
runtime_type_error,
Catch::Message("Runtime type error: Attempting to assign variable variable a (which is of type built-in INTEGER) from expression with invalid type: built-in REAL"));
}
TEST_CASE( "Implicit assignment from integer to real allowed", "[interpreter_program]" ) {
const auto result = test_program_interpretation(R"(
PROGRAM Simple;
VAR a: INTEGER; b: REAL;
BEGIN
a := 2;
b := a;
END.
)");
REQUIRE( result.output == std::wstring(L"") );
REQUIRE( verify_int_symbol(result, L"a") == 2 );
REQUIRE( verify_real_symbol(result, L"b") == 2 );
}
TEST_CASE( "Assignment from string to real disallowed", "[interpreter_program]" ) {
const auto program = R"(
PROGRAM Simple;
VAR str: STRING; b: REAL;
BEGIN
str := 'HELLO WORLD';
b := str;
END.
)";
REQUIRE_THROWS_MATCHES( test_program_interpretation(program),
runtime_type_error,
Catch::Message("Runtime type error: Attempting to assign variable variable b (which is of type built-in REAL) from expression with invalid type: built-in STRING"));
}
TEST_CASE( "Assignment from string to integer disallowed", "[interpreter_program]" ) {
const auto program = R"(
PROGRAM Simple;
VAR str: STRING; b: INTEGER;
BEGIN
str := 'HELLO WORLD';
b := str;
END.
)";
REQUIRE_THROWS_MATCHES( test_program_interpretation(program),
runtime_type_error,
Catch::Message("Runtime type error: Attempting to assign variable variable b (which is of type built-in INTEGER) from expression with invalid type: built-in STRING"));
} | [
"sebastiaandammann@outlook.com"
] | sebastiaandammann@outlook.com |
448dd84bd17cc9f9e6ba883e844578050889467c | 8e4644ebf5512576305c462bb03abc526123f5af | /src/Magnum/GL/Sampler.cpp | 2120337eece2cc26bc81aafc7d6694d8850e4be0 | [
"MIT"
] | permissive | liaoshuhua/magnum | 3d6479305bc2563b652661bd2d46d72218c84399 | 64433315a1d8d6d8b05cf0cd083a44af67218846 | refs/heads/master | 2023-03-08T09:13:31.848312 | 2021-02-20T18:25:15 | 2021-02-20T20:26:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,248 | cpp | /*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020, 2021 Vladimír Vondruš <mosra@centrum.cz>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
#include "Sampler.h"
#include <Corrade/Utility/Debug.h>
#include "Magnum/Sampler.h"
#include "Magnum/GL/Context.h"
#include "Magnum/GL/Extensions.h"
#include "Magnum/GL/Implementation/State.h"
#include "Magnum/GL/Implementation/TextureState.h"
namespace Magnum { namespace GL {
/* Check correctness of binary OR in setMinificationFilter(). If nobody fucks
anything up, this assert should produce the same results on all dimensions,
thus testing only on AbstractTexture. */
#define filter_or(filter, mipmap) (GLint(SamplerFilter::filter)|GLint(SamplerMipmap::mipmap))
static_assert((filter_or(Nearest, Base) == GL_NEAREST) &&
(filter_or(Nearest, Nearest) == GL_NEAREST_MIPMAP_NEAREST) &&
(filter_or(Nearest, Linear) == GL_NEAREST_MIPMAP_LINEAR) &&
(filter_or(Linear, Base) == GL_LINEAR) &&
(filter_or(Linear, Nearest) == GL_LINEAR_MIPMAP_NEAREST) &&
(filter_or(Linear, Linear) == GL_LINEAR_MIPMAP_LINEAR),
"Unsupported constants for GL texture filtering");
#undef filter_or
namespace {
constexpr SamplerFilter FilterMapping[]{
SamplerFilter::Nearest,
SamplerFilter::Linear
};
constexpr SamplerMipmap MipmapMapping[]{
SamplerMipmap::Base,
SamplerMipmap::Nearest,
SamplerMipmap::Linear
};
constexpr SamplerWrapping WrappingMapping[]{
SamplerWrapping::Repeat,
SamplerWrapping::MirroredRepeat,
SamplerWrapping::ClampToEdge,
#ifndef MAGNUM_TARGET_WEBGL
SamplerWrapping::ClampToBorder,
#else
SamplerWrapping{},
#endif
#ifndef MAGNUM_TARGET_GLES
SamplerWrapping::MirrorClampToEdge
#else
SamplerWrapping{}
#endif
};
}
SamplerFilter samplerFilter(const Magnum::SamplerFilter filter) {
CORRADE_ASSERT(UnsignedInt(filter) < Containers::arraySize(FilterMapping),
"GL::samplerFilter(): invalid filter" << filter, {});
return FilterMapping[UnsignedInt(filter)];
}
SamplerMipmap samplerMipmap(const Magnum::SamplerMipmap mipmap) {
CORRADE_ASSERT(UnsignedInt(mipmap) < Containers::arraySize(MipmapMapping),
"GL::samplerMipmap(): invalid mode" << mipmap, {});
return MipmapMapping[UnsignedInt(mipmap)];
}
bool hasSamplerWrapping(const Magnum::SamplerWrapping wrapping) {
CORRADE_ASSERT(UnsignedInt(wrapping) < Containers::arraySize(WrappingMapping),
"GL::hasSamplerWrapping(): invalid wrapping" << wrapping, {});
return UnsignedInt(WrappingMapping[UnsignedInt(wrapping)]);
}
SamplerWrapping samplerWrapping(const Magnum::SamplerWrapping wrapping) {
CORRADE_ASSERT(UnsignedInt(wrapping) < Containers::arraySize(WrappingMapping),
"GL::samplerWrapping(): invalid wrapping" << wrapping, {});
const SamplerWrapping out = WrappingMapping[UnsignedInt(wrapping)];
CORRADE_ASSERT(UnsignedInt(out),
"GL::samplerWrapping(): wrapping" << wrapping << "is not supported on this target", {});
return out;
}
Float Sampler::maxMaxAnisotropy() {
GLfloat& value = Context::current().state().texture->maxMaxAnisotropy;
/* Get the value, if not already cached */
if(value == 0.0f) {
#ifndef MAGNUM_TARGET_GLES
if(Context::current().isExtensionSupported<Extensions::ARB::texture_filter_anisotropic>())
glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY, &value);
else
#endif
if(Context::current().isExtensionSupported<Extensions::EXT::texture_filter_anisotropic>())
glGetFloatv(
#ifndef MAGNUM_TARGET_GLES
GL_MAX_TEXTURE_MAX_ANISOTROPY
#else
GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT
#endif
, &value);
}
return value;
}
#ifndef DOXYGEN_GENERATING_OUTPUT
Debug& operator<<(Debug& debug, const SamplerFilter value) {
debug << "GL::SamplerFilter" << Debug::nospace;
switch(value) {
/* LCOV_EXCL_START */
#define _c(value) case SamplerFilter::value: return debug << "::" #value;
_c(Nearest)
_c(Linear)
#undef _c
/* LCOV_EXCL_STOP */
}
return debug << "(" << Debug::nospace << reinterpret_cast<void*>(GLint(value)) << Debug::nospace << ")";
}
Debug& operator<<(Debug& debug, const SamplerMipmap value) {
debug << "GL::SamplerMipmap" << Debug::nospace;
switch(value) {
/* LCOV_EXCL_START */
#define _c(value) case SamplerMipmap::value: return debug << "::" #value;
_c(Base)
_c(Nearest)
_c(Linear)
#undef _c
/* LCOV_EXCL_STOP */
}
return debug << "(" << Debug::nospace << reinterpret_cast<void*>(GLint(value)) << Debug::nospace << ")";
}
Debug& operator<<(Debug& debug, const SamplerWrapping value) {
debug << "GL::SamplerWrapping" << Debug::nospace;
switch(value) {
/* LCOV_EXCL_START */
#define _c(value) case SamplerWrapping::value: return debug << "::" #value;
_c(Repeat)
_c(MirroredRepeat)
_c(ClampToEdge)
#ifndef MAGNUM_TARGET_WEBGL
_c(ClampToBorder)
#endif
#ifndef MAGNUM_TARGET_GLES
_c(MirrorClampToEdge)
#endif
#undef _c
/* LCOV_EXCL_STOP */
}
return debug << "(" << Debug::nospace << reinterpret_cast<void*>(GLint(value)) << Debug::nospace << ")";
}
#if !(defined(MAGNUM_TARGET_WEBGL) && defined(MAGNUM_TARGET_GLES2))
Debug& operator<<(Debug& debug, const SamplerCompareMode value) {
debug << "GL::SamplerCompareMode" << Debug::nospace;
switch(value) {
/* LCOV_EXCL_START */
#define _c(value) case SamplerCompareMode::value: return debug << "::" #value;
_c(None)
_c(CompareRefToTexture)
#undef _c
/* LCOV_EXCL_STOP */
}
return debug << "(" << Debug::nospace << reinterpret_cast<void*>(GLenum(value)) << Debug::nospace << ")";
}
Debug& operator<<(Debug& debug, const SamplerCompareFunction value) {
debug << "GL::SamplerCompareFunction" << Debug::nospace;
switch(value) {
/* LCOV_EXCL_START */
#define _c(value) case SamplerCompareFunction::value: return debug << "::" #value;
_c(Never)
_c(Always)
_c(Less)
_c(LessOrEqual)
_c(Equal)
_c(NotEqual)
_c(GreaterOrEqual)
_c(Greater)
#undef _c
/* LCOV_EXCL_STOP */
}
return debug << "(" << Debug::nospace << reinterpret_cast<void*>(GLenum(value)) << Debug::nospace << ")";
}
#endif
#ifndef MAGNUM_TARGET_GLES
Debug& operator<<(Debug& debug, const SamplerDepthStencilMode value) {
debug << "GL::SamplerDepthStencilMode" << Debug::nospace;
switch(value) {
/* LCOV_EXCL_START */
#define _c(value) case SamplerDepthStencilMode::value: return debug << "::" #value;
_c(DepthComponent)
_c(StencilIndex)
#undef _c
/* LCOV_EXCL_STOP */
}
return debug << "(" << Debug::nospace << reinterpret_cast<void*>(GLenum(value)) << Debug::nospace << ")";
}
#endif
#endif
}}
| [
"mosra@centrum.cz"
] | mosra@centrum.cz |
eab31ec09dc4592f99f81cd53e8f17ab5374da30 | 9d364070c646239b2efad7abbab58f4ad602ef7b | /platform/external/chromium_org/chrome/browser/sync/glue/invalidation_helper.h | 4770d147fafaccbf0fda779c0fcbf723b088f484 | [
"BSD-3-Clause"
] | permissive | denix123/a32_ul | 4ffe304b13c1266b6c7409d790979eb8e3b0379c | b2fd25640704f37d5248da9cc147ed267d4771c2 | refs/heads/master | 2021-01-17T20:21:17.196296 | 2016-08-16T04:30:53 | 2016-08-16T04:30:53 | 65,786,970 | 0 | 2 | null | 2020-03-06T22:00:52 | 2016-08-16T04:15:54 | null | UTF-8 | C++ | false | false | 655 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SYNC_GLUE_INVALIDATION_HELPER_H_
#define CHROME_BROWSER_SYNC_GLUE_INVALIDATION_HELPER_H_
#include "components/invalidation/invalidation_util.h"
#include "google/cacheinvalidation/include/types.h"
#include "sync/internal_api/public/base/model_type.h"
namespace syncer {
bool RealModelTypeToObjectId(ModelType model_type,
invalidation::ObjectId* object_id);
ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types);
}
#endif
| [
"allegrant@mail.ru"
] | allegrant@mail.ru |
8a35f74fcc86889361e7042bec8643eecb7408db | 431b9981cbb650df757eb877ed12dff31f83fb6d | /command/DocumentEditor/main.cpp | 4980ebc0ee76cafbcefa75187739832c46f7088d | [] | no_license | Coguar/OOD | 1989a6586fd03d7ffb61cbb8ce71afa004da128a | f869bbfbcc77dae48bbc37873af5db646dbacb0b | refs/heads/master | 2021-05-04T09:49:28.078829 | 2017-06-29T16:45:23 | 2017-06-29T16:45:23 | 53,614,218 | 0 | 0 | null | null | null | null | MacCyrillic | C++ | false | false | 4,947 | cpp | #include "stdafx.h"
#include "Menu.h"
#include "Document.h"
#include "IParagraph.h"
#include "IImage.h"
using namespace std;
using namespace std::placeholders;
namespace
{
class CEditor
{
public:
CEditor() //-V730
:m_document(make_unique<Document>())
{
m_menu.AddItem("help", "Help", [this](istream&) { m_menu.ShowInstructions(); });
m_menu.AddItem("exit", "Exit", [this](istream&) { m_menu.Exit(); });
AddMenuItem("setTitle", "Changes title. Args: <new title>", &CEditor::SetTitle);
m_menu.AddItem("list", "Show document listing", bind(&CEditor::List, this, _1));
AddMenuItem("undo", "Undo command", &CEditor::Undo);
AddMenuItem("redo", "Redo undone command", &CEditor::Redo);
AddMenuItem("insertParagraph", "Inserts paragraph. USAGE: insertParagraph <position>|end <paragraph text>", &CEditor::InsertParagraph);
AddMenuItem("insertImage", "Inserts image. USAGE: insertImage <position>|end <width> <height> <path_to_file>", &CEditor::InsertImage);
AddMenuItem("replaceText", "Replace paragraph text. USAGE: replaceText <position> <paragraph text>", &CEditor::ReplaceText);
AddMenuItem("resizeImage", "Resize image. USAGE: resizeImage <position> <width> <height>", &CEditor::ResizeImage);
AddMenuItem("deleteItem", "Delete item. USAGE: deleteItem <position>", &CEditor::DeleteItem);
AddMenuItem("save", "Save document. USAGE: save <path>", &CEditor::Save);
}
void Start()
{
m_menu.Run();
}
private:
// ”казатель на метод класса CEditor, принимающий istream& и возвращающий void
typedef void (CEditor::*MenuHandler)(istream & in);
void AddMenuItem(const string & shortcut, const string & description, MenuHandler handler)
{
m_menu.AddItem(shortcut, description, bind(handler, this, _1));
}
boost::optional<size_t> GetPosition(istream & in)
{
boost::optional<size_t> position;
string positionStr;
in >> positionStr;
if (positionStr != "end")
{
position = stoul(positionStr);
}
return position;
}
// TODO: скипнуть первый пробел элегантнее
void SetTitle(istream & in)
{
string head;
string tail;
if (in >> head)
{
getline(in, tail);
}
string title = head + tail;
m_document->SetTitle(title);
}
void InsertParagraph(istream & in)
{
boost::optional<size_t> position = GetPosition(in);
string text;
getline(in, text);
m_document->InsertParagraph(text, position);
}
void InsertImage(istream & in)
{
string positionStr;
in >> positionStr;
boost::optional<size_t> position;
if (positionStr == "end")
{
position = boost::none;
}
else
{
position = stoul(positionStr);
}
int width;
int height;
in >> width >> height;
string head;
string path;
if (in >> head)
{
getline(in, path);
}
path = head + path;
m_document->InsertImage(path, width, height, position);
}
void List(istream & /*in*/)
{
cout << "-------------" << endl;
cout << "Title: " << m_document->GetTitle() << endl;
for (size_t i = 0; i < m_document->GetItemsCount(); ++i)
{
auto item = m_document->GetItem(i);
if (auto paragraphPtr = item.GetParagraph())
{
cout << i << ".Paragraph: " << paragraphPtr->GetText() << endl;
}
else if (auto imagePtr = item.GetImage())
{
cout << i << ".Image: " << imagePtr->GetWidth() << " "<< imagePtr->GetHeight() << " "<< imagePtr->GetPath() << endl;
}
}
cout << "-------------" << endl;
}
void ReplaceText(istream & in)
{
size_t position;
in >> position;
string text;
getline(in, text);
auto item = m_document->GetItem(position);
if (auto paragraphPtr = item.GetParagraph())
{
paragraphPtr->SetText(text);
return;
}
throw std::runtime_error("this is not parargaph");
}
void Save(istream & in)
{
string path;
in.get();
getline(in, path);
if (path.empty())
{
cout << "path is empty" << endl;
return;
}
m_document->Save(path);
}
void ResizeImage(istream & in)
{
size_t position;
int width, height;
in >> position >> width >> height;
if (width < 1 || width > 10000)
{
throw std::invalid_argument("invalid image width");
}
if (height < 1 || height > 10000)
{
throw std::invalid_argument("invalid image height");
}
auto item = m_document->GetItem(position);
if (auto imagePtr = item.GetImage())
{
imagePtr->Resize(width, height);
return;
}
throw std::runtime_error("item isn't shape");
}
void DeleteItem(istream & in)
{
size_t position;
in >> position;
m_document->DeleteItem(position);
}
void Undo(istream &)
{
if (m_document->CanUndo())
{
m_document->Undo();
return;
}
cout << "Can't undo" << endl;
}
void Redo(istream &)
{
if (m_document->CanRedo())
{
m_document->Redo();
return;
}
cout << "Can't redo" << endl;
}
CMenu m_menu;
unique_ptr<IDocument> m_document;
};
}
int main()
{
CEditor editor;
editor.Start();
return 0;
}
| [
"Cogucc@mail.ru"
] | Cogucc@mail.ru |
2519b926d30b28c1f3a271779980fdf27ac86bb5 | 0ca129d209d5bfd386492aa98dd4d15a103cfb23 | /src/chainparams.cpp | afb1ca406c866c5e88abef226c107cb7460c3b61 | [
"MIT"
] | permissive | PayQ/anodoscoin | 8ca1fd73eb31353eca581f507adedd1fa14add45 | 187507be84436e2a35061e35f564fad73244427e | refs/heads/master | 2020-03-25T16:53:59.976836 | 2018-06-25T06:15:48 | 2018-06-25T06:15:48 | 139,826,474 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,231 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Anodos developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2015-2017 The ANS developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "chainparams.h"
#include "random.h"
#include "util.h"
#include "utilstrencodings.h"
#include "base58.h"
#include <assert.h>
#include <boost/assign/list_of.hpp>
using namespace std;
using namespace boost::assign;
struct SeedSpec6 {
uint8_t addr[16];
uint16_t port;
};
#include "chainparamsseeds.h"
static CBlock CreateGenesisBlock(const char* pszTimestamp, const CScript& genesisOutputScript, uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward)
{
CMutableTransaction txNew;
txNew.nVersion = 1;
txNew.vin.resize(1);
txNew.vout.resize(1);
txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << std::vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
txNew.vout[0].nValue = genesisReward;
txNew.vout[0].scriptPubKey = genesisOutputScript;
CBlock genesis;
genesis.nTime = nTime;
genesis.nBits = nBits;
genesis.nNonce = nNonce;
genesis.nVersion = nVersion;
genesis.vtx.push_back(txNew);
genesis.hashPrevBlock.SetNull();
genesis.hashMerkleRoot = genesis.BuildMerkleTree();
return genesis;
}
static CBlock CreateGenesisBlock(uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward)
{
const char* pszTimestamp = "06.18 ANODOS system.";
const CScript genesisOutputScript = CScript() << ParseHex("04f756261bc2ba3b610ebb0ea03139f68e638fb524de9d167e98dbe1a6f50ba3a0ad20c7c90c391461bb72400572989e1923378a00ff7d33e2860c46ef683aa01a") << OP_CHECKSIG;
return CreateGenesisBlock(pszTimestamp, genesisOutputScript, nTime, nNonce, nBits, nVersion, genesisReward);
}
static void convertSeed6(std::vector<CAddress>& vSeedsOut, const SeedSpec6* data, unsigned int count)
{
const int64_t nOneWeek = 7 * 24 * 60 * 60;
for (unsigned int i = 0; i < count; i++) {
struct in6_addr ip;
memcpy(&ip, data[i].addr, sizeof(ip));
CAddress addr(CService(ip, data[i].port));
addr.nTime = GetTime() - GetRand(nOneWeek) - nOneWeek;
vSeedsOut.push_back(addr);
}
}
static Checkpoints::MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
(0, uint256("0x000003afc2edd6461d6ec629985b21a1ca48f60ec64506cbe5a33c9aa6c2eb33"))
;
static const Checkpoints::CCheckpointData data = {
&mapCheckpoints,
1529398655,
0,
2000
};
static Checkpoints::MapCheckpoints mapCheckpointsTestnet =
boost::assign::map_list_of(0, uint256("0x000003afc2edd6461d6ec629985b21a1ca48f60ec64506cbe5a33c9aa6c2eb33"));
static const Checkpoints::CCheckpointData dataTestnet = {
&mapCheckpointsTestnet,
1529398655,
0,
250};
static Checkpoints::MapCheckpoints mapCheckpointsRegtest =
boost::assign::map_list_of(0, uint256("0x000003afc2edd6461d6ec629985b21a1ca48f60ec64506cbe5a33c9aa6c2eb33"));
static const Checkpoints::CCheckpointData dataRegtest = {
&mapCheckpointsRegtest,
1529398655,
0,
100};
class CMainParams : public CChainParams
{
public:
CMainParams()
{
networkID = CBaseChainParams::MAIN;
strNetworkID = "main";
pchMessageStart[0] = 0xAA;
pchMessageStart[1] = 0xCC;
pchMessageStart[2] = 0xBA;
pchMessageStart[3] = 0xAB;
vAlertPubKey = ParseHex("04a4011d77086638f0fa3b679ee80c17e5952eb3548ff57128bf4badc648a9434b922b349c9aca46c20749f820375b4e817a668683807f1bd269a0a3dc77f1b507");
nDefaultPort = 30101;
bnProofOfWorkLimit = ~uint256(0) >> 20;
nSubsidyHalvingInterval = 210000;
nMaxReorganizationDepth = 100;
nEnforceBlockUpgradeMajority = 750;
nRejectBlockOutdatedMajority = 950;
nToCheckBlockUpgradeMajority = 1000;
nMinerThreads = 0;
nTargetTimespan = 0.75 * 60;
nTargetSpacing = 0.75 * 60;
nLastPOWBlock = 360;
nMaturity = 45;
nMasternodeCountDrift = 20;
nMasternodeColleteralLimxDev = 1000;
nModifierUpdateBlock = 1;
nMaxMoneyOut = 30000000 * COIN;
genesis = CreateGenesisBlock(1529398655, 307209, 0x1e0ffff0, 1, 0 * COIN);
hashGenesisBlock = genesis.GetHash();
assert(hashGenesisBlock == uint256("0x000003afc2edd6461d6ec629985b21a1ca48f60ec64506cbe5a33c9aa6c2eb33"));
assert(genesis.hashMerkleRoot == uint256("0xb90e46b0900f1df04efae78fc322630b44e1b81c77284900e920a86cbb5a9630"));
vSeeds.push_back(CDNSSeedData("up.anodoscoin.com", "up.anodoscoin.com"));
vSeeds.push_back(CDNSSeedData("down.anodoscoin.com", "down.anodoscoin.com"));
vSeeds.push_back(CDNSSeedData("anodos.anodoscoin.com", "anodos.anodoscoin.com"));
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 15);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 18);
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 146);
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x88)(0xB2)(0x1E).convert_to_container<std::vector<unsigned char> >();
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x88)(0xAD)(0xE4).convert_to_container<std::vector<unsigned char> >();
base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x00)(0x6d).convert_to_container<std::vector<unsigned char> >();
convertSeed6(vFixedSeeds, pnSeed6_main, ARRAYLEN(pnSeed6_main));
fRequireRPCPassword = true;
fMiningRequiresPeers = true;
fAllowMinDifficultyBlocks = false;
fDefaultConsistencyChecks = false;
fRequireStandard = true;
fMineBlocksOnDemand = false;
fSkipProofOfWorkCheck = false;
fTestnetToBeDeprecatedFieldRPC = false;
fHeadersFirstSyncingActive = false;
nPoolMaxTransactions = 3;
strSporkKey = "04d857f1f7d32b24f2047a769db2321e63107c5d0f09d0fcebc5f46c1e78710f22635a365b0f2d97de8f77df84bac442f674628ea1a4baadbbfbd3b97d3504a9f1";
nStartMasternodePayments = 1529398886;
CBitcoinAddress address;
std::string strAddress = "7CUvdQEUYcYr4u8rTTwMSWgtE5GMjk5EMP";
SelectParams(CBaseChainParams::MAIN);
assert(address.SetString(strAddress));
masternodeTestDummyAddress = GetScriptForDestination(address.Get());
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
return data;
}
};
static CMainParams mainParams;
/**
* Testnet (v3)
*/
class CTestNetParams : public CMainParams
{
public:
CTestNetParams()
{
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
return dataTestnet;
}
};
static CTestNetParams testNetParams;
/**
* Regression test
*/
class CRegTestParams : public CTestNetParams
{
public:
CRegTestParams()
{
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
return dataRegtest;
}
};
static CRegTestParams regTestParams;
/**
* Unit test
*/
class CUnitTestParams : public CMainParams, public CModifiableParams
{
public:
CUnitTestParams()
{
networkID = CBaseChainParams::UNITTEST;
strNetworkID = "unittest";
nDefaultPort = 51478;
vFixedSeeds.clear(); //! Unit test mode doesn't have any fixed seeds.
vSeeds.clear(); //! Unit test mode doesn't have any DNS seeds.
fRequireRPCPassword = false;
fMiningRequiresPeers = false;
fDefaultConsistencyChecks = true;
fAllowMinDifficultyBlocks = false;
fMineBlocksOnDemand = true;
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
// UnitTest share the same checkpoints as MAIN
return data;
}
//! Published setters to allow changing values in unit test cases
virtual void setSubsidyHalvingInterval(int anSubsidyHalvingInterval) { nSubsidyHalvingInterval = anSubsidyHalvingInterval; }
virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority) { nEnforceBlockUpgradeMajority = anEnforceBlockUpgradeMajority; }
virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority) { nRejectBlockOutdatedMajority = anRejectBlockOutdatedMajority; }
virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority) { nToCheckBlockUpgradeMajority = anToCheckBlockUpgradeMajority; }
virtual void setDefaultConsistencyChecks(bool afDefaultConsistencyChecks) { fDefaultConsistencyChecks = afDefaultConsistencyChecks; }
virtual void setAllowMinDifficultyBlocks(bool afAllowMinDifficultyBlocks) { fAllowMinDifficultyBlocks = afAllowMinDifficultyBlocks; }
virtual void setSkipProofOfWorkCheck(bool afSkipProofOfWorkCheck) { fSkipProofOfWorkCheck = afSkipProofOfWorkCheck; }
};
static CUnitTestParams unitTestParams;
static CChainParams* pCurrentParams = 0;
CModifiableParams* ModifiableParams()
{
assert(pCurrentParams);
assert(pCurrentParams == &unitTestParams);
return (CModifiableParams*)&unitTestParams;
}
const CChainParams& Params()
{
assert(pCurrentParams);
return *pCurrentParams;
}
CChainParams& Params(CBaseChainParams::Network network)
{
switch (network) {
case CBaseChainParams::MAIN:
return mainParams;
case CBaseChainParams::TESTNET:
return testNetParams;
case CBaseChainParams::REGTEST:
return regTestParams;
case CBaseChainParams::UNITTEST:
return unitTestParams;
default:
assert(false && "Unimplemented network");
return mainParams;
}
}
void SelectParams(CBaseChainParams::Network network)
{
SelectBaseParams(network);
pCurrentParams = &Params(network);
}
bool SelectParamsFromCommandLine()
{
CBaseChainParams::Network network = NetworkIdFromCommandLine();
if (network == CBaseChainParams::MAX_NETWORK_TYPES)
return false;
SelectParams(network);
return true;
}
| [
"anadoscoin@gmail.com"
] | anadoscoin@gmail.com |
c2080fc00caa0304cfe12a6612006e34832e2760 | 57a1b0bb19c54daa8002accdf4b940e46d1b5da2 | /Lib/include/StatesAndOperators/TBTK/DefaultOperator.h | 54e6a461a60884722efa050b2d45887e7fb550be | [
"MIT",
"JSON",
"Apache-2.0"
] | permissive | Huaguiyuan/TBTK | 4978a63c02481d40431f2a40a9695a977f84ba99 | fc4382395ed0eaae32c236b914dd4e888e21bfc3 | refs/heads/master | 2020-03-23T09:13:58.754664 | 2018-07-01T11:24:35 | 2018-07-01T11:24:35 | 141,375,574 | 0 | 1 | Apache-2.0 | 2018-07-18T03:23:04 | 2018-07-18T03:23:03 | null | UTF-8 | C++ | false | false | 1,083 | h | /* Copyright 2016 Kristofer Björnson
*
* 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.
*/
/** @package TBTKcalc
* @file DefaultOperator.h
* @brief Default (dummy) operator class for indicating default behavior.
*
* @author Kristofer Björnson
*/
#ifndef COM_DAFER45_TBTK_DEFAULT_OPERATOR
#define COM_DAFER45_TBTK_DEFAULT_OPERATOR
#include "TBTK/AbstractOperator.h"
namespace TBTK{
class DefaultOperator : public AbstractOperator{
public:
/** Constructor. */
DefaultOperator();
/** Destructor. */
~DefaultOperator();
};
}; //End of namespace TBTK
#endif
| [
"dafer45@hotmail.com"
] | dafer45@hotmail.com |
f55daf4f60f56bbb5734de4e86ddf35e75f8900e | dbd9488801484f78f74f6fbc1b87be035cf7a48f | /leetcode/contest/BiWeekly/32contest/KthMissingNumber/main.cpp | eee562450958ad96e200730d3d8ea6fbaadad419 | [
"MIT"
] | permissive | jeevanpuchakay/a2oj | a5a069c72fd1b6ec3f92763e10b23454d3fdc2ec | f867e9b2ced6619be3ca6b1a1a1838107322782d | refs/heads/master | 2023-08-19T05:45:44.226044 | 2021-07-19T10:04:23 | 2021-07-19T10:04:23 | 192,790,577 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 635 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long double ld;
typedef long long int ll;
vector<vector<ll>> ladjlist;
ll lmax(ll x, ll y) { return (x > y) ? x : y; }
ll lmin(ll x, ll y) { return (x > y) ? y : x; }
class Solution {
public:
int findKthPositive(vector<int>& arr, int k) {
int missingCount=0,n=arr.size(),last=0;
for(int i=0;i<n;i++){
if((missingCount+(arr[i]-last-1))<k){
missingCount+=(arr[i]-last-1);
}else{
return (last+k-missingCount);
}
last=arr[i];
}
return (last+k-missingCount);
}
}; | [
"jeevangkr37@outlook.com"
] | jeevangkr37@outlook.com |
354e4c62a59ea0b15c19bb9d529b17715e51255c | 2bbb912dd363f789d774788120d95536386a376a | /src/Main_DakotaT.cpp | 4ab081800e3206d88f1dbc0b3d85f678ad43e142 | [
"BSD-2-Clause"
] | permissive | ImmutableLtd/Albany | 13262fc306981c23dd18c0d7d4b7c58fb2c8843c | 59ce0f842afaed4e53c9d4b06294f3a1c7288ede | refs/heads/master | 2021-01-18T00:05:00.276963 | 2016-02-20T22:26:28 | 2016-02-20T22:26:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,550 | cpp | //*****************************************************************//
// Albany 2.0: Copyright 2012 Sandia Corporation //
// This Software is released under the BSD license detailed //
// in the file "license.txt" in the top-level Albany directory //
//*****************************************************************//
#include <iostream>
#include "Albany_SolverFactory.hpp"
#include "Albany_DakotaT.hpp"
#include "Teuchos_GlobalMPISession.hpp"
#include "Teuchos_TimeMonitor.hpp"
#include "Teuchos_VerboseObject.hpp"
#include "Teuchos_StandardCatchMacros.hpp"
// Global variable that denotes this is the Tpetra executable
bool TpetraBuild = false;
int main(int argc, char *argv[]) {
int status=0; // 0 = pass, failures are incremented
bool success = true;
Teuchos::GlobalMPISession mpiSession(&argc,&argv);
Teuchos::RCP<Teuchos::FancyOStream> out(Teuchos::VerboseObjectBase::getDefaultOStream());
try {
Teuchos::RCP<Teuchos::Time> totalTime =
Teuchos::TimeMonitor::getNewTimer("AlbanyDakotaT: ***Total Time***");
Teuchos::TimeMonitor totalTimer(*totalTime); //start timer
status += Albany_DakotaT(argc, argv);
// Regression comparisons fopr Dakota runs only valid on Proc 0.
if (mpiSession.getRank() > 0) status=0;
else *out << "\nNumber of Failed Comparisons: " << status << std::endl;
}
TEUCHOS_STANDARD_CATCH_STATEMENTS(true, std::cerr, success);
if (!success) status+=10000;
Teuchos::TimeMonitor::summarize(std::cout, false, true, false);
return status;
}
| [
"jafike@sandia.gov"
] | jafike@sandia.gov |
21dd820b30cf6c010e65181fed71a8d4ab56640d | ed8a369209da12947886fc5d8a3f3d9675ebccc6 | /src/bindings/python/PyOpenColorIO.h | fb923b25795c65b696452f131ea51aa3dd89453e | [
"BSD-3-Clause",
"CC-BY-4.0"
] | permissive | scoopxyz/OpenColorIO-Docs | 1562a821646e6262b9a22238ff39a49763207f95 | 63a0c65828df32674056a213ccb9b8007c05b374 | refs/heads/master | 2022-11-16T18:18:24.316680 | 2020-07-01T17:26:19 | 2020-07-01T17:26:19 | 270,458,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,526 | h | // SPDX-License-Identifier: BSD-3-Clause
// Copyright Contributors to the OpenColorIO Project.
#ifndef INCLUDED_OCIO_PYOPENCOLORIO_H
#define INCLUDED_OCIO_PYOPENCOLORIO_H
#include <pybind11/pybind11.h>
#include <pybind11/numpy.h>
#include <pybind11/stl.h>
#include <pybind11/operators.h>
#include <OpenColorIO/OpenColorIO.h>
#include "utils/StringUtils.h"
// generated by `docstrings` build target
#include "PyDocStr.h"
// docstring expansion macro
#define DS(...) DOC(OCIO_NAMESPACE, __VA_ARGS__)
namespace py = pybind11;
using namespace pybind11::literals;
namespace OCIO_NAMESPACE
{
void bindPyTypes(py::module & m);
void bindPyTransform(py::module & m);
void bindPyConfig(py::module & m);
void bindPyFileRules(py::module & m);
void bindPyColorSpace(py::module & m);
void bindPyColorSpaceSet(py::module & m);
void bindPyLook(py::module & m);
void bindPyViewTransform(py::module & m);
void bindPyProcessor(py::module & m);
void bindPyCPUProcessor(py::module & m);
void bindPyGPUProcessor(py::module & m);
void bindPyProcessorMetadata(py::module & m);
void bindPyBaker(py::module & m);
void bindPyImageDesc(py::module & m);
void bindPyGpuShaderCreator(py::module & m);
void bindPyContext(py::module & m);
} // namespace OCIO_NAMESPACE
// Transform polymorphism is not detected by pybind11 outright. Custom automatic downcasting
// is needed to return Transform subclass types from the OCIO API. See:
// https://pybind11.readthedocs.io/en/stable/advanced/classes.html#custom-automatic-downcasters
namespace OCIO = OCIO_NAMESPACE;
namespace pybind11
{
template<>
struct polymorphic_type_hook<OCIO::Transform> {
static const void *get(const OCIO::Transform *const src, const std::type_info*& type) {
// Note: src may be nullptr
if (src)
{
if(dynamic_cast<const OCIO::AllocationTransform*>(src))
{
type = &typeid(OCIO::AllocationTransform);
}
else if(dynamic_cast<const OCIO::CDLTransform*>(src))
{
type = &typeid(OCIO::CDLTransform);
}
else if(dynamic_cast<const OCIO::ColorSpaceTransform*>(src))
{
type = &typeid(OCIO::ColorSpaceTransform);
}
else if(dynamic_cast<const OCIO::DisplayTransform*>(src))
{
type = &typeid(OCIO::DisplayTransform);
}
else if(dynamic_cast<const OCIO::ExponentTransform*>(src))
{
type = &typeid(OCIO::ExponentTransform);
}
else if(dynamic_cast<const OCIO::ExponentWithLinearTransform*>(src))
{
type = &typeid(OCIO::ExponentWithLinearTransform);
}
else if(dynamic_cast<const OCIO::ExposureContrastTransform*>(src))
{
type = &typeid(OCIO::ExposureContrastTransform);
}
else if(dynamic_cast<const OCIO::FileTransform*>(src))
{
type = &typeid(OCIO::FileTransform);
}
else if(dynamic_cast<const OCIO::FixedFunctionTransform*>(src))
{
type = &typeid(OCIO::FixedFunctionTransform);
}
else if(dynamic_cast<const OCIO::GroupTransform*>(src))
{
type = &typeid(OCIO::GroupTransform);
}
else if(dynamic_cast<const OCIO::LogAffineTransform*>(src))
{
type = &typeid(OCIO::LogAffineTransform);
}
else if(dynamic_cast<const OCIO::LogTransform*>(src))
{
type = &typeid(OCIO::LogTransform);
}
else if(dynamic_cast<const OCIO::LookTransform*>(src))
{
type = &typeid(OCIO::LookTransform);
}
else if(dynamic_cast<const OCIO::Lut1DTransform*>(src))
{
type = &typeid(OCIO::Lut1DTransform);
}
else if(dynamic_cast<const OCIO::Lut3DTransform*>(src))
{
type = &typeid(OCIO::Lut3DTransform);
}
else if(dynamic_cast<const OCIO::MatrixTransform*>(src))
{
type = &typeid(OCIO::MatrixTransform);
}
else if(dynamic_cast<const OCIO::RangeTransform*>(src))
{
type = &typeid(OCIO::RangeTransform);
}
}
return src;
}
};
} // namespace pybind11
#endif // INCLUDED_OCIO_PYOPENCOLORIO_H
| [
"sean@seancooper.xyz"
] | sean@seancooper.xyz |
490bf088771d0a4eb964172888854774464d2391 | a333be26e4df4ac0c5c202026eee16c51119286d | /src/bar.cpp | 25cf4a6fa6131391259873e3ce23f377dfbe3e46 | [] | no_license | dhq-boiler/blockCrash | e8c072d20c67dcb4ae5472e0c30cc9811e21aa5b | 63bb1e99681ff5b9ee9905b05472fd1db43da8b7 | refs/heads/master | 2022-11-22T07:03:10.817548 | 2020-07-18T08:38:46 | 2020-07-18T08:38:46 | 280,608,007 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,727 | cpp | #include "pch.h"
#include "bar.h"
BAR::BAR( int barnum )
{
gh[0] = LoadGraph(TEXT("bar.bmp")); // バー1
gh[1] = LoadGraph(TEXT("barsecond.bmp")); // バー2
gh[2] = LoadGraph(TEXT("barthird.bmp")); // バー3
mbar = barnum-1;
GetGraphSize(gh[mbar],&width,&height);
//y座標は固定なのでここで設定
y=540;
//最初は真ん中
x=WIDTH/2;
// 拡大率の初期化
ex = 2;
//終了フラグは偽にしとく
endflag=false;
end = false;
}
void BAR::Draw(){
DrawExtendGraph(x-width*ex/4,y-height/2,x+width*ex/4,y+height/2,gh[mbar],TRUE);
}
bool BAR::KeyGet()
{
bool on = false;
if(barx){ // バーの移動
x = barx;
on = true;
}
if(key[KEY_INPUT_LEFT] == 1){
//左に移動。
x-=SPEED;
accel = -1;
on = true;
}
if(key[KEY_INPUT_RIGHT] == 1){
//右に移動
x+=SPEED;
accel = 1;
on = true;
}
if(key[KEY_INPUT_ESCAPE] == 1){
//エスケープキーが押されていれば終了フラグをtrueにする
endflag=true;
}
//画面のはみ出し処理
if(x<width*ex/4)
x=width*ex/4;
if(x>WIDTH-width*ex/4)
x=WIDTH-width*ex/4;
mx = x;
return on;
}
int BAR::GetAcceleration()
{
return accel;
}
void BAR::SetX( int vx )
{
x = vx;
}
int BAR::GetX()
{
return x;
}
int BAR::GetY()
{
return y;
}
int BAR::GetWidth()
{
return width;
}
int BAR::GetHeight()
{
return height;
}
void BAR::ExtendWidth()
{
++ex;
}
void BAR::Reset(){ // リセット
ex = 2;
}
void BAR::SetFlag( bool flag){
end = flag;
}
bool BAR::All()
{
if(!end){
//キー処理
if(!KeyGet())
accel = 0;
}
//描画処理
Draw();
//終了フラグを返す。
return endflag;
}
void BAR::Destroy(){
}
BAR::~BAR()
{
Destroy();
}
| [
"dhq_boiler@outlook.com"
] | dhq_boiler@outlook.com |
59061aff4d8ce3154996edfc2ce67baeebf66624 | d12dcd91834043efac4a9bd816d6a838a2e23111 | /PA-2/Part2/test2.cpp | 19c6feae76a9fa80627176b49b70746343ed3c79 | [] | no_license | munim-hussain/EE-CS-202-PA | 8d32f4fe2ba7bad63d36a688f3a478bad6bc9625 | 1ca1134f3efd82b539c23ef7f3dca160a1dfd740 | refs/heads/main | 2023-07-01T13:45:52.234720 | 2021-07-25T14:20:05 | 2021-07-25T14:20:05 | 389,197,042 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,476 | cpp | // Test file for BST Implementation
#include "avl.hpp"
#include <vector>
using namespace std;
void test_insert(shared_ptr<AVL<int,string>> tree);
int trav(shared_ptr<node<int,string>> P,int i);
vector<int> find_delete(int k,vector<int> v);
void test_delete(shared_ptr<AVL<int,string>> tree);
void test_search(shared_ptr<AVL<int,string>> tree);
void test_replace(shared_ptr<AVL<int,string>> tree);
void test_height(shared_ptr<AVL<int,string>> tree);
vector<int> test_vec;
vector<int> ref_vec;
int marks = 0;
int main()
{
shared_ptr<AVL<int,string>> tree(new AVL<int,string>(false));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(34,"a")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(7,"b")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(53,"c")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(12,"d")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(68,"e")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(90,"f")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(24,"g")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(71,"h")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(13,"i")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(3,"j")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(1,"k")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(61,"l")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(18,"m")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(30,"n")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(50,"o")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(4,"p")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(11,"q")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(52,"r")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(54,"r")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(56,"r")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(55,"r")));
tree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(80,"r")));
//---------------------------------------------------------
ref_vec.push_back(1);
ref_vec.push_back(3);
ref_vec.push_back(4);
ref_vec.push_back(7);
ref_vec.push_back(11);
ref_vec.push_back(12);
ref_vec.push_back(13);
ref_vec.push_back(18);
ref_vec.push_back(24);
ref_vec.push_back(30);
ref_vec.push_back(34);
ref_vec.push_back(50);
ref_vec.push_back(52);
ref_vec.push_back(53);
ref_vec.push_back(54);
ref_vec.push_back(55);
ref_vec.push_back(56);
ref_vec.push_back(61);
ref_vec.push_back(68);
ref_vec.push_back(71);
ref_vec.push_back(80);
ref_vec.push_back(90);
//-----------------------------------------------------------
cout << "Test 2 - BST Without Balancing"<<endl<<endl;
test_insert(tree);
test_search(tree);
test_delete(tree);
test_height(tree);
cout << endl << "Total Marks: " << marks << "/20" <<endl;
if (marks == 20)
{
cout << "Wowow Amaze. Good Job! :)" << endl;
}
return 0;
}
// Test 2.1 - BST Insertion
void test_insert(shared_ptr<AVL<int,string>> tree)
{
cout<<"Test 2.1 - BST Insertion"<<endl;
test_vec.clear();
int counter=0;
// Case 2.1.1
cout << 1;
shared_ptr<AVL<int,string>>checktree (new AVL<int,string>(false));
checktree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(20,"OneNodeTree")));
int num = 0;
if (checktree->getRoot() != NULL)
{
num = checktree -> getRoot()->key;
}
if (num == 20)
{
cout << "Test 2.1.1: Passed" << endl;
counter++;
}
else
{
cout << "Test 2.1.1: Failed" << endl;
}
// Case 2.1.2
checktree->insertNode(shared_ptr<node<int,string>>(make_shared<node<int,string>>(12,"Tree")));
checktree->insertNode(shared_ptr<node<int,string>>(make_shared<node<int,string>>(24,"Tree")));
int a=trav(checktree->getRoot(),0);
int arr[3] = {12,20,24};
int score = 0;
for (int i=0;i<test_vec.size();i++)
{
if (test_vec[i]==arr[i])
{
score++;
}
}
if (score==3)
{
cout << "Test 2.1.2: Passed" << endl;
counter = counter + 2;
}
else
{
cout << "Test 2.1.2: Failed" << endl;
}
test_vec.clear();
// Case 2.1.3
score = 0;
a=trav(tree->getRoot(),0);
for (int i=0;i<test_vec.size();i++)
{
if (test_vec[i]==ref_vec[i])
{
score++;
}
}
if ((score/ref_vec.size())*2 == 2)
{
cout << "Test 2.1.3: Passed" << endl;
}
else
{
cout << "Test 2.1.3: Failed" << endl;
score = 0;
}
counter = counter + (score/ref_vec.size())*2;
cout<<"Total Points: "<< counter << "/5" << endl << endl;
marks = marks + counter;
return;
}
// Test 2.3 - BST Deletion
void test_delete(shared_ptr<AVL<int,string>> tree)
{
cout<<"Test 2.3 - BST Deletion"<<endl;
int counter=0;
// Case 2.3.1
AVL<int,string>* checktree=new AVL<int,string>(false);
checktree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(20,"H")));
checktree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(30,"H")));
checktree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(12,"H")));
checktree->deleteNode(30);
test_vec.clear();
int num =trav(checktree->getRoot(),0);
int treearr[2] = {12,20};
int score = 0;
if (test_vec.size() == 2)
{
score++;
}
for (int i = 0; i < (test_vec.size()); i++)
{
if (test_vec[i] == treearr[i])
{
score++;
}
}
if (score==3)
{
cout << "Test 2.3.1: Passed" << endl;
counter = 1;
}
else
{
cout << "Test 2.3.1: Failed" << endl;
}
test_vec.clear();
// Case 2.3.2
checktree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(10,"R")));
checktree->deleteNode(10);
score = 0;
int e=trav(checktree->getRoot(),0);
if (test_vec.size() == 2)
{
score++;
}
for (int i = 0; i < (test_vec.size()); i++)
{
if (test_vec[i] == treearr[i])
{
score++;
}
}
if (score==3)
{
cout << "Test 2.3.2: Passed" << endl;
counter++;
}
else
{
cout << "Test 2.3.2: Failed" << endl;
}
test_vec.clear();
// Case 2.1.3
tree->deleteNode(90);
tree->deleteNode(18);
tree->deleteNode(50);
tree->deleteNode(24);
tree->deleteNode(68);
tree->deleteNode(54);
ref_vec=find_delete(90,ref_vec);
ref_vec=find_delete(18,ref_vec);
ref_vec=find_delete(50,ref_vec);
ref_vec=find_delete(24,ref_vec);
ref_vec=find_delete(68,ref_vec);
ref_vec=find_delete(54,ref_vec);
int a=trav(tree->getRoot(),0);
for (int i=0;i<test_vec.size();i++)
{
if (test_vec[i]==ref_vec[i])
{
score++;
}
}
if ((score/ref_vec.size())*2 == 2)
{
cout << "Test 2.3.3: Passed" << endl;
}
else
{
cout << "Test 2.3.3: Failed" << endl;
}
counter = counter + (score/ref_vec.size())*3;
cout<<"Total Points: " << counter << "/5" <<endl;
marks = marks + counter;
return;
}
// Test 2.2 : Search
void test_search(shared_ptr<AVL<int,string>> tree)
{
cout<< "Test 2.2 - BST Search" << endl;
vector<int> ref_search;
int counter=0;
test_vec.clear();
int arr[5] = {13,11,52,90,24};
// Case 2.2.1
for (int i = 0; i < 5; i++)
{
if (tree->searchNode(arr[i]))
{
test_vec.push_back(tree->searchNode(arr[i])->key);
}
}
ref_search.push_back(13);
ref_search.push_back(11);
ref_search.push_back(52);
ref_search.push_back(90);
ref_search.push_back(24);
for (int i=0;i<test_vec.size();i++)
{
if (test_vec[i]==ref_search[i])
{
counter++;
}
}
counter = (counter/ref_search.size())*5;
if (counter == 5)
{
cout << "Test 2.2.1: Passed" << endl;
counter = 3;
}
else
{
counter = 0;
cout << "Test 2.2.1: Failed" << endl;
}
// Case 2.2.2
if (tree->searchNode(14) == NULL && tree->searchNode(90)!=NULL)
{
counter = counter + 2;
cout << "Test 2.2.2: Passed" << endl;
}
else
{
cout << "Test 2.2.2: Failed" << endl;
}
cout<< "Total Points: "<< counter <<"/5"<<endl<<endl;
marks = marks + counter;
return;
}
// Test 2.4 : Height
void test_height(shared_ptr<AVL<int,string>> tree)
{
cout<< endl << "Test 2.4 - BST Height"<<endl;
test_vec.clear();
int counter=0;
// Case 2.4.1 - Single Node Tree Height
shared_ptr<AVL<int,string>> checktree(new AVL<int,string>(false));
checktree->insertNode(shared_ptr<node<int,string>> (make_shared<node<int,string>>(1,"singlennodetest")));
int h = checktree->height(checktree->getRoot());
if (h==1)
{
cout << "Test 2.4.1: Passed" << endl;
counter = counter + 2;
}
else
{
cout << "Test 2.4.1: Failed" << endl;
}
// Case 2.4.2 - Main Height Test
h=tree->height(tree->getRoot());
if (h==6)
{
cout << "Test 2.4.2: Passed" << endl;
counter= counter + 3;
}
else
{
cout << "Test 2.4.2: Failed" << endl;
}
cout << "Total Points: "<<counter<<"/5"<<endl;
marks = marks + counter;
}
int trav(shared_ptr<node<int,string>> P,int i)
{
if (P == NULL)
{
return 0;
}
if(P->left)
i=trav(P->left,i);
test_vec.push_back(P->key);
i++;
if(P->right)
i=trav(P->right,i);
return i;
}
vector<int> find_delete(int k,vector<int> v)
{
for (int i=0;i<v.size();i++)
{
if (v.at(i)==k)
{
v.erase(v.begin()+i);
return v;
}
}
} | [
"87913579+munim-hussain@users.noreply.github.com"
] | 87913579+munim-hussain@users.noreply.github.com |
ceccd325c1c0738dd2442e8fdc26bf7ebcedee26 | 96c30db53b5751f480ea334a22fd3259cc920807 | /src/DpcmDC.h | 2f508c8991ad5cee3203d34fac297acf025dcffb | [] | no_license | IDSRosler/Light-Field-Codec | a7f90a0f91d2175cf11d7482b96a687849f18b56 | 2c4c4d45c187f36e784de14edc79dc9a54c28e1e | refs/heads/master | 2022-05-13T08:51:45.893989 | 2020-10-30T00:13:03 | 2020-10-30T00:13:03 | 250,524,136 | 2 | 4 | null | 2020-10-28T17:01:05 | 2020-03-27T12:05:18 | Python | UTF-8 | C++ | false | false | 640 | h |
#ifndef DPCMDC_H
#define DPCMDC_H
#include <vector>
#include <ostream>
class ValueDPCM_DC {
public:
bool available{false};
int dc{0};
ValueDPCM_DC() = default;
ValueDPCM_DC(int dc, bool available);
friend std::ostream &operator<<(std::ostream &os, const ValueDPCM_DC &dcpm);
};
class DpcmDC {
private:
uint resol_x;
std::vector<ValueDPCM_DC> l_references;
void init_references();
public:
DpcmDC(uint resol_x);
~DpcmDC();
int get_reference(uint x, uint y);
void update(int curr, bool available);
const std::vector<ValueDPCM_DC> &getLReferences() const;
};
#endif //DPCMDC_H
| [
"idsrosler@inf.ufpel.edu.br"
] | idsrosler@inf.ufpel.edu.br |
8b3629fd9e9c7d9380fc0e59b376b78c632a883c | e6d4a87dcf98e93bab92faa03f1b16253b728ac9 | /algorithms/cpp/circularPermutationinBinaryRepresentation/circularPermutationinBinaryRepresentation.cpp | 558d14cf551a2449b300754fb0fe00706d844431 | [] | no_license | MichelleZ/leetcode | b5a58e1822e3f6ef8021b29d9bc9aca3fd3d416f | a390adeeb71e997b3c1a56c479825d4adda07ef9 | refs/heads/main | 2023-03-06T08:16:54.891699 | 2023-02-26T07:17:47 | 2023-02-26T07:17:47 | 326,904,500 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 788 | cpp | // Source: https://leetcode.com/problems/circular-permutation-in-binary-representation/
// Author: Miao Zhang
// Date: 2021-04-19
/******************************************************
* G = B ^ B >> 1
* binary code gray code
* 0 000 0 000
* 1 001 1 001
* 2 010 3 011
* 3 011 2 010
* 4 100 6 110
* 5 101 7 111
* 6 110 5 101
* 7 111 4 100
*******************************************************/
class Solution {
public:
vector<int> circularPermutation(int n, int start) {
vector<int> res(1 << n);
for (int i = 0; i < 1 << n; i++) {
res[i] = start ^ i ^ i >> 1;
}
return res;
}
};
| [
"zhangdaxiaomiao@163.com"
] | zhangdaxiaomiao@163.com |
7347ba26d056c54dcdd883cd49a5b7688f354dab | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restsdk/generated/model/OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties.cpp | e801c13b3e7c0202292c22f5ede74137e596317b | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 5,571 | cpp | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#include "OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties.h"
namespace org {
namespace openapitools {
namespace client {
namespace model {
OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties()
{
m_UsersIsSet = false;
m_GroupsIsSet = false;
}
OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::~OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties()
{
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::validate()
{
// TODO: implement validation
}
web::json::value OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::toJson() const
{
web::json::value val = web::json::value::object();
if(m_UsersIsSet)
{
val[utility::conversions::to_string_t("users")] = ModelBase::toJson(m_Users);
}
if(m_GroupsIsSet)
{
val[utility::conversions::to_string_t("groups")] = ModelBase::toJson(m_Groups);
}
return val;
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::fromJson(web::json::value& val)
{
if(val.has_field(utility::conversions::to_string_t("users")))
{
if(!val[utility::conversions::to_string_t("users")].is_null())
{
std::shared_ptr<ConfigNodePropertyArray> newItem(new ConfigNodePropertyArray());
newItem->fromJson(val[utility::conversions::to_string_t("users")]);
setUsers( newItem );
}
}
if(val.has_field(utility::conversions::to_string_t("groups")))
{
if(!val[utility::conversions::to_string_t("groups")].is_null())
{
std::shared_ptr<ConfigNodePropertyArray> newItem(new ConfigNodePropertyArray());
newItem->fromJson(val[utility::conversions::to_string_t("groups")]);
setGroups( newItem );
}
}
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix) const
{
utility::string_t namePrefix = prefix;
if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t("."))
{
namePrefix += utility::conversions::to_string_t(".");
}
if(m_UsersIsSet)
{
if (m_Users.get())
{
m_Users->toMultipart(multipart, utility::conversions::to_string_t("users."));
}
}
if(m_GroupsIsSet)
{
if (m_Groups.get())
{
m_Groups->toMultipart(multipart, utility::conversions::to_string_t("groups."));
}
}
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix)
{
utility::string_t namePrefix = prefix;
if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t("."))
{
namePrefix += utility::conversions::to_string_t(".");
}
if(multipart->hasContent(utility::conversions::to_string_t("users")))
{
if(multipart->hasContent(utility::conversions::to_string_t("users")))
{
std::shared_ptr<ConfigNodePropertyArray> newItem(new ConfigNodePropertyArray());
newItem->fromMultiPart(multipart, utility::conversions::to_string_t("users."));
setUsers( newItem );
}
}
if(multipart->hasContent(utility::conversions::to_string_t("groups")))
{
if(multipart->hasContent(utility::conversions::to_string_t("groups")))
{
std::shared_ptr<ConfigNodePropertyArray> newItem(new ConfigNodePropertyArray());
newItem->fromMultiPart(multipart, utility::conversions::to_string_t("groups."));
setGroups( newItem );
}
}
}
std::shared_ptr<ConfigNodePropertyArray> OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::getUsers() const
{
return m_Users;
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::setUsers(std::shared_ptr<ConfigNodePropertyArray> value)
{
m_Users = value;
m_UsersIsSet = true;
}
bool OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::usersIsSet() const
{
return m_UsersIsSet;
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::unsetUsers()
{
m_UsersIsSet = false;
}
std::shared_ptr<ConfigNodePropertyArray> OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::getGroups() const
{
return m_Groups;
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::setGroups(std::shared_ptr<ConfigNodePropertyArray> value)
{
m_Groups = value;
m_GroupsIsSet = true;
}
bool OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::groupsIsSet() const
{
return m_GroupsIsSet;
}
void OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties::unsetGroups()
{
m_GroupsIsSet = false;
}
}
}
}
}
| [
"cliffano@gmail.com"
] | cliffano@gmail.com |
0cae1c0534726eeb8e02c53a0be4356d7181cf41 | c80e33331d55cb7029a29be1671f4cb03b0971e7 | /interThermalPhaseFoam/interThermalPhaseChangeFoam/thermalPhaseChangeModels/MeshGraph/MeshGraph.H | bdc276ed015f1164fc6b8e44da7e32adecc96f46 | [] | no_license | mmgocmen/ITPCF_OpenFOAMv8 | 7aecf07bdf07fec758f2945513e22d2c2c8ec31f | 0d15d513fc0fbf6f69f105d3f097439d53a46836 | refs/heads/master | 2023-05-02T20:41:54.642827 | 2021-05-23T17:16:05 | 2021-05-23T17:16:05 | 368,991,287 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,382 | h | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2016 Alex Rattner
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Global
MeshGraph
Description
Class for constructing graph of mesh, and finding interface cells
\*---------------------------------------------------------------------------*/
#ifndef __MeshGraph
#define __MeshGraph
//include openfoam stuff
#include "fvCFD.H"
//Stuff from stdlib
#include <vector>
namespace Foam
{
class MeshGraph
{
public:
//- Struct for sharing interface cell-face pairs:
struct CellFacePair
{
label f; //Index of the face
label c1, c2; //Indices of the two cells sharing the face
scalar v1, v2; //Values of the cells sharing the face
};
//- Construct from existing mesh
MeshGraph( const fvMesh& Min, const volScalarField& Fin );
//- Default destructor
~MeshGraph();
//- Resets the graph values / interface states
void Reset();
//- Traverses graph and finds interface cells (those containing the
// intVal)
void GetInterfaceCells( labelList& IntCells, const scalar& intVal);
//- Like above, but returns cells on both sides of the interface
void GetDoubleInterfaceCells
(
labelList& IntCells,
const scalar& intVal
);
//- Another double layer method, but it actually returns the cells &
// data that are on the double layer:
void GetInterfaceCellFacePairs
(
std::vector<CellFacePair>& IntCellFacePairs,
const scalar& intVal
);
private:
//Connection to driving scalar field
const volScalarField& F;
//Graph node
struct MeshGraphCell
{
//Contents
scalar val; //Value of current cell
vector c; //Cell center coordinates
};
struct MeshGraphFace //Face connecting two cell centers
{
label c1, c2; //Cell indices
vector n; //Face normal (points out of owner cell)
vector c; //Face center
};
std::vector <MeshGraphCell> Cells;
std::vector <MeshGraphFace> Faces;
};
} // End namespace Foam
#endif
| [
"m.m.gocmen@gmail.com"
] | m.m.gocmen@gmail.com |
8ff0c45acab2f710f56b7655534886aaef06f21b | 32f8a5ad85b87cbf7bd031a09164a50725f49847 | /Bindings/LightNote/C_API/LNBase.cpp | 23542a3c7299929c3230b37449cbef240d62a358 | [
"Libpng",
"Zlib",
"BSD-3-Clause",
"MIT"
] | permissive | mediabuff/Lumino | 9787c588bac3a983c79199cbc168a919bb17a0f6 | 684be8f25631a104f5236e6131c0fcb84df8bb57 | refs/heads/master | 2021-05-14T17:04:46.553426 | 2017-12-28T14:33:47 | 2017-12-28T14:33:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,981 | cpp | //=============================================================================
// LFBase
//-----------------------------------------------------------------------------
/*
■HSPでの例外(エラー)処理
①[HSP] .hs で定義している LNException_SetHandler でラベルを登録する。
登録するWinメッセージは WIN32_MESSAGE_FOR_HSP_EXCEPTION
②[C++] LN_FUNC_TRY_BEGIN~END で囲まれた領域内で例外が発生すると、
_LNException_SendToWin32Message() が呼ばれる (内部関数)
③[C++] _LNException_SendToWin32Message() 内で WIN32_MESSAGE_FOR_HSP_EXCEPTION を send
④[HSP] 登録したラベルがコールされる
⑤[HSP] デフォルトでは LNException_ProcDefault() → end とする。
こうしないと、メッセージボックス表示後にアプリが終了しない。
■[2013/12/08] 公開する関数に try を張ることについて
try を張った関数のオーバーヘッドは以下の通り。
VC++ … 関数の入り口で必ず発生
GCC … catch したときのみ発生
VC++ では try を書かないこと以外回避できないけど、
それは現時点でのライブラリの方針的にNG。
関数ライブラリとしても、正常系部分に異常系をガリガリ書かせたくない。
そうなると try の数を減らす必要があるわけだけど、
実際に例外を throw するのはほとんどが Create 系で、
フレーム更新ごとに毎回呼ばれるものはほぼ投げない。setPosition() 等。
というところで、基本的には以下のようなルールで実装する。
・Create 等必要なタイミングでのみ呼ばれるものは try を張る
・フレーム更新ごとに呼ばれるものは基本的に try を張らない。
NULL チェックはすべて assert で処理する。
(NULL を渡すことは、関数の使い方が間違っているもの)
*/
//=============================================================================
#pragma once
#include "LNInternal.h"
#include "LNBase.h"
//=============================================================================
/**
@brief オブジェクトの可変長配列です。
*/
LN_EXTENSION_CLASS(LNObjectList)
/**
@brief オブジェクトリストに格納されているオブジェクトの数を取得します。
@param[in] objectList : オブジェクトリストハンドル
@param[out] count : 要素の数を格納する変数
*/
LN_INSTANCE_API
LNResult LNObjectList_GetCount(LN_HANDLE(LNObjectList) objectList, int* count);
/**
@brief オブジェクトリストの指定したインデックスにオブジェクトを設定します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] index : インデックス(要素番号)
@param[in] item : 設定するオブジェクト
*/
LN_INSTANCE_API
LNResult LNObjectList_SetAt(LN_HANDLE(LNObjectList) objectList, int index, LN_HANDLE(LNObject) item);
/**
@brief オブジェクトリストの指定したインデックスのオブジェクトを取得します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] index : インデックス(要素番号)
@param[out] outItem : オブジェクトを格納する変数
*/
LN_INSTANCE_API
LNResult LNObjectList_GetAt(LN_HANDLE(LNObjectList) objectList, int index, LN_HANDLE(LNObject)* outItem);
/**
@brief オブジェクトリストの末尾にオブジェクトを追加します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] item : 追加するオブジェクト
*/
LN_INSTANCE_API
LNResult LNObjectList_Add(LN_HANDLE(LNObjectList) objectList, LN_HANDLE(LNObject) item);
/**
@brief オブジェクトリストから全てのオブジェクトを削除します。
@param[in] objectList : オブジェクトリストハンドル
*/
LN_INSTANCE_API
LNResult LNObjectList_Clear(LN_HANDLE(LNObjectList) objectList);
/**
@brief オブジェクトリストの指定したインデックスの位置にオブジェクトを挿入します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] index : item を挿入するインデックス
@param[in] item : 挿入するオブジェクト
*/
LN_INSTANCE_API
LNResult LNObjectList_Insert(LN_HANDLE(LNObjectList) objectList, int index, LN_HANDLE(LNObject) item);
/**
@brief オブジェクトリスト内で指定したハンドルと一致する最初のオブジェクトを削除します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] item : リストから削除するオブジェクト
*/
LN_INSTANCE_API
LNResult LNObjectList_Remove(LN_HANDLE(LNObjectList) objectList, LN_HANDLE(LNObject) item);
/**
@brief オブジェクトリスト内で指定したハンドルと一致する全てのオブジェクトを削除します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] item : リストから削除するオブジェクト
*/
LN_INSTANCE_API
LNResult LNObjectList_RemoveAll(LN_HANDLE(LNObjectList) objectList, LN_HANDLE(LNObject) item);
/**
@brief オブジェクトリストの指定したインデックスにあるオブジェクトを削除します。
@param[in] objectList : オブジェクトリストハンドル
@param[in] index : 削除するオブジェクトのインデックス番号
*/
LN_INSTANCE_API
LNResult LNObjectList_RemoveAt(LN_HANDLE(LNObjectList) objectList, int index);
LN_CLASS_END
//=============================================================================
/**
@brief TODO
*/
LN_STRUCT_CLASS(LNVariant)
/**
@brief TODO
@param[in] value :
@param[in] structSize :
*/
LN_INSTANCE_API
LNResult LNVariant_Init(LNVariant* value, int structSize);
/**
@brief TODO
@param[in] value :
*/
LN_INSTANCE_API
LNResult LNVariant_Clear(LNVariant* value);
/**
@brief TODO
@param[in] value :
@param[in] obj :
*/
LN_INSTANCE_API
LNResult LNVariant_SetObject(LNVariant* value, LN_HANDLE(LNObject) obj);
//=============================================================================
// LFObject
//=============================================================================
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LNResult LNObject_Release(LNHandle hadnleObject)
{
LN_CHECK_ARG_HANDLE(hadnleObject);
LFManager::ReleaseObject(hadnleObject);
return ::LN_OK;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LNResult LNObject_AddRef(LNHandle hadnleObject)
{
LN_CHECK_ARG_HANDLE(hadnleObject);
LFManager::AddRefObject(hadnleObject);
return ::LN_OK;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LNResult LNObject_GetRefCount(LNHandle hadnleObject, int* count)
{
LN_CHECK_ARG_HANDLE(hadnleObject);
LN_CHECK_ARG(count != NULL);
*count = LFManager::GetObjectEntry(hadnleObject)->RefCount;
return ::LN_OK;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LN_INTERNAL_API LNUserData LNObject_GetBindingTypeData(LNHandle hadnleObject)
{
return LFManager::GetObjectEntry(hadnleObject)->Object->GetBindingTypeData();
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LN_INTERNAL_API LNUserData LNObject_GetInternalObject(LNHandle hadnleObject)
{
return LFManager::GetObjectEntry(hadnleObject);
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LN_INTERNAL_API void LNObject_SetUserData(LNHandle hadnleObject, LNUserData data)
{
LFManager::GetObjectEntry(hadnleObject)->UserData = data;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LN_INTERNAL_API LNUserData LNObject_GetUserData(LNHandle hadnleObject)
{
return LFManager::GetObjectEntry(hadnleObject)->UserData;
}
//=============================================================================
// LNVariant
//=============================================================================
//-----------------------------------------------------------------------------
// structSize は binder 側で確保したメモリサイズ。
// この関数内で LNVariant のサイズと異なっていないかチェックする。
//-----------------------------------------------------------------------------
LN_API LNResult LNVariant_Init(LNVariant* value, int structSize)
{
if (sizeof(LNVariant) == structSize) { return ::LN_ERROR_ARGUMENT; }
memset(value, 0, sizeof(LNVariant));
return ::LN_OK;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LN_API LNResult LNVariant_Clear(LNVariant* value)
{
LN_CHECK_ARG(value != NULL);
reinterpret_cast<Variant*>(value)->~Variant();
return ::LN_OK;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
LN_API LNResult LNVariant_SetObject(LNVariant* value, LN_HANDLE(LNObject) obj)
{
LN_CHECK_ARG(value != NULL);
reinterpret_cast<Variant*>(value)->Set(TO_REFOBJ(CoreObject, obj));
return ::LN_OK;
}
| [
"lriki.net@gmail.com"
] | lriki.net@gmail.com |
bfa9fe59ce4aa97b8bd784c0310995ab1d2ed892 | 10da40148a48480f899e388af56d9e1febc9238c | /StringColumn.cpp | 5335b3a67c3f4bcf207e1b59334f2d84318c742b | [] | no_license | valeri2000/FMI-OOP-Project-6 | 226fadb16f575706907fe6f04800a5dd50e79c23 | cb0f68b0a9879685ca10b236375fbd5807973658 | refs/heads/master | 2022-10-12T14:37:42.417637 | 2020-05-31T10:17:37 | 2020-05-31T10:17:37 | 267,253,576 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,349 | cpp | #include "StringColumn.h"
#include "Parser.h"
std::string StringColumn::getType() const {
return "string";
}
std::string StringColumn::at(const unsigned int& index) const {
if(index >= data.size()) {
ErrorState::setState(Flag::BAD_INDEX);
return "";
}
if(data[index].second == false) {
return "NULL";
}
return data[index].first;
}
std::vector<unsigned int>
StringColumn::getRowsIndicesWith(const std::string& value) const {
std::vector<unsigned int> indices;
if(Parser::isString(value) == false) {
if(Parser::isNull(value) == true) {
unsigned int index = 0;
for(const std::pair<std::string, bool>& i : this->data) {
if(i.second == false) {
indices.push_back(index);
}
index++;
}
}
return indices;
}
unsigned int index = 0;
for(const std::pair<std::string, bool>& i : this->data) {
if(i.second == true && i.first == value) {
indices.push_back(index);
}
index++;
}
return indices;
}
void StringColumn::updateRowByIndex(const unsigned int& index, const std::string& value) {
if(index >= this->data.size()) {
ErrorState::setState(Flag::BAD_INDEX);
return;
}
if(Parser::isString(value) == true) {
this->data[index].first = value;
this->data[index].second = true;
} else if(Parser::isNull(value) == true) {
this->data[index].second = false;
} else {
ErrorState::setState(Flag::BAD_TYPE);
}
}
void StringColumn::deleteRowByIndex(const unsigned int& index) {
unsigned int n = this->data.size();
if(index >= n) {
ErrorState::setState(Flag::BAD_INDEX);
return;
}
for(unsigned int i = index + 1; i < n; ++i) {
this->data[i - 1] = this->data[i];
}
this->data.pop_back();
}
void StringColumn::insertRowWith(const std::string& value) {
if(Parser::isString(value) == true) {
this->data.push_back(std::make_pair(value, true));
} else if(Parser::isNull(value) == true) {
this->data.push_back(std::make_pair("", false));
} else {
ErrorState::setState(Flag::BAD_TYPE);
}
}
StringColumn::StringColumn(const std::string& name) :
IColumn(name) {}
| [
"stan4ev6@gmail.com"
] | stan4ev6@gmail.com |
6315f80a644d50944bc5031f2b4c3fc0de903349 | a2622fadea7ae1580a64a65022f3d127b444b4b0 | /CS222/PG4-BinaryTree/DB.cpp | 4e4c8f938606a3bbf806c92805c8ac3069367cd8 | [] | no_license | zahnur/assignments | 489e2a07508836bb836dd54d1712202a183ab9c3 | afb08feb61b3125a412ffde829c1b4f12f9c7c72 | refs/heads/master | 2023-03-30T19:23:49.629551 | 2016-08-25T23:22:49 | 2016-08-25T23:22:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 903 | cpp | // Cohen Adair, CS222
// 25 March 2014
// Method file for the DB class.
#include "DB.h"
DB::DB() {
T = new Tree();
}
DB::~DB() {
delete T;
}
// returns a DRT of the data associated with "key"
DRT * DB::search(string key) {
string data = "", next = "", prev = "";
if (key == "") {
data = "";
next = T->first();
prev = T->last();
} else {
string d = T->lookup(key);
data = d;
next = T->next(key);
prev = T->prev(key);
}
return new DRT(data, next, prev);
}
// used to add, change, or delete entries in the database
DRT * DB::modify(string key, string data) {
DRT *res = search(key);
if (key != "") {
string d = T->lookup(key);
if (d == "" && data == "") {}
else if (d == "" && data != "")
T->add(key, data);
else if (d != "" && data == "")
T->remove(key);
else if (d != "" && data != "") {
T->remove(key);
T->add(key, data);
}
}
return res;
}
| [
"cohenadair@gmail.com"
] | cohenadair@gmail.com |
14774ba613e2e99523aff9f2a1caae943ee96e80 | b5f09ea980efd731081a801061d00305762a0325 | /src/sconelib/sconeopensim4/JointOpenSim4.h | d17e79e0c5082861e1feed0c694a06bf5199d344 | [
"Apache-2.0"
] | permissive | MacroController/scone-core | 5e2b00c4b3f38ab88b46256d2e16e9816944b878 | 54c5eac62d3e320d1d2e5aa76a20a0e598bb41ae | refs/heads/main | 2023-08-18T21:49:08.867578 | 2021-10-22T09:45:43 | 2021-10-22T09:45:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 724 | h | /*
** JointOpenSim4.h
**
** Copyright (C) 2013-2019 Thomas Geijtenbeek and contributors. All rights reserved.
**
** This file is part of SCONE. For more information, see http://scone.software.
*/
#pragma once
#include "platform.h"
#include "scone/model/Joint.h"
namespace OpenSim
{
class Joint;
}
namespace scone
{
class SCONE_OPENSIM_4_API JointOpenSim4 : public Joint
{
public:
JointOpenSim4( Body& body, Body& parent, class ModelOpenSim4& model, OpenSim::Joint& osJoint );
virtual ~JointOpenSim4();
virtual const String& GetName() const;
virtual Vec3 GetPos() const override;
virtual Vec3 GetReactionForce() const override;
private:
class ModelOpenSim4& m_Model;
OpenSim::Joint& m_osJoint;
};
}
| [
"tgeijten@gmail.com"
] | tgeijten@gmail.com |
7b6d162e8de5a4acb5cb218dda5e1e827eed0109 | 2f557f60fc609c03fbb42badf2c4f41ef2e60227 | /DataFormats/DetId/src/classes.h | 4e3100b0d35fa920f97b38392853fd8bbaf77b4f | [
"Apache-2.0"
] | permissive | CMS-TMTT/cmssw | 91d70fc40a7110832a2ceb2dc08c15b5a299bd3b | 80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7 | refs/heads/TMTT_1060 | 2020-03-24T07:49:39.440996 | 2020-03-04T17:21:36 | 2020-03-04T17:21:36 | 142,576,342 | 3 | 5 | Apache-2.0 | 2019-12-05T21:16:34 | 2018-07-27T12:48:13 | C++ | UTF-8 | C++ | false | false | 219 | h | #include "DataFormats/DetId/interface/DetId.h"
#include <boost/cstdint.hpp>
#include <map>
#include <vector>
#include "DataFormats/DetId/interface/DetIdCollection.h"
#include "DataFormats/Common/interface/Wrapper.h"
| [
"giulio.eulisse@gmail.com"
] | giulio.eulisse@gmail.com |
4c44f3a8088bc2e4f2b4e51aa232633ca0bb1f2a | 43661007a47fe54a5df7204837d1a05d9c829be3 | /Source/ThirdParty/ANGLE/src/libGLESv2/entry_points_egl_ext.cpp | 305ad40702e35e528d82387b7013c280b7bc98d0 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Hockery/webkit | 1a229a5961edf5f0974aa08ed31ea0e6be0eeb87 | 8b5d9cf26c030560a2acea4dd58548005624acfe | refs/heads/master | 2023-03-08T13:01:48.180147 | 2016-12-29T03:10:04 | 2016-12-29T03:10:04 | 77,596,988 | 2 | 0 | null | 2016-12-29T08:35:02 | 2016-12-29T08:35:02 | null | UTF-8 | C++ | false | false | 30,531 | cpp | //
// Copyright(c) 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// entry_points_ext.cpp : Implements the EGL extension entry points.
#include "libGLESv2/entry_points_egl_ext.h"
#include "libGLESv2/global_state.h"
#include "libANGLE/Context.h"
#include "libANGLE/Display.h"
#include "libANGLE/Device.h"
#include "libANGLE/Surface.h"
#include "libANGLE/Stream.h"
#include "libANGLE/validationEGL.h"
#include "common/debug.h"
namespace egl
{
// EGL_ANGLE_query_surface_pointer
EGLBoolean EGLAPIENTRY QuerySurfacePointerANGLE(EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p, EGLint attribute = %d, void **value = 0x%0.8p)",
dpy, surface, attribute, value);
Display *display = static_cast<Display*>(dpy);
Surface *eglSurface = static_cast<Surface*>(surface);
Error error = ValidateSurface(display, eglSurface);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
if (!display->getExtensions().querySurfacePointer)
{
SetGlobalError(Error(EGL_SUCCESS));
return EGL_FALSE;
}
if (surface == EGL_NO_SURFACE)
{
SetGlobalError(Error(EGL_BAD_SURFACE));
return EGL_FALSE;
}
// validate the attribute parameter
switch (attribute)
{
case EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE:
if (!display->getExtensions().surfaceD3DTexture2DShareHandle)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_FALSE;
}
break;
case EGL_DXGI_KEYED_MUTEX_ANGLE:
if (!display->getExtensions().keyedMutex)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_FALSE;
}
break;
default:
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_FALSE;
}
error = eglSurface->querySurfacePointerANGLE(attribute, value);
SetGlobalError(error);
return (error.isError() ? EGL_FALSE : EGL_TRUE);
}
// EGL_NV_post_sub_buffer
EGLBoolean EGLAPIENTRY PostSubBufferNV(EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p, EGLint x = %d, EGLint y = %d, EGLint width = %d, EGLint height = %d)", dpy, surface, x, y, width, height);
if (x < 0 || y < 0 || width < 0 || height < 0)
{
SetGlobalError(Error(EGL_BAD_PARAMETER));
return EGL_FALSE;
}
Display *display = static_cast<Display*>(dpy);
Surface *eglSurface = static_cast<Surface*>(surface);
Error error = ValidateSurface(display, eglSurface);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
if (display->testDeviceLost())
{
SetGlobalError(Error(EGL_CONTEXT_LOST));
return EGL_FALSE;
}
if (surface == EGL_NO_SURFACE)
{
SetGlobalError(Error(EGL_BAD_SURFACE));
return EGL_FALSE;
}
if (!display->getExtensions().postSubBuffer)
{
// Spec is not clear about how this should be handled.
SetGlobalError(Error(EGL_SUCCESS));
return EGL_TRUE;
}
error = eglSurface->postSubBuffer(x, y, width, height);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(Error(EGL_SUCCESS));
return EGL_TRUE;
}
// EGL_EXT_platform_base
EGLDisplay EGLAPIENTRY GetPlatformDisplayEXT(EGLenum platform, void *native_display, const EGLint *attrib_list)
{
EVENT("(EGLenum platform = %d, void* native_display = 0x%0.8p, const EGLint* attrib_list = 0x%0.8p)",
platform, native_display, attrib_list);
const ClientExtensions &clientExtensions = Display::getClientExtensions();
switch (platform)
{
case EGL_PLATFORM_ANGLE_ANGLE:
if (!clientExtensions.platformANGLE)
{
SetGlobalError(Error(EGL_BAD_PARAMETER));
return EGL_NO_DISPLAY;
}
break;
case EGL_PLATFORM_DEVICE_EXT:
if (!clientExtensions.platformDevice)
{
SetGlobalError(Error(EGL_BAD_PARAMETER, "Platform Device extension is not active"));
return EGL_NO_DISPLAY;
}
break;
default:
SetGlobalError(Error(EGL_BAD_CONFIG));
return EGL_NO_DISPLAY;
}
if (platform == EGL_PLATFORM_ANGLE_ANGLE)
{
EGLint platformType = EGL_PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE;
EGLint deviceType = EGL_PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE;
bool majorVersionSpecified = false;
bool minorVersionSpecified = false;
bool enableAutoTrimSpecified = false;
bool deviceTypeSpecified = false;
bool presentPathSpecified = false;
if (attrib_list)
{
for (const EGLint *curAttrib = attrib_list; curAttrib[0] != EGL_NONE; curAttrib += 2)
{
switch (curAttrib[0])
{
case EGL_PLATFORM_ANGLE_TYPE_ANGLE:
switch (curAttrib[1])
{
case EGL_PLATFORM_ANGLE_TYPE_DEFAULT_ANGLE:
break;
case EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE:
case EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE:
if (!clientExtensions.platformANGLED3D)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_NO_DISPLAY;
}
break;
case EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE:
case EGL_PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE:
if (!clientExtensions.platformANGLEOpenGL)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_NO_DISPLAY;
}
break;
case EGL_PLATFORM_ANGLE_TYPE_NULL_ANGLE:
if (!clientExtensions.platformANGLENULL)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE,
"Display type "
"EGL_PLATFORM_ANGLE_TYPE_NULL_ANGLE "
"requires EGL_ANGLE_platform_angle_null."));
return EGL_NO_DISPLAY;
}
break;
default:
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_NO_DISPLAY;
}
platformType = curAttrib[1];
break;
case EGL_PLATFORM_ANGLE_MAX_VERSION_MAJOR_ANGLE:
if (curAttrib[1] != EGL_DONT_CARE)
{
majorVersionSpecified = true;
}
break;
case EGL_PLATFORM_ANGLE_MAX_VERSION_MINOR_ANGLE:
if (curAttrib[1] != EGL_DONT_CARE)
{
minorVersionSpecified = true;
}
break;
case EGL_PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE:
switch (curAttrib[1])
{
case EGL_TRUE:
case EGL_FALSE:
break;
default:
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_NO_DISPLAY;
}
enableAutoTrimSpecified = true;
break;
case EGL_EXPERIMENTAL_PRESENT_PATH_ANGLE:
if (!clientExtensions.experimentalPresentPath)
{
SetGlobalError(
Error(EGL_BAD_ATTRIBUTE,
"EGL_ANGLE_experimental_present_path extension not active"));
return EGL_NO_DISPLAY;
}
switch (curAttrib[1])
{
case EGL_EXPERIMENTAL_PRESENT_PATH_FAST_ANGLE:
case EGL_EXPERIMENTAL_PRESENT_PATH_COPY_ANGLE:
break;
default:
SetGlobalError(
Error(EGL_BAD_ATTRIBUTE,
"Invalid value for EGL_EXPERIMENTAL_PRESENT_PATH_ANGLE"));
return EGL_NO_DISPLAY;
}
presentPathSpecified = true;
break;
case EGL_PLATFORM_ANGLE_DEVICE_TYPE_ANGLE:
switch (curAttrib[1])
{
case EGL_PLATFORM_ANGLE_DEVICE_TYPE_HARDWARE_ANGLE:
case EGL_PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE:
case EGL_PLATFORM_ANGLE_DEVICE_TYPE_REFERENCE_ANGLE:
deviceTypeSpecified = true;
break;
case EGL_PLATFORM_ANGLE_DEVICE_TYPE_NULL_ANGLE:
// This is a hidden option, accepted by the OpenGL back-end.
break;
default:
SetGlobalError(Error(EGL_BAD_ATTRIBUTE,
"Invalid value for "
"EGL_PLATFORM_ANGLE_DEVICE_TYPE_ANGLE "
"attrib"));
return EGL_NO_DISPLAY;
}
deviceType = curAttrib[1];
break;
default:
break;
}
}
}
if (!majorVersionSpecified && minorVersionSpecified)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_NO_DISPLAY;
}
if (deviceType == EGL_PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE &&
platformType != EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE)
{
SetGlobalError(
Error(EGL_BAD_ATTRIBUTE,
"EGL_PLATFORM_ANGLE_DEVICE_TYPE_WARP_ANGLE requires a device type of "
"EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE."));
return EGL_NO_DISPLAY;
}
if (enableAutoTrimSpecified && platformType != EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE)
{
SetGlobalError(
Error(EGL_BAD_ATTRIBUTE,
"EGL_PLATFORM_ANGLE_ENABLE_AUTOMATIC_TRIM_ANGLE requires a device type of "
"EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE."));
return EGL_NO_DISPLAY;
}
if (presentPathSpecified && platformType != EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE,
"EGL_EXPERIMENTAL_PRESENT_PATH_ANGLE requires a device type of "
"EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE."));
return EGL_NO_DISPLAY;
}
if (deviceTypeSpecified && platformType != EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE &&
platformType != EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE)
{
SetGlobalError(
Error(EGL_BAD_ATTRIBUTE,
"EGL_PLATFORM_ANGLE_DEVICE_TYPE_ANGLE requires a device type of "
"EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE or EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE."));
return EGL_NO_DISPLAY;
}
SetGlobalError(Error(EGL_SUCCESS));
return Display::GetDisplayFromAttribs(native_display,
AttributeMap::CreateFromIntArray(attrib_list));
}
else if (platform == EGL_PLATFORM_DEVICE_EXT)
{
Device *eglDevice = reinterpret_cast<Device *>(native_display);
if (eglDevice == nullptr || !Device::IsValidDevice(eglDevice))
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE,
"native_display should be a valid EGL device if platform equals "
"EGL_PLATFORM_DEVICE_EXT"));
return EGL_NO_DISPLAY;
}
SetGlobalError(Error(EGL_SUCCESS));
return Display::GetDisplayFromDevice(native_display);
}
else
{
UNREACHABLE();
return EGL_NO_DISPLAY;
}
}
// EGL_EXT_device_query
EGLBoolean EGLAPIENTRY QueryDeviceAttribEXT(EGLDeviceEXT device, EGLint attribute, EGLAttrib *value)
{
EVENT("(EGLDeviceEXT device = 0x%0.8p, EGLint attribute = %d, EGLAttrib *value = 0x%0.8p)",
device, attribute, value);
Device *dev = static_cast<Device*>(device);
if (dev == EGL_NO_DEVICE_EXT || !Device::IsValidDevice(dev))
{
SetGlobalError(Error(EGL_BAD_ACCESS));
return EGL_FALSE;
}
// If the device was created by (and is owned by) a display, and that display doesn't support
// device querying, then this call should fail
Display *owningDisplay = dev->getOwningDisplay();
if (owningDisplay != nullptr && !owningDisplay->getExtensions().deviceQuery)
{
SetGlobalError(Error(EGL_BAD_ACCESS,
"Device wasn't created using eglCreateDeviceANGLE, and the Display "
"that created it doesn't support device querying"));
return EGL_FALSE;
}
Error error(EGL_SUCCESS);
// validate the attribute parameter
switch (attribute)
{
case EGL_D3D11_DEVICE_ANGLE:
case EGL_D3D9_DEVICE_ANGLE:
if (!dev->getExtensions().deviceD3D || dev->getType() != attribute)
{
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_FALSE;
}
error = dev->getDevice(value);
break;
default:
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_FALSE;
}
SetGlobalError(error);
return (error.isError() ? EGL_FALSE : EGL_TRUE);
}
// EGL_EXT_device_query
const char * EGLAPIENTRY QueryDeviceStringEXT(EGLDeviceEXT device, EGLint name)
{
EVENT("(EGLDeviceEXT device = 0x%0.8p, EGLint name = %d)",
device, name);
Device *dev = static_cast<Device*>(device);
if (dev == EGL_NO_DEVICE_EXT || !Device::IsValidDevice(dev))
{
SetGlobalError(Error(EGL_BAD_DEVICE_EXT));
return nullptr;
}
const char *result;
switch (name)
{
case EGL_EXTENSIONS:
result = dev->getExtensionString().c_str();
break;
default:
SetGlobalError(Error(EGL_BAD_DEVICE_EXT));
return nullptr;
}
SetGlobalError(Error(EGL_SUCCESS));
return result;
}
// EGL_EXT_device_query
EGLBoolean EGLAPIENTRY QueryDisplayAttribEXT(EGLDisplay dpy, EGLint attribute, EGLAttrib *value)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLint attribute = %d, EGLAttrib *value = 0x%0.8p)",
dpy, attribute, value);
Display *display = static_cast<Display*>(dpy);
Error error = ValidateDisplay(display);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
if (!display->getExtensions().deviceQuery)
{
SetGlobalError(Error(EGL_BAD_ACCESS));
return EGL_FALSE;
}
// validate the attribute parameter
switch (attribute)
{
case EGL_DEVICE_EXT:
*value = reinterpret_cast<EGLAttrib>(display->getDevice());
break;
default:
SetGlobalError(Error(EGL_BAD_ATTRIBUTE));
return EGL_FALSE;
}
SetGlobalError(error);
return (error.isError() ? EGL_FALSE : EGL_TRUE);
}
ANGLE_EXPORT EGLImageKHR EGLAPIENTRY CreateImageKHR(EGLDisplay dpy,
EGLContext ctx,
EGLenum target,
EGLClientBuffer buffer,
const EGLint *attrib_list)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLContext ctx = 0x%0.8p, EGLenum target = 0x%X, "
"EGLClientBuffer buffer = 0x%0.8p, const EGLAttrib *attrib_list = 0x%0.8p)",
dpy, ctx, target, buffer, attrib_list);
Display *display = static_cast<Display *>(dpy);
gl::Context *context = static_cast<gl::Context *>(ctx);
AttributeMap attributes = AttributeMap::CreateFromIntArray(attrib_list);
Error error = ValidateCreateImageKHR(display, context, target, buffer, attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_NO_IMAGE;
}
Image *image = nullptr;
error = display->createImage(context, target, buffer, attributes, &image);
if (error.isError())
{
SetGlobalError(error);
return EGL_NO_IMAGE;
}
return static_cast<EGLImage>(image);
}
ANGLE_EXPORT EGLBoolean EGLAPIENTRY DestroyImageKHR(EGLDisplay dpy, EGLImageKHR image)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLImage image = 0x%0.8p)", dpy, image);
Display *display = static_cast<Display *>(dpy);
Image *img = static_cast<Image *>(image);
Error error = ValidateDestroyImageKHR(display, img);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
display->destroyImage(img);
return EGL_TRUE;
}
ANGLE_EXPORT EGLDeviceEXT EGLAPIENTRY CreateDeviceANGLE(EGLint device_type,
void *native_device,
const EGLAttrib *attrib_list)
{
EVENT(
"(EGLint device_type = %d, void* native_device = 0x%0.8p, const EGLAttrib* attrib_list = "
"0x%0.8p)",
device_type, native_device, attrib_list);
Error error = ValidateCreateDeviceANGLE(device_type, native_device, attrib_list);
if (error.isError())
{
SetGlobalError(error);
return EGL_NO_DEVICE_EXT;
}
Device *device = nullptr;
error = Device::CreateDevice(native_device, device_type, &device);
if (error.isError())
{
ASSERT(device == nullptr);
SetGlobalError(error);
return EGL_NO_DEVICE_EXT;
}
return device;
}
ANGLE_EXPORT EGLBoolean EGLAPIENTRY ReleaseDeviceANGLE(EGLDeviceEXT device)
{
EVENT("(EGLDeviceEXT device = 0x%0.8p)", device);
Device *dev = static_cast<Device *>(device);
Error error = ValidateReleaseDeviceANGLE(dev);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SafeDelete(dev);
return EGL_TRUE;
}
// EGL_KHR_stream
EGLStreamKHR EGLAPIENTRY CreateStreamKHR(EGLDisplay dpy, const EGLint *attrib_list)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, const EGLAttrib* attrib_list = 0x%0.8p)", dpy, attrib_list);
Display *display = static_cast<Display *>(dpy);
AttributeMap attributes = AttributeMap::CreateFromIntArray(attrib_list);
Error error = ValidateCreateStreamKHR(display, attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_NO_STREAM_KHR;
}
Stream *stream;
error = display->createStream(attributes, &stream);
if (error.isError())
{
SetGlobalError(error);
return EGL_NO_STREAM_KHR;
}
SetGlobalError(error);
return static_cast<EGLStreamKHR>(stream);
}
EGLBoolean EGLAPIENTRY DestroyStreamKHR(EGLDisplay dpy, EGLStreamKHR stream)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR = 0x%0.8p)", dpy, stream);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
Error error = ValidateDestroyStreamKHR(display, streamObject);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
display->destroyStream(streamObject);
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY StreamAttribKHR(EGLDisplay dpy,
EGLStreamKHR stream,
EGLenum attribute,
EGLint value)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR stream = 0x%0.8p, EGLenum attribute = 0x%X, "
"EGLint value = 0x%X)",
dpy, stream, attribute, value);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
Error error = ValidateStreamAttribKHR(display, streamObject, attribute, value);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
switch (attribute)
{
case EGL_CONSUMER_LATENCY_USEC_KHR:
streamObject->setConsumerLatency(value);
break;
case EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR:
streamObject->setConsumerAcquireTimeout(value);
break;
default:
UNREACHABLE();
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY QueryStreamKHR(EGLDisplay dpy,
EGLStreamKHR stream,
EGLenum attribute,
EGLint *value)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR stream = 0x%0.8p, EGLenum attribute = 0x%X, "
"EGLint value = 0x%0.8p)",
dpy, stream, attribute, value);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
Error error = ValidateQueryStreamKHR(display, streamObject, attribute, value);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
switch (attribute)
{
case EGL_STREAM_STATE_KHR:
*value = streamObject->getState();
break;
case EGL_CONSUMER_LATENCY_USEC_KHR:
*value = streamObject->getConsumerLatency();
break;
case EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR:
*value = streamObject->getConsumerAcquireTimeout();
break;
default:
UNREACHABLE();
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY QueryStreamu64KHR(EGLDisplay dpy,
EGLStreamKHR stream,
EGLenum attribute,
EGLuint64KHR *value)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR stream = 0x%0.8p, EGLenum attribute = 0x%X, "
"EGLuint64KHR value = 0x%0.8p)",
dpy, stream, attribute, value);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
Error error = ValidateQueryStreamu64KHR(display, streamObject, attribute, value);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
switch (attribute)
{
case EGL_PRODUCER_FRAME_KHR:
*value = streamObject->getProducerFrame();
break;
case EGL_CONSUMER_FRAME_KHR:
*value = streamObject->getConsumerFrame();
break;
default:
UNREACHABLE();
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY StreamConsumerGLTextureExternalKHR(EGLDisplay dpy, EGLStreamKHR stream)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR = 0x%0.8p)", dpy, stream);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
gl::Context *context = gl::GetValidGlobalContext();
Error error = ValidateStreamConsumerGLTextureExternalKHR(display, context, streamObject);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = streamObject->createConsumerGLTextureExternal(AttributeMap(), context);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY StreamConsumerAcquireKHR(EGLDisplay dpy, EGLStreamKHR stream)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR = 0x%0.8p)", dpy, stream);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
gl::Context *context = gl::GetValidGlobalContext();
Error error = ValidateStreamConsumerAcquireKHR(display, context, streamObject);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = streamObject->consumerAcquire();
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY StreamConsumerReleaseKHR(EGLDisplay dpy, EGLStreamKHR stream)
{
EVENT("(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR = 0x%0.8p)", dpy, stream);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
gl::Context *context = gl::GetValidGlobalContext();
Error error = ValidateStreamConsumerReleaseKHR(display, context, streamObject);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = streamObject->consumerRelease();
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY StreamConsumerGLTextureExternalAttribsNV(EGLDisplay dpy,
EGLStreamKHR stream,
const EGLAttrib *attrib_list)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR stream = 0x%0.8p, EGLAttrib attrib_list = 0x%0.8p",
dpy, stream, attrib_list);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
gl::Context *context = gl::GetValidGlobalContext();
AttributeMap attributes = AttributeMap::CreateFromAttribArray(attrib_list);
Error error = ValidateStreamConsumerGLTextureExternalAttribsNV(display, context, streamObject,
attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = streamObject->createConsumerGLTextureExternal(attributes, context);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY CreateStreamProducerD3DTextureNV12ANGLE(EGLDisplay dpy,
EGLStreamKHR stream,
const EGLAttrib *attrib_list)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR stream = 0x%0.8p, EGLAttrib attrib_list = 0x%0.8p",
dpy, stream, attrib_list);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
AttributeMap attributes = AttributeMap::CreateFromAttribArray(attrib_list);
Error error =
ValidateCreateStreamProducerD3DTextureNV12ANGLE(display, streamObject, attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = streamObject->createProducerD3D11TextureNV12(attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY StreamPostD3DTextureNV12ANGLE(EGLDisplay dpy,
EGLStreamKHR stream,
void *texture,
const EGLAttrib *attrib_list)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLStreamKHR stream = 0x%0.8p, void* texture = 0x%0.8p, "
"EGLAttrib attrib_list = 0x%0.8p",
dpy, stream, texture, attrib_list);
Display *display = static_cast<Display *>(dpy);
Stream *streamObject = static_cast<Stream *>(stream);
AttributeMap attributes = AttributeMap::CreateFromAttribArray(attrib_list);
Error error = ValidateStreamPostD3DTextureNV12ANGLE(display, streamObject, texture, attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = streamObject->postD3D11NV12Texture(texture, attributes);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
EGLBoolean EGLAPIENTRY GetSyncValuesCHROMIUM(EGLDisplay dpy,
EGLSurface surface,
EGLuint64KHR *ust,
EGLuint64KHR *msc,
EGLuint64KHR *sbc)
{
EVENT(
"(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p, EGLuint64KHR* ust = 0x%0.8p, "
"EGLuint64KHR* msc = 0x%0.8p, EGLuint64KHR* sbc = 0x%0.8p",
dpy, surface, ust, msc, sbc);
Display *display = static_cast<Display *>(dpy);
Surface *eglSurface = static_cast<Surface *>(surface);
Error error = ValidateGetSyncValuesCHROMIUM(display, eglSurface, ust, msc, sbc);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
error = eglSurface->getSyncValues(ust, msc, sbc);
if (error.isError())
{
SetGlobalError(error);
return EGL_FALSE;
}
SetGlobalError(error);
return EGL_TRUE;
}
}
| [
"achristensen@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc"
] | achristensen@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc |
24195ff9fe87b6d1adfbf6fa7ae5c91965994384 | ab1182201f5a669fc079ac181dfdea14154bff99 | /McEngine/src/Engine/Platform/LinuxEnvironment.cpp | c744e74b780643e09f5ff1751f40423363db8758 | [
"MIT"
] | permissive | yuxuanchiadm/McEngine | c14f88e0cdef11005bab38573950918ac8382f82 | 499a1859ee22840e19777ca848cfba0ffb94f779 | refs/heads/master | 2021-01-23T01:06:43.520308 | 2017-03-22T21:29:02 | 2017-04-06T03:23:01 | 85,868,785 | 1 | 0 | null | 2017-03-22T19:38:37 | 2017-03-22T19:38:37 | null | UTF-8 | C++ | false | false | 23,575 | cpp | //================ Copyright (c) 2015, PG, All rights reserved. =================//
//
// Purpose: linux
//
// $NoKeywords: $linuxenv
//===============================================================================//
#ifdef __linux__
#include "LinuxEnvironment.h"
#include "Engine.h"
#include "LinuxGLLegacyInterface.h"
#include "LinuxContextMenu.h"
#include <X11/cursorfont.h>
#include <X11/Xatom.h>
#include <dirent.h>
#include <libgen.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/param.h>
#include <unistd.h>
#include <pwd.h>
#include <string.h>
#include <stdio.h>
typedef struct
{
unsigned long flags;
unsigned long functions;
unsigned long decorations;
long inputMode;
unsigned long status;
} Hints;
bool LinuxEnvironment::m_bResizable = true;
LinuxEnvironment::LinuxEnvironment(Display *display, Window window)
{
m_display = display;
m_window = window;
m_bCursorClipped = false;
m_bCursorRequest = false;
m_bCursorReset = false;
m_bCursorVisible = true;
m_bIsCursorInsideWindow = false;
m_mouseCursor = XCreateFontCursor(m_display, XC_left_ptr);
m_invisibleCursor = makeBlankCursor();
m_atom_UTF8_STRING = XInternAtom(m_display, "UTF8_STRING", False);
m_atom_CLIPBOARD = XInternAtom(m_display, "CLIPBOARD", False);
m_atom_TARGETS = XInternAtom(m_display, "TARGETS", False);
m_bFullScreen = false;
m_bIsRestartScheduled = false;
m_bResizeDelayHack = false;
m_bPrevCursorHack = false;
}
LinuxEnvironment::~LinuxEnvironment()
{
XFreeCursor(m_display, m_invisibleCursor);
}
void LinuxEnvironment::update()
{
if (!m_bCursorRequest)
{
if (m_bCursorReset)
{
m_bCursorReset = false;
setCursor(CURSOR_NORMAL);
}
}
m_bCursorRequest = false;
m_bIsCursorInsideWindow = Rect(0, 0, engine->getScreenWidth(), engine->getScreenHeight()).contains(getMousePos());
}
Graphics *LinuxEnvironment::createRenderer()
{
return new LinuxGLLegacyInterface(m_display, m_window);
}
ContextMenu *LinuxEnvironment::createContextMenu()
{
return new LinuxContextMenu();
}
Environment::OS LinuxEnvironment::getOS()
{
return Environment::OS::OS_LINUX;
}
void LinuxEnvironment::shutdown()
{
XEvent ev;
memset(&ev, 0, sizeof (ev));
ev.type = ClientMessage;
ev.xclient.type = ClientMessage;
ev.xclient.window = m_window;
ev.xclient.message_type = XInternAtom(m_display, "WM_PROTOCOLS", True);
ev.xclient.format = 32;
ev.xclient.data.l[0] = XInternAtom(m_display, "WM_DELETE_WINDOW", False);
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(m_display, m_window, false, NoEventMask, &ev);
}
void LinuxEnvironment::restart()
{
m_bIsRestartScheduled = true;
shutdown();
}
UString LinuxEnvironment::getExecutablePath()
{
char buf[4096];
memset(buf, '\0', 4096);
if (readlink("/proc/self/exe", buf, 4095) != -1)
return UString(buf);
else
return UString("");
}
void LinuxEnvironment::openURLInDefaultBrowser(UString url)
{
if (fork() == 0)
exit(execl("/usr/bin/xdg-open", "xdg-open", url.toUtf8(), (char*)0));
}
UString LinuxEnvironment::getUsername()
{
passwd *pwd = getpwuid(getuid());
if (pwd != NULL && pwd->pw_name != NULL)
return UString(pwd->pw_name);
else
return UString("");
}
UString LinuxEnvironment::getUserDataPath()
{
passwd *pwd = getpwuid(getuid());
if (pwd != NULL && pwd->pw_dir != NULL)
return UString(pwd->pw_dir);
else
return UString("");
}
bool LinuxEnvironment::fileExists(UString filename)
{
return std::ifstream(filename.toUtf8()).good();
}
bool LinuxEnvironment::directoryExists(UString directoryName)
{
DIR *dir = opendir(directoryName.toUtf8());
if (dir)
{
closedir(dir);
return true;
}
else if (ENOENT == errno) // not a directory
{
}
else // something else broke
{
}
return false;
}
bool LinuxEnvironment::createDirectory(UString directoryName)
{
return mkdir(directoryName.toUtf8(), DEFFILEMODE) != -1;
}
bool LinuxEnvironment::renameFile(UString oldFileName, UString newFileName)
{
return rename(oldFileName.toUtf8(), newFileName.toUtf8()) != -1;
}
bool LinuxEnvironment::deleteFile(UString filePath)
{
return remove(filePath.toUtf8()) == 0;
}
std::vector<UString> LinuxEnvironment::getFilesInFolder(UString folder)
{
std::vector<UString> files;
struct dirent **namelist;
int n = scandir(folder.toUtf8(), &namelist, getFilesInFolderFilter, alphasort);
if (n < 0)
{
///debugLog("LinuxEnvironment::getFilesInFolder() error, scandir() returned %i!\n", n);
return files;
}
while (n--)
{
const char *name = namelist[n]->d_name;
UString uName = UString(name);
UString fullName = folder;
fullName.append(uName);
free(namelist[n]);
struct stat stDirInfo;
int lstatret = lstat(fullName.toUtf8(), &stDirInfo);
if (lstatret < 0)
{
//perror (name);
//debugLog("LinuxEnvironment::getFilesInFolder() error, lstat() returned %i!\n", lstatret);
continue;
}
if (!S_ISDIR(stDirInfo.st_mode))
files.push_back(uName);
}
free(namelist);
return files;
}
std::vector<UString> LinuxEnvironment::getFoldersInFolder(UString folder)
{
std::vector<UString> folders;
struct dirent **namelist;
int n = scandir(folder.toUtf8(), &namelist, getFoldersInFolderFilter, alphasort);
if (n < 0)
{
///debugLog("LinuxEnvironment::getFilesInFolder() error, scandir() returned %i!\n", n);
return folders;
}
while (n--)
{
const char *name = namelist[n]->d_name;
UString uName = UString(name);
UString fullName = folder;
fullName.append(uName);
free(namelist[n]);
struct stat stDirInfo;
int lstatret = lstat(fullName.toUtf8(), &stDirInfo);
if (lstatret < 0)
{
///perror (name);
///debugLog("LinuxEnvironment::getFilesInFolder() error, lstat() returned %i!\n", lstatret);
continue;
}
if (S_ISDIR(stDirInfo.st_mode))
folders.push_back(uName);
}
free(namelist);
return folders;
}
std::vector<UString> LinuxEnvironment::getLogicalDrives()
{
std::vector<UString> drives;
drives.push_back(UString("/"));
return drives;
}
UString LinuxEnvironment::getFolderFromFilePath(UString filepath)
{
if (directoryExists(filepath)) // indirect check if this is already a valid directory (and not a file)
return filepath;
else
return UString(dirname((char*)filepath.toUtf8()));
}
UString LinuxEnvironment::getFileExtensionFromFilePath(UString filepath, bool includeDot)
{
int idx = filepath.findLast(".");
if (idx != -1)
return filepath.substr(idx+1);
else
return UString("");
}
UString LinuxEnvironment::getClipBoardText()
{
return getClipboardTextInt();
}
void LinuxEnvironment::setClipBoardText(UString text)
{
setClipBoardTextInt(text);
}
void LinuxEnvironment::showMessageInfo(UString title, UString message)
{
// TODO:
}
void LinuxEnvironment::showMessageWarning(UString title, UString message)
{
// TODO:
}
void LinuxEnvironment::showMessageError(UString title, UString message)
{
// TODO:
}
void LinuxEnvironment::showMessageErrorFatal(UString title, UString message)
{
// TODO:
}
UString LinuxEnvironment::openFileWindow(const char *filetypefilters, UString title, UString initialpath)
{
// TODO:
return UString("");
}
UString LinuxEnvironment::openFolderWindow(UString title, UString initialpath)
{
// TODO:
return UString("");
}
void LinuxEnvironment::focus()
{
XRaiseWindow(m_display, m_window);
XMapRaised(m_display, m_window);
}
void LinuxEnvironment::center()
{
Vector2 windowSize = getWindowSize();
if (m_bResizeDelayHack)
windowSize = m_vResizeHackSize;
m_bResizeDelayHack = false;
Screen *defaultScreen = XDefaultScreenOfDisplay(m_display);
XMoveResizeWindow(m_display, m_window, WidthOfScreen(defaultScreen)/2 - (unsigned int)(windowSize.x/2), HeightOfScreen(defaultScreen)/2 - (unsigned int)(windowSize.y/2), (unsigned int)windowSize.x, (unsigned int)windowSize.y);
}
void LinuxEnvironment::minimize()
{
XIconifyWindow(m_display, m_window, 0);
}
void LinuxEnvironment::maximize()
{
XMapWindow(m_display, m_window);
// set size to fill entire screen (also fill borders)
// the "x" and "y" members of "attributes" are the window's coordinates relative to its parent, i.e. to the decoration window
XWindowAttributes attributes;
XGetWindowAttributes(m_display, m_window, &attributes);
XMoveResizeWindow(m_display,
m_window,
-attributes.x,
-attributes.y,
(unsigned int)getNativeScreenSize().x,
(unsigned int)getNativeScreenSize().y);
}
void LinuxEnvironment::enableFullscreen()
{
if (m_bFullScreen) return;
// backup
m_vLastWindowPos = getWindowPos();
m_vLastWindowSize = getWindowSize();
// disable window decorations
Hints hints;
Atom property;
hints.flags = 2; // specify that we're changing the window decorations
hints.decorations = 0; // 0 (false) = disable decorations
property = XInternAtom(m_display, "_MOTIF_WM_HINTS", True);
XChangeProperty(m_display, m_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
// set size to fill entire screen (also fill borders)
// the "x" and "y" members of "attributes" are the window's coordinates relative to its parent, i.e. to the decoration window
XWindowAttributes attributes;
XGetWindowAttributes(m_display, m_window, &attributes);
XMoveResizeWindow(m_display,
m_window,
-attributes.x,
-attributes.y,
(unsigned int)getNativeScreenSize().x,
(unsigned int)getNativeScreenSize().y);
// suggest fullscreen mode
Atom atom = XInternAtom(m_display, "_NET_WM_STATE_FULLSCREEN", True);
XChangeProperty(
m_display, m_window,
XInternAtom(m_display, "_NET_WM_STATE", True),
XA_ATOM, 32, PropModeReplace,
(unsigned char*)&atom, 1);
// get identifiers for the provided atom name strings
Atom wm_state = XInternAtom(m_display, "_NET_WM_STATE", False);
Atom fullscreen = XInternAtom(m_display, "_NET_WM_STATE_FULLSCREEN", False);
XEvent xev;
memset(&xev, 0, sizeof(xev));
xev.type = ClientMessage;
xev.xclient.window = m_window;
xev.xclient.message_type = wm_state;
xev.xclient.format = 32;
xev.xclient.data.l[0] = 1; // enable fullscreen (1 == true)
xev.xclient.data.l[1] = fullscreen;
// send an event mask to the X-server
XSendEvent(
m_display,
DefaultRootWindow(m_display),
False,
SubstructureNotifyMask,
&xev);
// force top window
XMapRaised(m_display, m_window);
m_bFullScreen = true;
}
void LinuxEnvironment::disableFullscreen()
{
if (!m_bFullScreen) return;
// unsuggest fullscreen mode
Atom atom = XInternAtom(m_display, "_NET_WM_STATE_FULLSCREEN", True);
XChangeProperty(
m_display, m_window,
XInternAtom(m_display, "_NET_WM_STATE", True),
XA_ATOM, 32, PropModeReplace,
(unsigned char*)&atom, 1);
// get identifiers for the provided atom name strings
Atom wm_state = XInternAtom(m_display, "_NET_WM_STATE", False);
Atom fullscreen = XInternAtom(m_display, "_NET_WM_STATE_FULLSCREEN", False);
XEvent xev;
memset(&xev, 0, sizeof(xev));
xev.type = ClientMessage;
xev.xclient.window = m_window;
xev.xclient.message_type = wm_state;
xev.xclient.format = 32;
xev.xclient.data.l[0] = 0; // disable fullscreen (0 == false)
xev.xclient.data.l[1] = fullscreen;
// send an event mask to the X-server
XSendEvent(
m_display,
DefaultRootWindow(m_display),
False,
SubstructureNotifyMask,
&xev);
// enable window decorations
Hints hints;
Atom property;
hints.flags = 2;
hints.decorations = 1;
property = XInternAtom(m_display, "_MOTIF_WM_HINTS", True);
XChangeProperty(m_display, m_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
// restore previous size and position
// TODO: the y-position is not consistent in Ubuntu, the window keeps going down when toggling fullscreen, force center() workaround
XMoveResizeWindow(m_display,
m_window,
(int)m_vLastWindowPos.x,
(int)m_vLastWindowPos.y,
(unsigned int)m_vLastWindowSize.x,
(unsigned int)m_vLastWindowSize.y);
m_vResizeHackSize = m_vLastWindowSize;
m_bResizeDelayHack = true;
center();
m_bFullScreen = false;
}
void LinuxEnvironment::setWindowTitle(UString title)
{
XStoreName(m_display, m_window, title.toUtf8());
}
void LinuxEnvironment::setWindowPos(int x, int y)
{
XMapWindow(m_display, m_window);
XMoveWindow(m_display, m_window, x, y);
}
void LinuxEnvironment::setWindowSize(int width, int height)
{
m_vResizeHackSize = Vector2(width, height);
m_bResizeDelayHack = true;
XResizeWindow(m_display, m_window, width, height);
XFlush(m_display);
}
void LinuxEnvironment::setWindowResizable(bool resizable)
{
m_bResizable = resizable;
// TODO: XSetWMNormalHints(), can't force though
// _NET_WM_ACTION_RESIZE
/*
Atom atom = XInternAtom(m_display, "_NET_WM_ACTION_RESIZE", True);
XChangeProperty(
m_display, m_window,
XInternAtom(m_display, "_NET_WM_ALLOWED_ACTIONS", True),
XA_ATOM, 32, PropModeReplace,
(unsigned char*)&atom, 1);
*/
}
void LinuxEnvironment::setWindowGhostCorporeal(bool corporeal)
{
// TODO:
}
Vector2 LinuxEnvironment::getWindowPos()
{
// client coordinates
Window rootRet;
int x = 0;
int y = 0;
unsigned int borderWidth = 1;
unsigned int depth = 0;
unsigned int width = 1;
unsigned int height = 1;
XGetGeometry(m_display, m_window, &rootRet, &x, &y, &width, &height, &borderWidth, &depth);
return Vector2(x, y);
// server coordinates
/*
int x = 0;
int y = 0;
Window child;
XWindowAttributes xwa;
XTranslateCoordinates(m_display, m_window, DefaultRootWindow(m_display), 0, 0, &x, &y, &child );
XGetWindowAttributes(m_display, m_window, &xwa);
return Vector2(x - xwa.x, y - xwa.y);
*/
}
Vector2 LinuxEnvironment::getWindowSize()
{
// client size
Window rootRet;
int x = 0;
int y = 0;
unsigned int borderWidth = 1;
unsigned int depth = 0;
unsigned int width = 1;
unsigned int height = 1;
XGetGeometry(m_display, m_window, &rootRet, &x, &y, &width, &height, &borderWidth, &depth);
return Vector2(width, height);
}
Vector2 LinuxEnvironment::getNativeScreenSize()
{
return Vector2(WidthOfScreen(DefaultScreenOfDisplay(m_display)), HeightOfScreen(DefaultScreenOfDisplay(m_display)));
}
Rect LinuxEnvironment::getVirtualScreenRect()
{
// TODO:
return Rect(0,0,1,1);
}
Rect LinuxEnvironment::getDesktopRect()
{
// TODO:
Vector2 screen = getNativeScreenSize();
return Rect(0, 0, screen.x, screen.y);
}
bool LinuxEnvironment::isCursorInWindow()
{
return m_bIsCursorInsideWindow;
}
bool LinuxEnvironment::isCursorVisible()
{
return m_bCursorVisible;
}
bool LinuxEnvironment::isCursorClipped()
{
return m_bCursorClipped;
}
Vector2 LinuxEnvironment::getMousePos()
{
Window rootRet, childRet;
unsigned int mask;
int childX, childY;
int rootX = 0;
int rootY = 0;
XQueryPointer(m_display, m_window, &rootRet, &childRet, &rootX, &rootY, &childX, &childY, &mask);
return Vector2(childX, childY);
}
Rect LinuxEnvironment::getCursorClip()
{
return m_cursorClip;
}
void LinuxEnvironment::setCursor(CURSORTYPE cur)
{
if (!m_bCursorVisible) return;
switch (cur)
{
case CURSOR_NORMAL:
m_mouseCursor = XCreateFontCursor(m_display, XC_left_ptr);
break;
case CURSOR_WAIT:
m_mouseCursor = XCreateFontCursor(m_display, XC_circle);
break;
case CURSOR_SIZE_H:
m_mouseCursor = XCreateFontCursor(m_display, XC_sb_h_double_arrow);
break;
case CURSOR_SIZE_V:
m_mouseCursor = XCreateFontCursor(m_display, XC_sb_v_double_arrow);
break;
case CURSOR_SIZE_HV:
m_mouseCursor = XCreateFontCursor(m_display, XC_bottom_left_corner);
break;
case CURSOR_SIZE_VH:
m_mouseCursor = XCreateFontCursor(m_display, XC_bottom_right_corner);
break;
case CURSOR_TEXT:
m_mouseCursor = XCreateFontCursor(m_display, XC_xterm);
break;
default:
m_mouseCursor = XCreateFontCursor(m_display, XC_left_ptr);
break;
}
setCursorInt(m_mouseCursor);
m_bCursorReset = true;
m_bCursorRequest = true;
}
void LinuxEnvironment::setCursorVisible(bool visible)
{
m_bCursorVisible = visible;
setCursorInt(visible ? m_mouseCursor : m_invisibleCursor);
}
void LinuxEnvironment::setMousePos(int x, int y)
{
XWarpPointer(m_display, None, m_window, 0, 0, 0, 0, x, y);
XFlush(m_display);
}
void LinuxEnvironment::setCursorClip(bool clip, Rect rect)
{
if (clip)
{
// TODO: is a custom rectangle even possible?
/*
if (XGrabPointer(m_display, m_window, True, 0, GrabModeAsync, GrabModeAsync, m_window, None, CurrentTime) == GrabSuccess)
m_bCursorClipped = true;
else
m_bCursorClipped = false;
*/
// TODO: this is fucked
}
else
{
XUngrabPointer(m_display, CurrentTime);
m_bCursorClipped = false;
}
}
// helper functions
int LinuxEnvironment::getFilesInFolderFilter(const struct dirent *entry)
{
return 1;
}
int LinuxEnvironment::getFoldersInFolderFilter(const struct dirent *entry)
{
return 1;
}
Cursor LinuxEnvironment::makeBlankCursor()
{
static char data[1] = {0};
Cursor cursor;
Pixmap blank;
XColor dummy;
blank = XCreateBitmapFromData(m_display, m_window, data, 1, 1);
if (blank == None)
{
debugLog("LinuxEnvironment::makeBlankCursor() fatal error, XCreateBitmapFromData() out of memory!\n");
return 0;
}
cursor = XCreatePixmapCursor(m_display, blank, blank, &dummy, &dummy, 0, 0);
XFreePixmap(m_display, blank);
return cursor;
}
void LinuxEnvironment::setCursorInt(Cursor cursor)
{
if (m_bPrevCursorHack)
XUndefineCursor(m_display, m_window);
m_bPrevCursorHack = true;
XDefineCursor(m_display, m_window, cursor);
}
UString LinuxEnvironment::readWindowProperty(Window window, Atom prop, Atom fmt /* XA_STRING or UTF8_STRING */, bool deleteAfterReading)
{
UString returnData = UString("");
unsigned char *clipData;
Atom actualType;
int actualFormat;
unsigned long nitems, bytesLeft;
if (XGetWindowProperty(m_display, m_window, prop, 0L /* offset */,
1000000 /* length (max) */, False,
AnyPropertyType /* format */, &actualType, &actualFormat, &nitems,
&bytesLeft, &clipData) == Success)
{
if (actualType == m_atom_UTF8_STRING && actualFormat == 8)
{
// very inefficient, but whatever
std::string temp;
for (int i=0; i<nitems; i++)
{
temp += clipData[i];
}
returnData = UString(temp.c_str());
}
else if (actualType == XA_STRING && actualFormat == 8)
{
// very inefficient, but whatever
std::string temp;
for (int i=0; i<nitems; i++)
{
temp += clipData[i];
}
returnData = UString(temp.c_str());
}
if (clipData != 0)
XFree(clipData);
}
if (deleteAfterReading)
XDeleteProperty(m_display, window, prop);
return returnData;
}
bool LinuxEnvironment::requestSelectionContent(UString &selection_content, Atom selection, Atom requested_format)
{
// send a SelectionRequest to the window owning the selection and waits for its answer (with a timeout)
// the selection owner will be asked to set the MCENGINE_SEL property on m_window with the selection content
Atom property_name = XInternAtom(m_display, "MCENGINE_SEL", false);
XConvertSelection(m_display, selection, requested_format, property_name, m_window, CurrentTime);
bool gotReply = false;
int timeoutMs = 200; // will wait at most for 200 ms
do
{
XEvent event;
gotReply = XCheckTypedWindowEvent(m_display, m_window, SelectionNotify, &event);
if (gotReply)
{
if (event.xselection.property == property_name)
{
selection_content = readWindowProperty(event.xselection.requestor, event.xselection.property, requested_format, true);
return true;
}
else // the format we asked for was denied.. (event.xselection.property == None)
return false;
}
// not very elegant.. we could do a select() or something like that... however clipboard content requesting
// is inherently slow on x11, it often takes 50ms or more so...
usleep(4000);
timeoutMs -= 4;
}
while (timeoutMs > 0);
debugLog("LinuxEnvironment::requestSelectionContent() : Timeout!\n");
return false;
}
void LinuxEnvironment::handleSelectionRequest(XSelectionRequestEvent &evt)
{
// called from the event loop in response to SelectionRequest events
// the selection content is sent to the target window as a window property
XSelectionEvent reply;
reply.type = SelectionNotify;
reply.display = evt.display;
reply.requestor = evt.requestor;
reply.selection = evt.selection;
reply.target = evt.target;
reply.property = None; // == "fail"
reply.time = evt.time;
char *data = 0;
int property_format = 0, data_nitems = 0;
if (evt.selection == XA_PRIMARY || evt.selection == m_atom_CLIPBOARD)
{
if (evt.target == XA_STRING)
{
// format data according to system locale
data = strdup((const char*)m_sLocalClipboardContent.toUtf8());
data_nitems = strlen(data);
property_format = 8; // bits/item
}
else if (evt.target == m_atom_UTF8_STRING)
{
// translate to utf8
data = strdup((const char*)m_sLocalClipboardContent.toUtf8());
data_nitems = strlen(data);
property_format = 8; // bits/item
}
else if (evt.target == m_atom_TARGETS)
{
// another application wants to know what we are able to send
data_nitems = 2;
property_format = 32; // atoms are 32-bit
data = (char*) malloc(data_nitems * 4);
((Atom*)data)[0] = m_atom_UTF8_STRING;
((Atom*)data)[1] = XA_STRING;
}
}
else
debugLog("LinuxEnvironment::handleSelectionRequest() : Requested unsupported clipboard!\n");
if (data)
{
const size_t MAX_REASONABLE_SELECTION_SIZE = 1000000;
// for very big chunks of data, we should use the "INCR" protocol, which is a pain in the asshole
if (evt.property != None && strlen(data) < MAX_REASONABLE_SELECTION_SIZE)
{
XChangeProperty(evt.display, evt.requestor, evt.property,
evt.target, property_format /* 8 or 32 */, PropModeReplace,
(const unsigned char*) data, data_nitems);
reply.property = evt.property; // " == success"
}
free(data);
}
XSendEvent(evt.display, evt.requestor, 0, NoEventMask, (XEvent *) &reply);
}
void LinuxEnvironment::setClipBoardTextInt(UString clipText)
{
m_sLocalClipboardContent = clipText;
XSetSelectionOwner(m_display, XA_PRIMARY, m_window, CurrentTime);
XSetSelectionOwner(m_display, m_atom_CLIPBOARD, m_window, CurrentTime);
}
UString LinuxEnvironment::getClipboardTextInt()
{
UString content;
// clipboard code is modified from https://forum.juce.com/t/clipboard-support-in-linux/3894
// thanks to jpo!
/*
1) try to read from the "CLIPBOARD" selection first (the "high
level" clipboard that is supposed to be filled by ctrl-C
etc). When a clipboard manager is running, the content of this
selection is preserved even when the original selection owner
exits.
2) and then try to read from "PRIMARY" selection (the "legacy" selection
filled by good old x11 apps such as xterm)
3) a third fallback could be CUT_BUFFER0 but they are obsolete since X10 !
( http://www.jwz.org/doc/x-cut-and-paste.html )
There is not content negotiation here -- we just try to retrieve the selection first
as utf8 and then as a locale-dependent string
*/
Atom selection = XA_PRIMARY;
Window selection_owner = None;
if ((selection_owner = XGetSelectionOwner(m_display, selection)) == None)
{
selection = m_atom_CLIPBOARD;
selection_owner = XGetSelectionOwner(m_display, selection);
}
if (selection_owner != None)
{
if (selection_owner == m_window) // ourself
content = m_sLocalClipboardContent; // just return the local clipboard
else
{
// first try: we want an utf8 string
bool ok = requestSelectionContent(content, selection, m_atom_UTF8_STRING);
if (!ok) // second chance, ask for a good old locale-dependent string
ok = requestSelectionContent(content, selection, XA_STRING);
}
}
return content;
}
#endif
| [
"-"
] | - |
d70f3ca5479f5f588d89d73480017d1b9e43c2b2 | 6efbcf482ffc976e683e4e791548d7fd5369d52b | /opengl-tutorial/base/VulkanTool.h | b5c3b01c7975921c89dff037afab1bde7198bdd5 | [] | no_license | evopen/CG | 2b22861b1bdea3b19b51e17b0a3980a9f93d9fe0 | 2bb9130e7698eaaed1f455bc29fa4dd44d3c5d73 | refs/heads/master | 2020-08-08T12:03:37.796570 | 2020-01-22T11:02:52 | 2020-01-22T11:02:52 | 212,059,034 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,440 | h | #pragma once
#include <vulkan/vulkan.h>
#include <vk_mem_alloc.h>
#include <string>
#include <ios>
#include <vector>
namespace engine
{
namespace tool
{
VkImageView createImageView(VkDevice device, VkImage image, VkFormat format, VkImageAspectFlagBits aspectFlags,
uint32_t mipLevels);
void createImage(VmaAllocator allocator, uint32_t width, uint32_t height, uint32_t mipLevelCount,
VkSampleCountFlagBits sampleCount,
VkFormat format, VkImageTiling tiling, VkImageUsageFlags usage, VmaMemoryUsage memoryUsage,
VkImage& image, VmaAllocation& allocation);
VkShaderModule createShaderModule(VkDevice device, const std::string& filename);
void createBuffer(VmaAllocator allocator, VkDeviceSize size, VkBufferUsageFlags usage,
VmaMemoryUsage memoryUsage, VkBuffer& buffer,
VmaAllocation& allocation);
void createVertexInputBuffer(VmaAllocator allocator, VkDeviceSize size, bool staging, VkBuffer& buffer,
VmaAllocation allocation,
void* data);
void createIndexInputBuffer(VmaAllocator allocator, VkDeviceSize size, bool staging, VkBuffer& buffer,
VmaAllocation allocation,
void* data);
std::vector<char> readFile(const std::string& filename, std::ios_base::openmode mode);
}
}
| [
"520dhh@gmail.com"
] | 520dhh@gmail.com |
e388cc159bedf2b5438d9a562fe2fc3a126e197b | 5ba840b748e5ea5cbb15592cbb42dd836a128423 | /Filaments_DeMux_TE.hpp | f61ada07d85b68348c382be31160164f206e7242 | [] | no_license | sdwill/filamentation-demux-TE | 5ab93f4c3fcddf553aeaff5f811a158bc5601926 | 66f8b5a8775ed1a6ba22de42f5c369cb2b5532b0 | refs/heads/master | 2021-01-01T06:16:57.391764 | 2014-02-20T21:22:22 | 2014-02-20T21:22:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,690 | hpp | #include <iostream>
#include <stdlib.h>
#include <math.h>
#include <fstream>
#include <string.h>
#include <sstream>
#include <complex.h>
using namespace std;
#ifdef _OPENMP
#include <omp.h>
#else
#define omp_get_num_threads() 0
#define omp_get_thread_num() 0
#endif
/* Arrays */
double complex **Gz, **Mz, **Dz, **Ez;
double complex **Tx, **Bx;
double complex **Ty, **By;
double complex ***t_Gz, ***t_Mz, ***t_Dz, ***t_Ez;
double complex ***t_Tx, ***t_Bx;
double complex ***t_Ty, ***t_By;
double **alpha_x, **beta_x;
double **alpha_y, **beta_y;
double **plasmaFreq;
double **nu;
/* Parallellization Parameters */
int numThreads;
int chunk;
/* Mesh Size */
int nx;
int ny;
/* Constants */
double eps_d; // Dielectric permittivity
double eps_0; // Permittivity of free space
double mu_0; // Permeability of free space
double e_c; // Electron charge
double m_e; // Electron mass
double c; // Speed of light
/* Simulation Parameters */
double ff; // Fill fraction of filaments
double lambda; // Wavelength
double ddx; // Mesh spatial step size
double dt; // Mesh temporal step size
double freqWave; // Input frequency
double delta_f;
double delta_x;
double nu_0; // Collision Frequency
double plasmaFreq_0; // Plasma Frequency
double numSteps; // Number of iterations simulation should execute
/* Initial Parameters */
double n_0;
double beta;
double h;
double b;
/* UPML Parameters */
double sigma_max;
double kappa_max;
int upmlSize_x;
int upmlSize_y;
int mp;
double *sigma_x;
double *kappa_x;
double *sigma_y;
double *kappa_y;
/* Functions */
void initFieldArrays(int nx, int ny);
void delFieldArrays(int nx);
void initUPML(int nx, int upmlSize_x, int ny, int upmlSize_y, double kappa_max, double sigma_max, int mp);
void delUPML();
void initAB(int nx, int ny);
void initFreqArrays(int nx, int ny, int start_x, int end_x, int start_y, int end_y, double plasmaFreq_0, int nu_0, int chunk);
void initMesh(int nx, int ny, int start_x, int end_x, int start_y, int end_y, double plasmaFreq_0, double nu_0, int upmlSize_x, int upmlSize_y, double kappa_max, double sigma_max, int mp, int chunk);
void delMesh(int nx);
double n (int T);
void updatePlasmaFreq(int nx, int ny, int start_x, int end_x, int start_y, int end_y, double plasmaFreq_0, int chunk);
double C1(int i, int j);
double C2(int i, int j);
double C3(int i, int j);
double C4(int i, int j);
double C5(int i, int j);
double C6(int i, int j);
double C7(int i, int j);
double C8(int i, int j);
double C9(int i, int j);
double C10(int i, int j);
double C11(int i, int j);
double C12(int i, int j);
double C13(int i, int j);
double C14(int i, int j);
double C15(int i, int j);
double AZ1(int i, int j);
double AZ2(int i, int j);
double AZ3(int i, int j);
double AZ4(int i, int j);
double AZ5(int i, int j);
double AZ6(int i, int j);
double AZ7(int i, int j);
double AZ8(int i, int j);
double AZ9(int i, int j);
double AZ10(int i, int j);
double AZ11(int i, int j);
double AZ12(int i, int j);
double AZ13(int i, int j);
double AZ14(int i, int j);
double AZ15(int i, int j);
double AX1(int i, int j);
double AX2(int i, int j);
double AX3(int i, int j);
double AX4(int i, int j);
double AX5(int i, int j);
double AY1(int i, int j);
double AY2(int i, int j);
double AY3(int i, int j);
double AY4(int i, int j);
double AY5(int i, int j);
void inputSource(int T);
void updateElectricField(int nx, int ny, int T, int chunk);
void updateMagneticField(int nx, int ny, int T, int chunk);
void resetTempArrays(int nx, int ny, int chunk);
void updateTempArrays(int nx, int ny, int chunk);
void mainLoop(int numSteps, int nx, int ny, int chunk);
void writeFields(int nx, int ny, int n);
| [
"sdwill94@gmail.com"
] | sdwill94@gmail.com |
5ed1f41e91d225d09d1e8945120265b86a0e6d7f | 1c7f45ab073175d397f38ad6f2e162abdc2a1f06 | /Bella_ciao.cpp | 2e06ec9d4a259d04fc30c96232ccd731d998f8ea | [] | no_license | Vikhyath-vec/test | b80aa2045a8b4350023d99b6fc8febefc7f48118 | 8a89fc13a8d1c2af35738fd85b577f8579a79957 | refs/heads/master | 2023-05-24T19:53:24.687328 | 2021-06-05T14:07:38 | 2021-06-05T14:07:38 | 374,128,649 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | cpp | #include<iostream>
using namespace std;
int main()
{
long long t, d, D, p ,q, temp, result;
cin >> t;
for(int i=0; i<t; i++)
{
cin >> D >> d >> p >> q;
temp = (D/d) - 1;
// cout << temp << endl;
result = (p * D) + (q * d * temp * (temp + 1)) / 2 + (q * (D/d) * (D%d));
cout << result << endl;
}
return 0;
} | [
"vikhyath.kothamasu@gmail.com"
] | vikhyath.kothamasu@gmail.com |
8b2862723bbdd9da2c269dd2a43a680fbc8b91c9 | 2347e7048a56b27e934eecf58f65b2aeb36357d4 | /ZeroEngine/ZeroEngine/ZeroSceneManager.cpp | d9134a8aea6a7ce582e0e4eaf108cd9e8959f8bc | [
"MIT"
] | permissive | Astoration/AbnormalClimate | 60ed0f96d95e004e2ca0c13f2d89ec672e18163a | 7555fa051e79094403ef34e0223fc5834891f453 | refs/heads/master | 2016-09-01T10:17:01.845426 | 2016-01-31T13:49:08 | 2016-01-31T13:49:08 | 48,671,953 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,717 | cpp | #include "stdafx.h"
#include "ZeroSceneManager.h"
#include "ZeroTransition.h"
#include "ZeroRenderTargetManager.h"
#pragma warning(disable: 4996)
ZeroSceneManager::ZeroSceneManager()
: now(NULL), temp(NULL), shader(NULL), m_fChangeTime(2.0f), m_bErase(true) {
shader = new ZeroIScene();
}
ZeroSceneManager::~ZeroSceneManager() {
}
ZeroSceneManager* ZeroSceneManager::Instance() {
static ZeroSceneManager instance;
return &instance;
}
void ZeroSceneManager::Update(float _eTime) {
if (temp) {
shader->Update(_eTime);
m_fChangeTime -= _eTime;
if (m_fChangeTime <= 0) {
if (m_bErase) {
SAFE_DELETE(now);
}
now = temp;
temp = NULL;
}
}
if (now)
now->Update(_eTime);
}
void ZeroSceneManager::Render() {
if (temp) {
ZeroRTMgr("Second_TR")->Begin();
temp->Render();
ZeroRTMgr("Second_TR")->End();
}
if (now) {
ZeroRTMgr("First_TR")->Begin();
now->Render();
ZeroRTMgr("First_TR")->End();
}
ZeroRTMgr("First_TR")->Render();
}
void ZeroSceneManager::Clear() {
SAFE_DELETE(now);
SAFE_DELETE(temp);
SAFE_DELETE(shader);
}
void ZeroSceneManager::ChangeScene(ZeroIScene * _scene, int _kindTr/*=-1*/, float _time/*=2.0f*/, bool _isErase/*=true*/) {
if (_kindTr == TR::None) {
if (_isErase) SAFE_DELETE(now);
now = _scene;
return;
}
if (!temp) {
temp = _scene;
m_fChangeTime = _time;
m_bErase = _isErase;
switch (_kindTr) {
case TR::BandedSwirl:
shader->PushScene(new ZeroTrBandedSwirl(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::CircleReveal:
shader->PushScene(new ZeroTrCircleReveal(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::CircleStretch:
shader->PushScene(new ZeroTrCircleStretch(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::CloudReveal:
shader->PushScene(new ZeroTrCloudReveal(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::Crumble:
shader->PushScene(new ZeroTrCrumble(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::DropFade:
shader->PushScene(new ZeroTrDropFade(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::Fade:
shader->PushScene(new ZeroTrFade(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::Pixelate:
shader->PushScene(new ZeroTrPixelate(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::RadialBlur:
shader->PushScene(new ZeroTrRadialBlur(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::RadialWiggle:
shader->PushScene(new ZeroTrRadialWiggle(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::RandomCircleReveal:
shader->PushScene(new ZeroTrRandomCircleReveal(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::Ripple:
shader->PushScene(new ZeroTrRipple(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::RotateCrumble:
shader->PushScene(new ZeroTrRotateCrumble(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::Saturate:
shader->PushScene(new ZeroTrSaturate(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::SlideIn:
shader->PushScene(new ZeroTrSlideIn(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
case TR::SmoothSwirlGrid:
shader->PushScene(new ZeroTrSmoothSwirlGrid(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
default:
shader->PushScene(new ZeroTrFade(_time, "First_TR", ZeroRTMgr("Second_TR")->Texture()));
break;
}
shader->Update(0);
temp->UpdateWorldPos();
}
}
| [
"ybdh00@naver.com"
] | ybdh00@naver.com |
46e0af1c57884c9bba94607001b8ec18b4486d08 | dd8bd820517aaa96e6f23ad3da8ce74181d03c88 | /bin/mac64/cpp/obj/src/__ASSET__fonts_original_me_ttf.cpp | 7fc7c5dec34764f9c1dd6c95759edf0a39efeb4e | [] | no_license | daphnei/AWiseComputer | 6584b9a6ccb182caadf2e01efacafa13face6e77 | 4f46905bcea50dbab296d19c3d32b4a9f0822743 | refs/heads/master | 2021-01-20T06:26:00.104321 | 2020-02-08T20:51:57 | 2020-02-08T20:51:57 | 28,999,842 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,993 | cpp | #include <hxcpp.h>
#ifndef INCLUDED___ASSET__fonts_original_me_ttf
#include <__ASSET__fonts_original_me_ttf.h>
#endif
#ifndef INCLUDED_openfl__v2_text_Font
#include <openfl/_v2/text/Font.h>
#endif
#ifndef INCLUDED_openfl__v2_text_FontStyle
#include <openfl/_v2/text/FontStyle.h>
#endif
#ifndef INCLUDED_openfl__v2_text_FontType
#include <openfl/_v2/text/FontType.h>
#endif
Void __ASSET__fonts_original_me_ttf_obj::__construct()
{
HX_STACK_FRAME("__ASSET__fonts_original_me_ttf","new",0x59882514,"__ASSET__fonts_original_me_ttf.new","DefaultAssetLibrary.hx",975,0x0fc48912)
HX_STACK_THIS(this)
{
HX_STACK_LINE(975)
super::__construct(null(),null(),null());
HX_STACK_LINE(975)
this->__fontPath = HX_CSTRING("fonts/Original me.ttf");
HX_STACK_LINE(975)
this->fontName = HX_CSTRING("Courier");
}
;
return null();
}
//__ASSET__fonts_original_me_ttf_obj::~__ASSET__fonts_original_me_ttf_obj() { }
Dynamic __ASSET__fonts_original_me_ttf_obj::__CreateEmpty() { return new __ASSET__fonts_original_me_ttf_obj; }
hx::ObjectPtr< __ASSET__fonts_original_me_ttf_obj > __ASSET__fonts_original_me_ttf_obj::__new()
{ hx::ObjectPtr< __ASSET__fonts_original_me_ttf_obj > result = new __ASSET__fonts_original_me_ttf_obj();
result->__construct();
return result;}
Dynamic __ASSET__fonts_original_me_ttf_obj::__Create(hx::DynamicArray inArgs)
{ hx::ObjectPtr< __ASSET__fonts_original_me_ttf_obj > result = new __ASSET__fonts_original_me_ttf_obj();
result->__construct();
return result;}
__ASSET__fonts_original_me_ttf_obj::__ASSET__fonts_original_me_ttf_obj()
{
}
Dynamic __ASSET__fonts_original_me_ttf_obj::__Field(const ::String &inName,bool inCallProp)
{
return super::__Field(inName,inCallProp);
}
Dynamic __ASSET__fonts_original_me_ttf_obj::__SetField(const ::String &inName,const Dynamic &inValue,bool inCallProp)
{
return super::__SetField(inName,inValue,inCallProp);
}
void __ASSET__fonts_original_me_ttf_obj::__GetFields(Array< ::String> &outFields)
{
super::__GetFields(outFields);
};
static ::String sStaticFields[] = {
String(null()) };
#if HXCPP_SCRIPTABLE
static hx::StorageInfo *sMemberStorageInfo = 0;
#endif
static ::String sMemberFields[] = {
String(null()) };
static void sMarkStatics(HX_MARK_PARAMS) {
HX_MARK_MEMBER_NAME(__ASSET__fonts_original_me_ttf_obj::__mClass,"__mClass");
};
#ifdef HXCPP_VISIT_ALLOCS
static void sVisitStatics(HX_VISIT_PARAMS) {
HX_VISIT_MEMBER_NAME(__ASSET__fonts_original_me_ttf_obj::__mClass,"__mClass");
};
#endif
Class __ASSET__fonts_original_me_ttf_obj::__mClass;
void __ASSET__fonts_original_me_ttf_obj::__register()
{
hx::Static(__mClass) = hx::RegisterClass(HX_CSTRING("__ASSET__fonts_original_me_ttf"), hx::TCanCast< __ASSET__fonts_original_me_ttf_obj> ,sStaticFields,sMemberFields,
&__CreateEmpty, &__Create,
&super::__SGetClass(), 0, sMarkStatics
#ifdef HXCPP_VISIT_ALLOCS
, sVisitStatics
#endif
#ifdef HXCPP_SCRIPTABLE
, sMemberStorageInfo
#endif
);
}
void __ASSET__fonts_original_me_ttf_obj::__boot()
{
}
| [
"daphneipp@gmail.com"
] | daphneipp@gmail.com |
aba50f9923bd27bc485aa59ba19354a77ae04c19 | b4653f7abdce5edf66585d8320017020ff878832 | /main.cpp | a3f0b345c6c3c2f3793bbc472c138b7a236961e7 | [] | no_license | f43792/cppRay | c4e3a3b95e1fe2d50b8dd0cd407cf9c512a83def | a4e6b09bc239159f866cdd5bc0594e660ba4bdcf | refs/heads/master | 2020-08-28T13:25:19.873077 | 2019-11-10T18:09:25 | 2019-11-10T18:09:25 | 217,712,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,076 | cpp | #include <iostream>
#include <vector>
#include <sstream>
#include <ostream>
#include <chrono>
#include <iomanip>
#include <cmath>
#include "pixelinfo.h"
#include "ppmutil.cpp"
#include "vect.h"
#include "ray.h"
#include "camera.h"
// #include "color.h"
#include "light.h"
#include "object.h"
#include "source.h"
#include "sphere.h"
#include "plane.h"
using namespace std;
bool _DEBUG_ = false;
void fillBase(int w, int h, int m, PixelInfo *pixels) {
int idx;
int width = w;
int height = h;
int margin = m;
int wm = width - margin;
int wh = height - margin;
for(int x = 0; x < width; x++){
for(int y = 0; y < height; y++){
idx = y * width + x;
if ((x > margin && x < width-margin) && (y > margin && y < height-margin)) {
pixels[idx].r = (wm / 32) * (x / (wm / 8));
pixels[idx].g = (wh / 32) * (y / (wh / 8));
pixels[idx].b = 176;
} else {
pixels[idx].r = 255;
pixels[idx].g = 255;
pixels[idx].b = 255;
}
}
}
}
int winningObjectIndex(vector<double> object_intersections) {
// return the index of the intersection
int idx_min_value;
// Prevent unnessessary calculations
if (object_intersections.size() == 0) {
// if there no intersections
if (_DEBUG_) {std::cout << "no intersection" << endl; }
return -1;
} else if (object_intersections.size() == 1) {
// Just one intersection
if (object_intersections.at(0) > 0) {
// If that intersection is greather than 0, them it's
if (_DEBUG_) {std::cout << "only value is zero" << endl; }
return 0;
} else {
// Otherwise the only value is negative
if (_DEBUG_) {std::cout << "only value is negative" << endl; }
return -1;
}
} else {
// otherwise there is more than one intersection
// Verify the maximum value in the vector
double max_int_value = 0;
for (int i = 0; i < object_intersections.size(); i++) {
if (max_int_value < object_intersections.at(i)) {
max_int_value = object_intersections.at(i);
}
}
// Then starting from the maximum value, find the minimum
if (max_int_value > 0){
// Only positive intersections
for (int idx = 0; idx < object_intersections.size(); idx++) {
if (object_intersections.at(idx) > 0 && object_intersections.at(idx) <= max_int_value) {
max_int_value = object_intersections.at(idx);
idx_min_value = idx;
}
}
return idx_min_value;
} else {
// All intersections are negative
if (_DEBUG_) {cout << "all intersections are negative" << endl; }
return -1;
}
}
}
string showVect(Vect &vect) {
std::ostringstream result;
string dtab = "\t\t";
result << "Vector: " << vect.getX() << dtab << vect.getY() << dtab << vect.getZ() << endl;
return result.str();
}
Color getColorAt( Vect intersect_position,
Vect intersecting_ray_direction,
vector<Object*> objects, //Array of objects in the scene
int idx_objs,
vector <Source*> lights, //Array of lights in the scene
double accuracy,
double ambiant_light) {
//Color result;
//Store current object pointer
Object * curr_object = objects.at(idx_objs);
///Color object_color = curr_object->getColor();
Color object_color = objects.at(idx_objs)->getColor();
///Vect object_normal = curr_object->getNormalAt(intersect_position);
Vect object_normal = objects.at(idx_objs)->getNormalAt(intersect_position);
// if (object_color.getSpecial() == 2) {
// // checkered/tile floor pattern
// int square = (int)floor(intersect_position.getX()) + (int)floor(intersect_position.getZ());
// if ((square % 2) == 0) {
// // black tile
// object_color.setRed(0);
// object_color.setGreen(0);
// object_color.setBlue(0);
// }
// else {
// // white tile
// object_color.setRed(1);
// object_color.setGreen(1);
// object_color.setRed(1);
// }
// }
Color final_color = object_color.colorScalar(ambiant_light);
for (int light_index = 0; light_index < lights.size(); light_index++) {
Source * current_light = lights.at(light_index);
Vect light_direction = current_light->getPosition().add(intersect_position.negative()).normalize();
// std::cout << "X: " << light_direction.getX() << " Y: " << light_direction.getY() << " Z: " << light_direction.getZ() << std::endl;
float cosine_angle = object_normal.dotProduct(light_direction); //angle between light source and normal vector of object
if (cosine_angle > 0) {
bool shadowed = false; //by default value
Vect distance_to_light = current_light->getPosition().add(intersect_position.negative()).normalize();
float distance_to_light_magnitude = distance_to_light.magnitude();
Ray shadow_ray(intersect_position, current_light->getPosition().add(intersect_position.negative()).normalize());
vector<double> secondary_intersections;
for (int curr_object_idx = 0; curr_object_idx < objects.size() && shadowed == false; curr_object_idx++) {
secondary_intersections.push_back(objects.at(curr_object_idx)->findIntersection(shadow_ray));
}
/////////////////////////////////////////////////////
for (int sec_int_idx = 0; sec_int_idx < secondary_intersections.size(); sec_int_idx++) {
if (secondary_intersections.at(sec_int_idx) > accuracy) {
if (secondary_intersections.at(sec_int_idx) <= distance_to_light_magnitude) {
shadowed = true;
}
}
//break;
}
/////////////////////////////////////////////////////
if (shadowed == false) {
//final_color = final_color.colorAdd(winning_object_color.colorMultiply(light_sources.at(light_index)->getLightColor()).colorScalar(cosine_angle));
final_color = final_color.Add(object_color.Mult(current_light->getColor()).colorScalar(cosine_angle));
// } else {
// final_color = final_color.Sub(object_color.Mult(current_light->getColor()).colorScalar(-cosine_angle));
// }
if (object_color.getSpecial() > 0 && object_color.getSpecial() < 1.0) {
double dot1 = object_normal.dotProduct(intersecting_ray_direction.negative());
Vect scalar1 = object_normal.mult(dot1);
Vect add1 = scalar1.add(intersecting_ray_direction);
Vect scalar2 = add1.mult(2);
Vect add2 = intersecting_ray_direction.negative().add(scalar2);
Vect reflection_direction = add2.normalize();
double specular = reflection_direction.dotProduct(light_direction);
if(specular > 0) {
specular = pow(specular, 10);
final_color = final_color.Add(current_light->getColor().colorScalar(specular*object_color.getSpecial()));
}
}
}
}
}
return final_color.clip();//result;
}
void render(int w, int h, Camera cam, PixelInfo *pixels, vector<Object*> objects, vector<Source*> lights) {
int idx;
int width_counter = 0;
int width = w;
int height = h;
double aspectRadio = (double)width / (double)height;
double xamnt, yamnt;
double ambiant_light = 0.2;
double accuracy = 0.01;
// std::cout << "Objects to render: " << objects.size() << endl;
for(int y = 0; y < height; y++){ //for height
for(int x = 0; x < width; x++){ //for width
idx = y * width + x;
// No anti-aliasing for now
if (width > height) {
// Img wider than tall
xamnt = ((x+0.5)/width) * aspectRadio - (((width-height)/(double)height)/2); ///ok
yamnt = ((height - y) + 0.5)/height; ///ok
} else if(height > width) {
// Img taller than wide
xamnt = (x + 0.5) / width; ///ok
yamnt = (((height - y) + 0.5) / height)/aspectRadio - (((height - width)/(double)width) / 2); ///ok
} else {
// Square image
xamnt = (x + 0.5)/width; ///ok
yamnt = ((height - y) + 0.5)/height; ///ok
}
Vect cam_ray_origin = cam.getPosition();
Vect cam_dir = cam.getDirection();
Vect cam_right = cam.getRight();
Vect cam_down = cam.getDown();
//Vect cam_ray_direction = cam.getDirection().add(cam.getRight().mult(xamnt - 0.5).add(cam.getDown().mult(yamnt - 0.5))).normalize();
Vect cam_ray_direction = cam_dir.add(cam_right.mult(xamnt - 0.5).add(cam_down.mult(yamnt - 0.5))).normalize();
//cout << showVect(cam_ray_direction);
Ray cam_ray(cam_ray_origin, cam_ray_direction);
vector<double> intersections;
for (int i = 0; i < objects.size(); i++) {
// Array (or vector in cpp) with all intersections found
intersections.push_back(objects.at(i)->findIntersection(cam_ray));
}
// cout << intersections.size();
int idx_objs_winning = winningObjectIndex(intersections);
if (_DEBUG_){
width_counter++;
if (width_counter == width) {
width_counter = 0;
std::cout << endl;
} else {
if (idx_objs_winning == -1) std::cout << "x";
else if(idx_objs_winning == 0) std::cout << "o";
else std::cout << ".";
}
}
if (idx_objs_winning == -1) {
// Default (not intersect) color
pixels[idx].r = 0.0;//0.047;
pixels[idx].g = 0.0;//0.238;
pixels[idx].b = 0.0;//0.723;
} else {
// Hit a object. Get color from it.
if (intersections.at(idx_objs_winning) > accuracy) {
// Determine the position and direction of intersection point
Vect intersect_position = cam_ray_origin.add(cam_ray_direction.mult(intersections.at(idx_objs_winning)));
Vect intersecting_ray_direction = cam_ray_direction;
// Color intersection_color = objects.at(idx_objs_winning)->getColor();
Color intersection_color = getColorAt(intersect_position,
intersecting_ray_direction,
objects, //Array of objects in the scene
idx_objs_winning,
lights, //Array of lights in the scene
accuracy,
ambiant_light);
pixels[idx].r = intersection_color.getRed();
pixels[idx].g = intersection_color.getGreen();
pixels[idx].b = intersection_color.getBlue();
}
//}
}
}
}
}
int main(int argc, char *argv[]){
int width;//640; //1920 / 2;
int height;//480; //1080 / 2;//static_cast<int>(width * 0.818);
if (_DEBUG_) {
width = 128;//640; //1920 / 2;
height = 64;//480; //1080 / 2;//static_cast<int>(width * 0.818);
} else {
int multiplier = 1;
bool big = true;
if (big == true){
width = 1920*multiplier;//640; //1920 / 2;
height = 1080*multiplier;//480; //1080 / 2;//static_cast<int>(width * 0.818);
} else {
width = 640*multiplier;//640; //1920 / 2;
height = 480*multiplier;//480; //1080 / 2;//static_cast<int>(width * 0.818);
}
}
int margin = 32;
std::cout << "\nRendering [" << width << ", " << height << "]";// << "]...";
if (_DEBUG_) {std::cout << endl;}
else {std::cout << "..."; }
std::cout.flush();
// int n = width * height;
PixelInfo *pixels = new PixelInfo[width * height];
Vect O(0, 0, 0); ///ok
Vect X(1, 0, 0); ///ok
Vect Y(0, 1, 0); ///ok
Vect Z(0, 0, 1); ///ok
Vect look_at(0.0, 0.0, 0.0); ///ok
Vect campos = Vect(-3.0, 1.5, -4.0); ///ok
Vect diff_btw(campos.getX() - look_at.getX(), campos.getY() - look_at.getY(), campos.getZ() - look_at.getZ()); ///ok
Vect camdir = diff_btw.negative().normalize(); ///ok
Vect camright = Y.crossProduct(camdir).normalize(); ///ok
Vect camdown = camright.crossProduct(camdir); ///ok
Camera scene_cam(campos, camdir, camright, camdown); ///ok
Color white_light (0.9, 0.9, 0.9, 0.0); ///ok
Color pretty_green (0.35, 0.85, 0.35, 0.3); ///ok
Color floor_color (0.75, 0.75, 0.8, 0); ///ok
Color gray (0.5, 0.5, 0.5, 0.0); ///ok
Color black (0.0, 0.0, 0.0, 0.0); ///ok
Light scene_light (Vect(7, 10, -10), white_light); ///ok
Light scene_light_2 (Vect(-1, 13, 5), white_light); ///ok
vector<Source*> scene_lights;
scene_lights.push_back(dynamic_cast<Source*>(&scene_light));
scene_lights.push_back(dynamic_cast<Source*>(&scene_light_2));
// Scene objects
Sphere scene_sphere_2 (Vect( 2.0, -0.5, -1.5), 0.5, Color(0.85, 0.35, 0.35, 0.1)); ///ok
Sphere scene_sphere_1 (Vect(0, 0, 0), 1, Color(0.35, 0.85, 0.35, 0.5)); ///ok
Sphere scene_sphere_3 (Vect(-2.2, -0.5, 1.2), 0.5, Color(0.35, 0.35, 0.85, 0.9)); ///ok
Plane scene_plane (Vect(0, 1, 0), -1, floor_color); // -1 is the distance (using normal) from the scene center.
vector<Object*> scene_objects;
scene_objects.push_back(dynamic_cast<Object*>(&scene_sphere_1));
scene_objects.push_back(dynamic_cast<Object*>(&scene_sphere_2));
scene_objects.push_back(dynamic_cast<Object*>(&scene_sphere_3));
scene_objects.push_back(dynamic_cast<Object*>(&scene_plane));
// Stop here!
// https://youtu.be/vE5c2hTRLZM?list=PLHm_I0tE5kKPPWXkTTtOn8fkcwEGZNETh&t=4923
//fillBase(width, height, margin, pixels);
auto timeBegin = std::chrono::high_resolution_clock::now();
render(width, height, scene_cam, pixels, scene_objects, scene_lights);
auto timeEnd = std::chrono::high_resolution_clock::now();
auto timeDelta = std::chrono::duration_cast<std::chrono::microseconds>( timeEnd - timeBegin).count();
//std::cout << std::setfill('0') << std::setw(3) << i << "] ";
std::cout << "OK\n" << endl;
std::cout << fixed << setprecision(8);
std::cout << "Time by pixel: " << timeDelta / 1000000.0 / (double)(width * height) << 's' << endl;
std::cout << fixed << setprecision(4);
std::cout << "Total time: " << timeDelta / 1000000.0 << 's' << endl;
std::cout.flush();
saveppm("scene.ppm", width, height, pixels);
// Tests playground
bool _PLAYGROUND_ = false;
if (_PLAYGROUND_) {
double_t golden_ratio = (sqrt(5)+1)/2;
Color c(0.94, golden_ratio, M_PI, M_PI / golden_ratio);
double * res;
res = c.getAll();
std::cout << fixed << setprecision(18);
std::cout << res[0] << " : " << res[1] << " : " << res[2] << " : " << res[3] << " : " << endl;
}
return 0;
} | [
"f43792@gmail.com"
] | f43792@gmail.com |
3d88f976767f99465d716f17a0fa61b6621be91b | e758ce86e0144dd71f1a96187536c62127a44104 | /ocr-circled-digits-batch/includes/Utility.h | 5a334d993cac64cd95a9ce2af5c6b1b0ea7504d9 | [
"Apache-2.0"
] | permissive | renweizhukov/ocr | f0eb5588da883b4d443ee15b1c796a1138a6e0d8 | 1958dbbcc282503e9f7cdee506f3df3ceb28275d | refs/heads/master | 2021-08-28T13:22:17.561983 | 2017-12-12T09:20:55 | 2017-12-12T09:20:55 | 103,595,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 749 | h | /*
* Utility.h
*
* Created on: Dec 6, 2017
* Author: renwei
*/
#ifndef INCLUDES_UTILITY_H_
#define INCLUDES_UTILITY_H_
#include <sys/types.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>
#include <cstdio>
#include <iostream>
#include <string>
#include <vector>
#include <opencv2/core.hpp>
#include <boost/program_options.hpp>
class Utility
{
public:
static int GetDirFiles(const std::string& dir, std::vector<std::string>& files);
static void SegmentFullFilename(
const std::string& fullFilename,
std::string& dir,
std::string& filename,
std::string& extension);
static std::string CvType2Str(const int type);
};
#endif /* INCLUDES_UTILITY_H_ */
| [
"renwei@smartconn.cc"
] | renwei@smartconn.cc |
8dd3b7e5c10ff02dbb8003051d55dbc50602a751 | 8e480c1184e8627b677fd07b819b515bddec759d | /main.cpp | 38667090ba9c00a22d065348e8ea0714adf7f3b1 | [] | no_license | dj-boy/VLPGraber | 07711747ad3b18fa77bf40e14ff252548d8eae1a | 172d4db3c0c2149b2fe76c97cca863021ce5a014 | refs/heads/master | 2021-10-10T16:34:22.138822 | 2019-01-14T08:38:09 | 2019-01-14T08:38:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | cpp | #include <iostream>
#include <sstream>
#include <fstream>
using namespace std;
#include "VLPGrabber.h"
void pointcloudProcess(std::vector<Point> ¤t_xyzi)
{
stringstream filename;
static int sweep_counter;
filename<<"pointcloud"<<++sweep_counter<<".bin";
ofstream file;
file.open(filename.str().c_str(),ios::binary);
file.write((char*)¤t_xyzi[0],current_xyzi.size()*sizeof(Point));
cout<<"get a pointcloud"<<endl;
}
int main()
{
VLPGrabber grabber;
grabber.registeCb(pointcloudProcess);
grabber.start();
int i;
std::cin>>i;
return 0;
}
| [
"liuchen_sia@foxmail.com"
] | liuchen_sia@foxmail.com |
d9d70a60756d2672811def9c202353d23bfd8050 | 22eb20dfa5bf05630d398829e72d971f7fad38ac | /buttongroup/main.cpp | 12fee76b2ac56310840dbb1437eeff2757c690cd | [] | no_license | zhoajianjun/QT | 634e984f365679e21047f59817ee5f46ca9d25c9 | 32e9362b088ffb150fe2fda036d8472edb4a1346 | refs/heads/master | 2016-09-12T21:05:12.316379 | 2016-04-25T06:40:06 | 2016-04-25T06:40:06 | 56,022,827 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,505 | cpp |
#include <QApplication>
#include <QMainWindow>
#include <QHBoxLayout>
#include <QPushButton>
#include <QButtonGroup>
#include <QVector>
#include "mybuttongroup.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QMainWindow *window = new QMainWindow();
QVector<QPushButton*> btn;
window->setWindowTitle(QString::fromUtf8("MainWindow"));
window->resize(250, 250);
QWidget *centralWidget = new QWidget(window);
centralWidget->setFixedSize(400,300);
//Create QPushButtons
QPushButton* button1 = new QPushButton("Button 1" , centralWidget);
QPushButton* button2 = new QPushButton("Button 2" , centralWidget);
QPushButton* button3 = new QPushButton("Button 3" , centralWidget);
QPushButton* button4 = new QPushButton("Button 4" , centralWidget);
button1->setCheckable(true);
button2->setCheckable(true);
button3->setCheckable(true);
button4->setCheckable(true);
btn.append(button1);
btn.append(button2);
btn.append(button3);
btn.append(button4);
QHBoxLayout* layout = new QHBoxLayout(centralWidget);
for(int i=0;i<btn.count();++i)
{
layout->addWidget(btn.at(i));
}
//Create QButonGroup and add Buttons here
//Adding Buttons into QButtonGroup does not change anything visually
//QButtonGroup is just a logical grouping
QButtonGroup* group = new MyButtonGroup(centralWidget);
for(int i=0;i<btn.count();++i)
{
group->addButton(btn.at(i));
}
group->setExclusive(true);
window->setCentralWidget(centralWidget);
window->show();
return app.exec();
}
| [
"jianjun.zhao@bqvision.com"
] | jianjun.zhao@bqvision.com |
85641e75bf44525af40965d64049433d75d90d11 | a0575c192547c9178f745fe2dca90e9010dad623 | /WordsPlusFree/src/UpdateProfile.cpp | 79e8b281de48e74c5ace29ded752f96148fd6f2d | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | jasonicarter/wordsplus | 4a1b6170573fe26100344ab04c423994399ce63f | f42247587935bcd9a359257c58deb5534d4e63b1 | refs/heads/master | 2016-08-05T01:11:34.362474 | 2014-09-30T01:46:28 | 2014-09-30T01:46:28 | 24,594,114 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,183 | cpp | /*
* Copyright (c) 2012 Jason I. Carter
*
* 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 "UpdateProfile.hpp"
UpdateProfile::UpdateProfile(bb::platform::bbm::UserProfile* userProfile) :
m_userProfile(userProfile)
{
}
void UpdateProfile::saveStatus() {
QString statusMessageString = "I'm playing WordsPlus";
bool showBusy = true;
m_userProfile->requestUpdateStatus(
(showBusy ?
bb::platform::bbm::UserStatus::Busy :
bb::platform::bbm::UserStatus::Available),
statusMessageString);
}
void UpdateProfile::savePersonalMessage() {
QString personalMessageString = "I love WordsPlus!";
m_userProfile->requestUpdatePersonalMessage(personalMessageString);
}
| [
"jason.ian.carter@gmail.com"
] | jason.ian.carter@gmail.com |
e85abad88293e0c9c0b7ea048df3fc8d2b22a289 | 697d43b83e38562b41a970147ba113a243754447 | /src/Token.h | e54a5b08b86f48c20a4ee7b37d89c179964c9774 | [] | no_license | DaoyuT/rpal | 7a8f01daba54ae24379c944cf65f317d0d397455 | c42dda96efbc0f1b3212c8ba41253fd70b3e30a9 | refs/heads/master | 2021-06-01T06:17:10.578763 | 2016-04-04T20:09:31 | 2016-04-04T20:09:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 624 | h | #include "header.h"
using namespace std;
class Token {
public:
static const int IDENTIFIER = 0;
static const int STRING = 1;
static const int BOOL = 2;
static const int NIL = 3;
static const int DUMMY = 4;
static const int INTEGER = 5;
static const int OPERATOR = 6;
static const int PUNCTION = 7;
static const int KEYWORD = 8;
static const int ENDOFFILE = 9;
static const vector<string> TYPE_NAMES;
int startLine;
int startCol;
int type;
string content;
Token();
Token(int sL, int sC, int type, string content);
~Token();
void print();
string toString();
bool equals(int type, string content);
}; | [
"dytu0316@gmail.com"
] | dytu0316@gmail.com |
b86aa53651566253460605dc08e549dae000ce7c | f88777eea48fa72d26518325d99e2fa022895c70 | /aoj/alds-1-10-c.cpp | 85ec24c0116963ab5aee14e56ae9e4618c9a5e40 | [] | no_license | komukomo/competitive-programming | c0797e138c592121223676030f81e765b893f378 | 5c7e9462b0e5035c3a8a27007c4bcdfd55bf390c | refs/heads/master | 2021-01-18T15:37:07.313730 | 2017-03-30T05:22:37 | 2017-03-30T05:22:37 | 86,662,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 839 | cpp | #include <algorithm>
#include <iostream>
#include <string>
using namespace std;
#define MAX 1000
int solve(string x, string y) {
int xl = x.size();
int yl = y.size();
int lcs[MAX + 1][MAX + 1];
int i, j;
for (i = 0; i < xl; i++)
lcs[i][0] = 0;
for (j = 0; j < yl; j++)
lcs[0][j] = 0;
// shift
x = " " + x;
y = " " + y;
int maxlcs = 0;
for (i = 1; i <= xl; i++) {
for (j = 1; j <= yl; j++) {
if (x[i] == y[j]) {
lcs[i][j] = lcs[i - 1][j - 1] + 1;
} else {
int a = lcs[i][j - 1];
int b = lcs[i - 1][j];
lcs[i][j] = max(a, b);
}
maxlcs = max(maxlcs, lcs[i][j]);
}
}
return maxlcs;
}
int main() {
string s1, s2;
int n;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> s1;
cin >> s2;
cout << solve(s1, s2) << endl;
}
}
| [
"komukomo@users.noreply.github.com"
] | komukomo@users.noreply.github.com |
554469ccbe4a7a0092b27409adaec948e8b5e76c | ca47def6769926dd466de3f3be016dbb3b00e06d | /src/Material.cpp | 53b5df60aea7c0732ee7a304d1e1a0f2bb5518f0 | [] | no_license | JordanHeinrichs/RayTracer | f52182c8c0e60ed60bc0b0020c985a5abe302b9b | 3703e30bbbdfdecdc76ac723d10e458e96674352 | refs/heads/master | 2016-08-12T19:56:08.245048 | 2015-12-07T08:48:42 | 2015-12-07T08:48:42 | 49,337,004 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 666 | cpp | #include "Material.h"
Material::Material()
{
}
Material::Material(const Color& color,
double shininess)
: specular_(color)
, diffuse_(color)
, ambient_(color)
, shininess_(shininess)
{
}
Material::Material(const Color& specular,
const Color& diffuse,
const Color& ambient,
double shininess)
: specular_(specular)
, diffuse_(diffuse)
, ambient_(ambient)
, shininess_(shininess)
{
}
Material::~Material()
{
}
Color Material::specular() const
{
return specular_;
}
Color Material::diffuse() const
{
return diffuse_;
}
Color Material::ambient() const
{
return ambient_;
}
double Material::shininess() const
{
return shininess_;
}
| [
"mail@jordanheinrichs.com"
] | mail@jordanheinrichs.com |
02a33993ea719cd30f956bc99880acfca95c663d | e104892af303d85c5e661d099b500dc1e35b882d | /Sample11_2/app/src/main/cpp/bndev/MyVulkanManager.h | 5e73e820729729ecc79b301f24b1ec5a4620e9eb | [
"Unlicense"
] | permissive | siwangqishiq/Vulkan_Develpment_Samples | 624900dabaca75c9ad21ef5a1ee5af6709dcc9a8 | 409c973e0b37086c854cde07b1e620c3d8d9f15d | refs/heads/master | 2023-08-16T04:13:54.777841 | 2021-10-14T06:53:11 | 2021-10-14T06:53:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,685 | h | #ifndef VULKANEXBASE_MYVULKANMANAGER_H
#define VULKANEXBASE_MYVULKANMANAGER_H
#include <android_native_app_glue.h>
#include <vector>
#include <vulkan/vulkan.h>
#include "../vksysutil/vulkan_wrapper.h"
#include <vector>
#include "mylog.h"
#include "TexDrawableObject.h"
#include "ShaderQueueSuit_CommonTex.h"
#define FENCE_TIMEOUT 100000000
class MyVulkanManager
{
public:
static android_app* Android_application;
static bool loopDrawFlag;
static std::vector<const char *> instanceExtensionNames;
static VkInstance instance;
static uint32_t gpuCount;
static std::vector<VkPhysicalDevice> gpus;
static uint32_t queueFamilyCount;
static std::vector<VkQueueFamilyProperties> queueFamilyprops;
static uint32_t queueGraphicsFamilyIndex;
static VkQueue queueGraphics;
static uint32_t queuePresentFamilyIndex;
static std::vector<const char *> deviceExtensionNames;
static VkDevice device;
static VkCommandPool cmdPool;
static VkCommandBuffer cmdBuffer;
static VkCommandBufferBeginInfo cmd_buf_info;
static VkCommandBuffer cmd_bufs[1];
static VkSubmitInfo submit_info[1];
static uint32_t screenWidth;
static uint32_t screenHeight;
static VkSurfaceKHR surface;
static std::vector<VkFormat> formats;
static VkSurfaceCapabilitiesKHR surfCapabilities;
static uint32_t presentModeCount;
static std::vector<VkPresentModeKHR> presentModes;
static VkExtent2D swapchainExtent;
static VkSwapchainKHR swapChain;
static uint32_t swapchainImageCount;
static std::vector<VkImage> swapchainImages;
static std::vector<VkImageView> swapchainImageViews;
static VkFormat depthFormat;
static VkFormatProperties depthFormatProps;
static VkImage depthImage;
static VkPhysicalDeviceMemoryProperties memoryroperties;
static VkDeviceMemory memDepth;
static VkImageView depthImageView;
static VkSemaphore imageAcquiredSemaphore;
static uint32_t currentBuffer;
static VkRenderPass renderPass;
static VkClearValue clear_values[2];
static VkRenderPassBeginInfo rp_begin;
static VkFence taskFinishFence;
static VkPresentInfoKHR present;
static VkFramebuffer* framebuffers;
static ShaderQueueSuit_CommonTex* sqsCT;
static TexDrawableObject* texTri;
static float yAngle;
static float zAngle;
static float angleSpan;//本帧扭曲总角度
static float yStart;//Y坐标起始点
static float ySpan;//Y坐标总跨度
static float angleStep;//角度步进
static void init_vulkan_instance();
static void destroy_vulkan_instance();
static void enumerate_vulkan_phy_devices();
static void create_vulkan_devices();
static void destroy_vulkan_devices();
static void create_vulkan_CommandBuffer();
static void destroy_vulkan_CommandBuffer();
static void create_vulkan_swapChain();
static void destroy_vulkan_swapChain();
static void create_vulkan_DepthBuffer();
static void destroy_vulkan_DepthBuffer();
static void create_render_pass();
static void destroy_render_pass();
static void init_queue();
static void create_frame_buffer();
static void destroy_frame_buffer();
static void createDrawableObject();
static void destroyDrawableObject();
static void drawObject();
static void doVulkan();
static void init_texture();
static void destroy_textures();
static void initPipeline();
static void destroyPipeline();
static void createFence();
static void destroyFence();
static void initPresentInfo();
static void initMatrix();
static void flushUniformBuffer();
static void flushTexToDesSet();
};
#endif
| [
"709165253@qq.com"
] | 709165253@qq.com |
0eaaef75a37ce75ff48f18d2e4da9faa76f9668f | 4ccc93c43061a18de9064569020eb50509e75541 | /chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer_win.cc | 65ee030b35aacc77ea2eb2b11f5c947949881eeb | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | SaschaMester/delicium | f2bdab35d51434ac6626db6d0e60ee01911797d7 | b7bc83c3b107b30453998daadaeee618e417db5a | refs/heads/master | 2021-01-13T02:06:38.740273 | 2015-07-06T00:22:53 | 2015-07-06T00:22:53 | 38,457,128 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,359 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h"
#include "base/file_version_info.h"
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/install_verification/win/module_info.h"
#include "chrome/browser/install_verification/win/module_verification_common.h"
#include "chrome/browser/safe_browsing/incident_reporting/blacklist_load_incident.h"
#include "chrome/browser/safe_browsing/incident_reporting/incident_receiver.h"
#include "chrome/browser/safe_browsing/path_sanitizer.h"
#include "chrome/browser/safe_browsing/safe_browsing_service.h"
#include "chrome/common/safe_browsing/binary_feature_extractor.h"
#include "chrome/common/safe_browsing/csd.pb.h"
#include "chrome_elf/blacklist/blacklist.h"
namespace safe_browsing {
// Retrieves the set of blacklisted modules that are loaded in the process.
// Returns true if successful, false otherwise.
bool GetLoadedBlacklistedModules(std::vector<base::string16>* module_names) {
DCHECK(module_names);
std::set<ModuleInfo> module_info_set;
if (!GetLoadedModules(&module_info_set))
return false;
std::set<ModuleInfo>::const_iterator module_iter(module_info_set.begin());
for (; module_iter != module_info_set.end(); ++module_iter) {
base::string16 module_file_name(base::StringToLowerASCII(
base::FilePath(module_iter->name).BaseName().value()));
if (blacklist::GetBlacklistIndex(module_file_name.c_str()) != -1) {
module_names->push_back(module_iter->name);
}
}
return true;
}
void VerifyBlacklistLoadState(scoped_ptr<IncidentReceiver> incident_receiver) {
std::vector<base::string16> module_names;
if (GetLoadedBlacklistedModules(&module_names)) {
PathSanitizer path_sanitizer;
const bool blacklist_intialized = blacklist::IsBlacklistInitialized();
for (const auto& module_name : module_names) {
scoped_ptr<ClientIncidentReport_IncidentData_BlacklistLoadIncident>
blacklist_load(
new ClientIncidentReport_IncidentData_BlacklistLoadIncident());
const base::FilePath module_path(module_name);
// Sanitized path.
base::FilePath sanitized_path(module_path);
path_sanitizer.StripHomeDirectory(&sanitized_path);
blacklist_load->set_path(base::WideToUTF8(sanitized_path.value()));
// Digest.
scoped_refptr<safe_browsing::BinaryFeatureExtractor>
binary_feature_extractor(new BinaryFeatureExtractor());
base::TimeTicks start_time = base::TimeTicks::Now();
binary_feature_extractor->ExtractDigest(module_path,
blacklist_load->mutable_digest());
UMA_HISTOGRAM_TIMES("SBIRS.BLAHashTime",
base::TimeTicks::Now() - start_time);
// Version.
scoped_ptr<FileVersionInfo> version_info(
FileVersionInfo::CreateFileVersionInfo(module_path));
if (version_info) {
std::wstring file_version = version_info->file_version();
if (!file_version.empty())
blacklist_load->set_version(base::WideToUTF8(file_version));
}
// Initialized state.
blacklist_load->set_blacklist_initialized(blacklist_intialized);
// Signature.
start_time = base::TimeTicks::Now();
binary_feature_extractor->CheckSignature(
module_path, blacklist_load->mutable_signature());
UMA_HISTOGRAM_TIMES("SBIRS.BLASignatureTime",
base::TimeTicks::Now() - start_time);
// Image headers.
if (!binary_feature_extractor->ExtractImageFeatures(
module_path,
BinaryFeatureExtractor::kDefaultOptions,
blacklist_load->mutable_image_headers(),
nullptr /* signed_data */)) {
blacklist_load->clear_image_headers();
}
// Send the report.
incident_receiver->AddIncidentForProcess(
make_scoped_ptr(new BlacklistLoadIncident(blacklist_load.Pass())));
}
}
}
} // namespace safe_browsing
| [
"g4jc@github.com"
] | g4jc@github.com |
5b3c1dacbe96eaa337a1ea376695db649db0ce78 | cd3ccc969d6e31dce1a0cdc21de71899ab670a46 | /agp-7.1.0-alpha01/tools/base/profiler/native/perfd/samplers/network_type_sampler_test.cc | 166a00767067be597baf2182b7facdc676c09919 | [
"Apache-2.0"
] | permissive | jomof/CppBuildCacheWorkInProgress | 75e76e1bd1d8451e3ee31631e74f22e5bb15dd3c | 9e3475f6d94cb3239f27ed8f8ee81b0abde4ef51 | refs/heads/main | 2023-05-28T19:03:16.798422 | 2021-06-10T20:59:25 | 2021-06-10T20:59:25 | 374,736,765 | 0 | 1 | Apache-2.0 | 2021-06-07T21:06:53 | 2021-06-07T16:44:55 | Java | UTF-8 | C++ | false | false | 1,929 | cc | /*
* Copyright (C) 2019 The Android Open Source Project
*
* 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 "network_type_sampler.h"
#include <gtest/gtest.h>
#include <memory>
#include "daemon/daemon.h"
#include "perfd/network/fake_network_type_provider.h"
#include "utils/daemon_config.h"
#include "utils/fake_clock.h"
#include "utils/file_cache.h"
#include "utils/fs/memory_file_system.h"
using profiler::proto::Event;
using profiler::proto::NetworkTypeData;
namespace profiler {
TEST(NetworkTypeSamplerTest, NetworkTypeFromProvider) {
FakeClock clock;
DaemonConfig config(proto::DaemonConfig::default_instance());
FileCache file_cache(std::unique_ptr<FileSystem>(new MemoryFileSystem()),
"/");
EventBuffer event_buffer(&clock);
Daemon daemon(&clock, &config, &file_cache, &event_buffer);
int32_t pid = 1;
Session session(0, pid, 0, &daemon);
auto network_type_mobile =
std::make_shared<FakeNetworkTypeProvider>(NetworkTypeData::MOBILE);
NetworkTypeSampler sampler(session, &event_buffer, network_type_mobile);
sampler.Sample();
auto groups = event_buffer.Get(Event::NETWORK_TYPE, 0, LLONG_MAX);
ASSERT_EQ(1, groups.size());
ASSERT_EQ(1, groups[0].events().size());
auto event = groups[0].events(0);
EXPECT_TRUE(event.has_network_type());
EXPECT_EQ(NetworkTypeData::MOBILE, event.network_type().network_type());
}
} // namespace profiler | [
"jomof@google.com"
] | jomof@google.com |
eeb6537424dd1c46f355e9238c1724c3e1fded08 | 64fb6bdf172de2f19465417b96d76990a94d1eb8 | /TASK3/TASK3/movie.h | c17bc531f5aca9c485916ab04952254f2a50b86f | [] | no_license | BrandonOsas/C-Development | 5fe4e987d7a7d0d56fa0ce6d0b71b55b29fb6099 | 54c48f68d37594791100457a1cd983a8793190ff | refs/heads/master | 2021-01-17T14:33:10.906461 | 2017-10-11T11:26:56 | 2017-10-11T11:26:56 | 84,087,854 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 369 | h | #pragma once
#include <string>
#include "userRating.h"
#include "userComment.h"
using namespace std;
class movie
{
private:
string title;
int year;
string desc;
string genre;
userRating UR[100];
userComment UC[100];
public:
movie(string title, int year, string genre);
void addmovieRating(int vote);
void addcomment(string comment);
}; | [
"brandon2.egonmwan@live.uwe.ac.uk"
] | brandon2.egonmwan@live.uwe.ac.uk |
def77ee13ecc0d6d5c290bd9868a3fce9e1ccaf7 | feb941d499e01917ed1065624813ece36ee3753c | /src/game/game_listener.cc | 6beb358103bff2a4a479dba7bd203a354bdcb62d | [
"BSD-3-Clause"
] | permissive | cpatrasciuc/nine-men-morris | 5212252733c5104e0149983d904a86259f381fc3 | acf6ba0aec0230faf617cda1c4ce6718ee3a825e | refs/heads/master | 2016-09-09T18:54:40.089624 | 2013-12-30T20:14:52 | 2013-12-30T20:14:52 | 5,828,379 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 603 | cc | // Copyright (c) 2013 Cristian Patrasciuc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "game/game_listener.h"
#include "game/piece_color.h"
#include "game/player_action.h"
namespace game {
GameListener::GameListener() {}
GameListener::~GameListener() {}
void GameListener::OnGameInitialized() {}
void GameListener::OnPlayerAction(const PlayerAction& action) {}
void GameListener::OnUndoPlayerAction(const PlayerAction& action) {}
void GameListener::OnGameOver(PieceColor winner) {}
} // namespace game
| [
"calligrapha@gmail.com"
] | calligrapha@gmail.com |
e166baf67bc1974c0ffb1161cf7be1b1a17cb03f | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /ash/system/time/unified_calendar_view_controller.h | 11b747a4e9267d0980f98c33e4d9fa7ef3aec835 | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 1,523 | h | // Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_TIME_UNIFIED_CALENDAR_VIEW_CONTROLLER_H_
#define ASH_SYSTEM_TIME_UNIFIED_CALENDAR_VIEW_CONTROLLER_H_
#include <memory>
#include "ash/system/unified/detailed_view_controller.h"
#include "base/memory/raw_ptr.h"
namespace ash {
class DetailedViewDelegate;
class UnifiedSystemTrayController;
class CalendarView;
// Controller of `CalendarView` in UnifiedSystemTray.
class UnifiedCalendarViewController : public DetailedViewController {
public:
explicit UnifiedCalendarViewController(
UnifiedSystemTrayController* tray_controller);
UnifiedCalendarViewController(const UnifiedCalendarViewController& other) =
delete;
UnifiedCalendarViewController& operator=(
const UnifiedCalendarViewController& other) = delete;
~UnifiedCalendarViewController() override;
// DetailedViewController:
std::unique_ptr<views::View> CreateView() override;
std::u16string GetAccessibleName() const override;
private:
const std::unique_ptr<DetailedViewDelegate> detailed_view_delegate_;
// Unowned, the object that instantiated us.
const raw_ptr<UnifiedSystemTrayController, ExperimentalAsh> tray_controller_;
// Owned by UnifiedSystemTrayView's detailed_view_container_.
raw_ptr<CalendarView, DanglingUntriaged | ExperimentalAsh> view_ = nullptr;
};
} // namespace ash
#endif // ASH_SYSTEM_TIME_UNIFIED_CALENDAR_VIEW_CONTROLLER_H_
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
a3df16a3a222f84377ba528fc0308f23988abf4d | 8b2f42cd33bc2b38ecdf8e08dcaf7ef46cf9d530 | /lpc_flash_app/gui_fileio.cpp | 9942f7e3d091451c98b956018e91a3e7936674ee | [] | no_license | LubomirBogdanov/lpc_flash_app | fc7492771f4f6279978fe93165137435887bad20 | 267b5c6d523a65db37c88628104329a4ec9c4ae4 | refs/heads/master | 2023-03-31T09:54:55.481489 | 2021-04-03T08:14:36 | 2021-04-03T08:14:36 | 354,235,457 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,645 | cpp | /*
Copyright (C) 2021 Lubomir Bogdanov
Contributor Lubomir Bogdanov <lbogdanov@tu-sofia.bg>
This file is part of lpc_flash_app.
lpc_flash_app is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
lpc_flash_app is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with lpc_flash_app. If not, see <http://www.gnu.org/licenses/>.
*/
#include "gui_fileio.h"
gui_fileio::gui_fileio(){
}
gui_fileio::~gui_fileio(){
}
bool gui_fileio::read_entire_file(QString *filename, QByteArray *contents){
bool err = 0;
QFile file(*filename);
err = file.open(QIODevice::ReadOnly);
if(err){
err = 1;
*contents = file.readAll();
file.close();
}
else{
errors(CANT_OPEN_FILE, filename);
}
return err;
}
/*!
* \brief gui_fileio::read_entire_file - Reads a file and stores its contents
* in the QStringList buffer. Returns one on success and zero if the opening
* of the file failed.
*
* \param filename - the name of the file to be opened.
* \param contents - a buffer containing all the lines in the file.
*
* \return 0 - the operation was successful; 1 - it failed.
*/
bool gui_fileio::read_entire_file(QString *filename, QStringList *contents){
bool err = 0;
QString currentline;
QFile file(*filename);
err = file.open(QIODevice::ReadOnly|QIODevice::Text);
if(err){
err = 1;
QTextStream FileStream(&file);
while(!FileStream.atEnd()){
//Do not use *Contents << FileStream.readLine(); because it will remove the newlines from the file.
currentline = FileStream.readLine();
*contents << currentline;
}
file.close();
}
else{
errors(CANT_OPEN_FILE, filename);
}
return err;
}
/*!
* \brief gui_fileio::read_entire_config_file - Same as read_entire_file( ) but
* excludes comments, denoted with '#'.
*
* \param filename - the name of the configuration file to be opened.
* \param contents - a buffer containing all the lines in the configuration file.
* \return 0 - the operation was successful; 1 - it failed.
*/
bool gui_fileio::read_entire_config_file(QString *filename, QStringList *contents){
bool err = 0;
QString currentline;
QFile file(*filename);
err = file.open(QIODevice::ReadOnly|QIODevice::Text);
if(err){
err = 1;
QTextStream FileStream(&file);
while(!FileStream.atEnd()){
//Do not use *Contents << FileStream.readLine(); because it will remove the newlines from the file.
currentline = FileStream.readLine();
if(currentline.contains("#")){ //Exclude comments
int ind = currentline.indexOf("#");
ind = currentline.size() - ind;
currentline.chop(ind);
}
*contents << currentline;
}
file.close();
}
else{
errors(CANT_OPEN_FILE, filename);
}
return err;
}
/*!
* \brief gui_fileio::write_entire_file - Writes the QStringList buffer to
* a file. Returns one on success and zero if the writing to the file failed.
*
* \param filename - the name of the file to write to.
* \param contents - a buffer containing all the lines to be written to the file.
*
* \return 0 - the operation was successful; 1 - it failed.
*/
bool gui_fileio::write_entire_file(QString *filename, QStringList *contents){
bool err = 0;
QFile file(*filename);
err = file.open(QIODevice::WriteOnly | QIODevice::Text);
if(err){
err = 1;
QTextStream FileStream(&file);
for(qint32 i = 0; i < contents->size(); i++){
FileStream << contents->at(i);
FileStream << endl;
}
file.close();
}
else{
errors(CANT_WRITE_FILE, filename);
}
return err;
}
bool gui_fileio::write_entire_binary_file(QString *filename, QByteArray *contents){
bool err = 0;
QFile file(*filename);
err = file.open(QIODevice::WriteOnly);
if(err){
err = 1;
file.write(*contents);
file.close();
}
else{
errors(CANT_WRITE_FILE, filename);
}
return err;
}
| [
"lbogdanov@tu-sofia.bg"
] | lbogdanov@tu-sofia.bg |
cc3cac5200844ee2abd389d26b53ff7ed29737a9 | 7e5be101928eb7ea43bc1a335d3475536f8a5bb2 | /ACM - Multi-University Training/2013-1/J.cpp | f8eadac083338fe33bc45570d96e7291c70e5c3d | [] | no_license | TaoSama/ICPC-Code-Library | f94d4df0786a8a1c175da02de0a3033f9bd103ec | ec80ec66a94a5ea1d560c54fe08be0ecfcfc025e | refs/heads/master | 2020-04-04T06:19:21.023777 | 2018-11-05T18:22:32 | 2018-11-05T18:22:32 | 54,618,194 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,840 | cpp | //
// Created by TaoSama on 2016-03-07
// Copyright (c) 2016 TaoSama. All rights reserved.
//
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <algorithm>
#include <cctype>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <string>
#include <set>
#include <vector>
using namespace std;
#define pr(x) cout << #x << " = " << x << " "
#define prln(x) cout << #x << " = " << x << endl
const int N = 4e5 + 10, INF = 0x3f3f3f3f, MOD = 1e9 + 7;
const double PI = acos(-1);
typedef complex<double> Complex;
void rader(Complex *y, int len) {
for(int i = 1, j = len / 2; i < len - 1; i++) {
if(i < j) swap(y[i], y[j]);
int k = len / 2;
while(j >= k) {j -= k; k /= 2;}
if(j < k) j += k;
}
}
void fft(Complex *y, int len, int op) {
rader(y, len);
for(int h = 2; h <= len; h <<= 1) {
double ang = op * 2 * PI / h;
Complex wn(cos(ang), sin(ang));
for(int j = 0; j < len; j += h) {
Complex w(1, 0);
for(int k = j; k < j + h / 2; k++) {
Complex u = y[k];
Complex t = w * y[k + h / 2];
y[k] = u + t;
y[k + h / 2] = u - t;
w = w * wn;
}
}
}
if(op == -1) for(int i = 0; i < len; i++) y[i] /= len;
}
Complex A[N];
typedef long long LL;
int n, a[N];
LL cnt[N];
int main() {
#ifdef LOCAL
freopen("C:\\Users\\TaoSama\\Desktop\\in.txt", "r", stdin);
// freopen("C:\\Users\\TaoSama\\Desktop\\out.txt","w",stdout);
#endif
ios_base::sync_with_stdio(0);
int t; scanf("%d", &t);
while(t--) {
scanf("%d", &n);
memset(cnt, 0, sizeof cnt);
for(int i = 1; i <= n; ++i) {
scanf("%d", a + i);
++cnt[a[i]];
}
sort(a + 1, a + 1 + n);
int len = 1;
while(len <= a[n] << 1) len <<= 1;
for(int i = 0; i < len; ++i) A[i] = Complex(cnt[i], 0);
fft(A, len, 1);
for(int i = 0; i < len; ++i) A[i] *= A[i];
fft(A, len, -1);
for(int i = 0; i < len; ++i) cnt[i] = A[i].real() + 0.5;
for(int i = 1; i <= n; ++i) --cnt[a[i] << 1];
len = a[n] << 1;
for(int i = 1; i <= len; ++i) cnt[i] >>= 1;
for(int i = 1; i <= len; ++i) cnt[i] += cnt[i - 1];
LL sum = 0;
for(int i = 1; i <= n; ++i) {
sum += cnt[len] - cnt[a[i]];
sum -= n - 1; //{self, other} > self
sum -= 1LL * (i - 1) * (n - i); // {small, large} > self
sum -= 1LL * (n - i) * (n - i - 1) / 2; //{large, large} > self;
}
double ans = 1. * sum / (1. * n * (n - 1) * (n - 2) / 6);
printf("%.7f\n", ans);
}
return 0;
}
| [
"lwt1367@gmail.com"
] | lwt1367@gmail.com |
663405b31210ed584e162121d87f2e3b10f8e516 | 5ba2544f304e60e58fcb981a9e543cc526cb602a | /AsteroidsCPP/AsteroidsCPP/CreateColorCond.cpp | 9b0955260ff80dc76e9c849570d3e98467e5ae1b | [] | no_license | air2310/cpp_rep | 24747ab9d55c17a00693ff7226c272ddf459edbe | c3464f08ae6431e64ee48b1c2a4c0539cc886189 | refs/heads/master | 2021-01-12T15:42:46.056782 | 2016-12-06T12:25:00 | 2016-12-06T12:25:00 | 71,864,975 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 825 | cpp | #include <vector>
typedef std::vector<int> Row;
typedef std::vector<Row> Matrix;
//
//std::vector<int> CreateColorconds4(int nCond) {
// std::vector<int> Colorconds(nCond);
// for (int C = 0; C < 6; C++) {
// Colorconds[C] = C + 1;
// }
// return Colorconds;
//}
//Color conditions
Matrix CreateColorCond() {
int nCond = 6;
Matrix Colorcond(nCond, Row(3));
Colorcond[0][0] = 1; Colorcond[0][1] = 2; Colorcond[0][2] = 3;
Colorcond[1][0] = 1; Colorcond[1][1] = 3; Colorcond[1][2] = 2;
Colorcond[2][0] = 2; Colorcond[2][1] = 1; Colorcond[2][2] = 3;
Colorcond[3][0] = 2; Colorcond[3][1] = 3; Colorcond[3][2] = 1;
Colorcond[4][0] = 3; Colorcond[4][1] = 1; Colorcond[4][2] = 2;
Colorcond[5][0] = 3; Colorcond[5][1] = 2; Colorcond[5][2] = 1;
//Colorcond[3] = CreateColorconds4(nCond);
return Colorcond;
}
| [
"angela.renton@uqconnect.edu.au"
] | angela.renton@uqconnect.edu.au |
9d08a9f84421e3ef47ede30c37bbf0070956596e | 2bbba8d1919df325a679bfbe83730de583f57d8d | /AlgorithmCompetition/蓝桥杯赛题/第六届省赛/C语言B组源码/1.cpp | 2d455fee04255e10ffd2953d582f08a5113e57c0 | [] | no_license | liguomin9496/chuxuezhedechangshi | a8d295c334a13d258beb0736e7d368f7ee2a663f | 4454cc8edd35f2287ad90f5f6987e2baa3d2eddd | refs/heads/master | 2022-11-24T18:37:39.325766 | 2021-01-27T14:39:23 | 2021-01-27T14:39:23 | 197,548,129 | 2 | 3 | null | 2022-11-16T01:53:06 | 2019-07-18T08:43:30 | Java | GB18030 | C++ | false | false | 414 | cpp | #include<iostream>
using namespace std;
int main()
{
//数学处理-没4的很好算
//int res = 8*9*9*9*9;
//cout<<res;
int count,res,a,component;
int inf=0;
count = 99999-10000+1;
for(int i=10000;i<=99999;i++)
{
a = i;
while(a>0)
{
component = a%10;
if(component == 4)
{
inf++;
break;
}
a /= 10;
}
}
res = count- inf;
cout<<res;
return 0;
}
| [
"848980834@qq.com"
] | 848980834@qq.com |
6572e6a1be726be99ef8bdec0f4fec8b3bcdacce | fe2836176ca940977734312801f647c12e32a297 | /Codeforces/Contest/Round 247/D/aaaaajack.cpp | 70b30dfe26c0ab24e2b013d97b37a1fc9c8a2ee3 | [] | no_license | henrybear327/Sandbox | ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064 | d77627dd713035ab89c755a515da95ecb1b1121b | refs/heads/master | 2022-12-25T16:11:03.363028 | 2022-12-10T21:08:41 | 2022-12-10T21:08:41 | 53,817,848 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 752 | cpp | #include <cstdio>
using namespace std;
#ifdef _WIN32
#define lld "I64d"
#else
#define lld "lld"
#endif
long long dp[100][100] = {0};
long long cmb(int n, int m)
{
if (n < m || m < 0)
return 0;
if (n == m || m == 0)
return 1;
if (dp[n][m])
return dp[n][m];
return dp[n][m] = cmb(n - 1, m) + cmb(n - 1, m - 1);
}
int main()
{
long long m, n = 0;
int k, t = 59;
scanf("%lld %d", &m, &k);
if (m == 0 || k == 1) {
printf("1\n");
} else {
k--;
while (m) {
if (cmb(t, k) <= m) {
m -= cmb(t, k);
n |= (1LL << t);
k--;
}
t--;
}
printf("%lld\n", n);
}
return 0;
}
| [
"henrybear327@gmail.com"
] | henrybear327@gmail.com |
1c5428d55d8e29e332b760a166815756cea4c67c | fcc88521f63a3c22c81a9242ae3b203f2ea888fd | /C++/1328-Break-a-Palindrome/soln.cpp | e408ea7e22718b9bca4e8ab5cfb728012f4bdb0d | [
"MIT"
] | permissive | wyaadarsh/LeetCode-Solutions | b5963e3427aa547d485d3a2cb24e6cedc72804fd | 3719f5cb059eefd66b83eb8ae990652f4b7fd124 | refs/heads/master | 2022-12-06T15:50:37.930987 | 2020-08-30T15:49:27 | 2020-08-30T15:49:27 | 291,811,790 | 0 | 1 | MIT | 2020-08-31T19:57:35 | 2020-08-31T19:57:34 | null | UTF-8 | C++ | false | false | 372 | cpp | class Solution {
public:
string breakPalindrome(string s) {
const int kN = s.length();
int idx = 0;
while (idx < kN / 2) {
if(s[idx] != 'a') {
s[idx] = 'a';
return s;
}
++idx;
}
if(s.length() == 1) return "";
s.back() = 'b';
return s;
}
};
| [
"zhang623@wisc.edu"
] | zhang623@wisc.edu |
25272f1720d7b9dcbf3831eb42a94c1c61d14cc9 | e6cf04ede1933235b40f21d726bab36846a620ee | /exe_19.cpp | 4e9857a8f1438442a95856c8491ca3b661c2e079 | [] | no_license | rootofmylife/1000-Exercises-in-C-C-Chapter-1 | ab373498fe0bce2636693be7a3c7b46f05e72ad7 | 828356e4a0e74902b329ea455197555800195d96 | refs/heads/master | 2021-06-01T04:24:20.020309 | 2016-07-12T12:53:09 | 2016-07-12T12:53:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 483 | cpp | /*
s(n) = 1 + x + x^3/3! + x^5/5! + ... + x^(2n+1)/(2n+1)!
*/
#include <iostream>
using namespace std;
int main()
{
int n, x;
cout << "Input n: ";
cin >> n;
cout << "Input x: ";
cin >> x;
double sum = 1 + x;
double temp, tempx;
for(int i = 1; i <= n; i++)
{
temp = 1;
tempx = 1;
for(int j = 1; j <= i * 2 + 1; j++)
{
tempx *= x;
temp *= j;
}
sum += 1.0 * tempx / temp;
}
cout << "s(" << n << ") = " << sum;
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
d850dc1cdbd76ad4bbe3dc38febe81e65fd295ef | dbe63a279c38a526333078c1115a72cfb2361ad5 | /BOJ/구현/출력/13118_뉴턴과 사과.cpp | 9340b87cb4e95f72dfb1a9d75e709c5fbe0a6cb7 | [] | no_license | vividswan/Algorithm | a44be0e7f3825f4328253938625920cfc0292b36 | 5a71e7c2a217ef5d47f5dfa711559f9a83c6cf69 | refs/heads/master | 2023-09-01T07:56:25.193571 | 2023-07-30T11:18:15 | 2023-07-30T11:18:15 | 207,740,964 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 296 | cpp | #include <iostream>
using namespace std;
int main(void) {
int arr[4];
int cen_x, cen_y, r;
scanf("%d %d %d %d %d %d %d", &arr[0], &arr[1], &arr[2], &arr[3], &cen_x, &cen_y, &r);
for (int i = 0; i < 4; i++) {
if (arr[i] == cen_x) {
printf("%d", i + 1);
return 0;
}
}
printf("0");
} | [
"vividswan@naver.com"
] | vividswan@naver.com |
108146c0d8049b79c013613bb7d96f1c30df54af | 7b0582665bc3b805d0122d93608f683f34699711 | /Image2Machine/graphimage.h | ece6eddb709244bb3a39f38094ea0be8a357ac42 | [
"MIT"
] | permissive | CommName/Cengrave | 7130c452bab4574a92ecec00f9dd4abfa005c921 | d9594d62a29d0976d2aedb2b09ae4944a4ffcd2a | refs/heads/master | 2020-03-27T18:11:02.304444 | 2018-10-23T22:21:21 | 2018-10-23T22:21:21 | 146,903,764 | 1 | 0 | MIT | 2018-10-23T22:10:06 | 2018-08-31T14:38:19 | C++ | UTF-8 | C++ | false | false | 2,501 | h | #ifndef GRAPHIMAGE_H
#define GRAPHIMAGE_H
#include <opencv2/opencv.hpp>
#include "Image2Machine/commandcontainer.h"
#include <QString>
#include <QProgressBar>
struct edge;
struct pixel{
int x; //column
int y; //row
pixel* next;
pixel* last;
edge* link; //adjacent pixels
int status;
};
struct edge{
pixel* dest;
edge* link;
};
class GraphImage
{
private:
pixel *root;
pixel *end;
long numOfElements;
private:
QProgressBar *importing;
QProgressBar *exporting;
protected:
bool stop;
protected:
void setUpImporting(int maxNumber);
void setUpExporting();
void updateImporting();
void updateExporting();
public:
GraphImage();
~GraphImage();
public:
void inline setImportProgressBar(QProgressBar *bar){importing=bar;}
void inline setExportProgressBar(QProgressBar *bar){exporting=bar;}
void inline cease() {stop=true;}
protected:
bool insert(int x,int y,pixel* (GraphImage::*findFunction)(int,int));
pixel* findCR(int x, int y);
pixel* findRC(int x, int y);
pixel* findNotConnected(int,int);
void deleteAll();
protected:
bool pixelDepthCommandContainer(pixel *prev,pixel *next,commands *LastCommand,CommandContainer &con);
bool pixelDepthFile(pixel *prev,pixel *next,commands *LastCommand,std::ofstream &f);
void printCommand(pixel* atm, pixel*next ,std::ofstream &f,commands *lastCommand=nullptr);
void commandContainerInsert(pixel *atm, pixel*next, CommandContainer &com,commands *lastCommand=nullptr);
public:
bool insertColsRows(cv::Mat const &image);
bool insertColsRowsNotConnected(cv::Mat const &image);
bool insertRowsCols(cv::Mat const &image);
bool insertRowsColsNotConnected(cv::Mat const&image);
bool insertColsRowsZigZag(cv::Mat const &image);
bool insertColsRowsZigZagNotConnected(cv::Mat const &image);
bool insertRowsColsZigZag(cv::Mat const &image);
bool insertRowsColsZigZagNotConnected(cv::Mat const &image);
bool insertDiagonal(cv::Mat const &image);
bool insertDiagonalZigZag(cv::Mat const &image);
public:
bool tooFileHeightWidth(QString const &path);
bool tooFileDepth(QString const &path);
bool tooFileDepth2(QString const &path);
bool tooCommandContainerHeightWidth(CommandContainer &con);
bool tooCommandContainerDepth(CommandContainer &con);
bool tooCommandContainerDepth2(CommandContainer &con);
public:
bool test(QString const &filePath);
};
#endif // GRAPHIMAGE_H
| [
"CommName@users.noreply.github.com"
] | CommName@users.noreply.github.com |
cabd5b61e9fdba8185b69b5866a3c3b6e4d9926a | 116bf4d86f67aa5c18037b18bc1589e38400fa0c | /SDK/ZC_WeaponRackItem_Attachment_ACOG_Scope_classes.hpp | 9cc4d375215ea0422481114f7701063706c67975 | [] | no_license | hinnie123/ZeroCaliber_SDK | 67de4b0469acf273ca8b52450aa4036256ecdaef | 20786d77bb83366d8faa152aad117e8f90872c43 | refs/heads/master | 2020-04-03T03:41:38.590945 | 2018-11-10T14:32:07 | 2018-11-10T14:32:07 | 154,992,910 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 740 | hpp | #pragma once
// ZeroCaliber (0.6.0 EA) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass WeaponRackItem_Attachment_ACOG_Scope.WeaponRackItem_Attachment_ACOG_Scope_C
// 0x0000 (0x0430 - 0x0430)
class AWeaponRackItem_Attachment_ACOG_Scope_C : public AWeaponRackItemBase_C
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass WeaponRackItem_Attachment_ACOG_Scope.WeaponRackItem_Attachment_ACOG_Scope_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"hindrik-sibma@hotmail.nl"
] | hindrik-sibma@hotmail.nl |
a1480bd4b8bb4400cac1edd8367400fe806e80b6 | bda1f507626693a72079322bb17d8b35552d9657 | /9(Delete the linked list).cpp | b9f7a5a19c214c4bd534f9b191a72298d514359f | [] | no_license | Sonukum226/DATA-STRUCTURE-AND-ALGORITHMS-LINKED-LIST- | a22a2675019fd37a701e5f318c08f9c76d04b475 | 1bcf520676b9863e38012cd6a76e1830daa5e2d3 | refs/heads/main | 2023-02-12T00:02:13.957718 | 2020-12-30T03:57:23 | 2020-12-30T03:57:23 | 325,448,933 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,045 | cpp | #include<bits/stdc++.h>
using namespace std;
class Node{
public:
int data;
Node *next;
};
void push(Node **head,int data){
Node *new_node=new Node;
new_node->data=data;
new_node->next=*head;
*head=new_node;
}
void del(Node **head){
Node *current=*head;
Node *next;
while(current!=NULL){
next=current->next;
free(current);
current=next;
}
*head==NULL;
}
void reverse(Node *head){
if(head==NULL)
return ;
cout<<"abc::";
Node *prev=NULL,*Next,*curr=head;
while(curr){
Next=curr->next;
curr->next=prev;
prev=curr;
curr=Next;
cout<<prev->data<<" ";
}
cout<<endl;
}
void traverse(Node *head){
if(head==NULL){
cout<<"list is empty"<<endl;
}
int count=0;
while(head!=NULL){
cout<<head->data<<" ";
head=head->next;
++count;
}
cout<<endl<<"NO of node"<<count;
}
int main(){
Node *head=NULL;
push(&head,1);
push(&head,2);
push(&head,2);
push(&head,3);
traverse(head);
reverse(head);
del(&head);
}
| [
"noreply@github.com"
] | noreply@github.com |
6b3fa4b22424c68ab13d7debe54d36d26e159321 | a5e7f04e6d19ccb9d87c51d817d403cfe57e0372 | /jni/Graphics/TextureExt.cpp | 72161d8aebe6fb5df5090b17db4898f80bfdd4c5 | [] | no_license | SSJohns/Project-Tango-Experiment | c12b2b3197612e50504aadc84fd38fae6a2ad1b3 | 38b699f1f356a43584895625b282175bb2e74e78 | refs/heads/master | 2021-01-19T03:48:08.326543 | 2015-04-24T15:08:09 | 2015-04-24T15:08:09 | 32,817,752 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,188 | cpp | // TextureExt.cpp
#include <string>
#include <vector>
#include <GL/freeglut.h>
#include <GL/glut.h>
#include <GL/glext.h>
#include "TextureExt.h"
#include "Texture.h"
using namespace std;
TextureExt :: TextureExt(string fileName) {
/*if(fileName.find(".gif")) {
loadMultiframe(fileName);
}*/
//else {
//addFrame(new Texture(fileName));
//}
}
void TextureExt :: loadMultiframe(string fileName) {
/*list<Image> imageList;
try {
readImages(&imageList, fileName);
list<Image> :: const_iterator i;
for(i = imageList.begin(); i != imageList.end(); i++)
addFrame(new Texture(*i));
}
catch (Magick::Error& Error) {
} */
}
void TextureExt :: bind(int ind) {
getFrame(ind)->bind();
}
void TextureExt :: addFrame(Texture* tex) {
frameList.push_back(tex);
}
Texture* TextureExt :: getFrame(int ind) {
return frameList.at(ind % getFrameNumber());
}
/*Texture* TextureExt :: getFrame(float ind) {
return frameList.at(ind % getFrameNumber());
}*/
int TextureExt :: getWidth() {
return frameList.at(0)->getWidth();
}
int TextureExt :: getHeight() {
return frameList.at(0)->getHeight();
}
int TextureExt :: getFrameNumber() {
return frameList.size();
}
| [
"rmcgrai1@nd.edu"
] | rmcgrai1@nd.edu |
90b853318b6435cafb67332808e06c07f394cee4 | 51e8260df21001498150dc4dcadd36a364300e24 | /src/test/resources/results/paperMatrixModifier/l2/paper_mathUnit7_matrixModifier_1_.h | ff8ec070790f60b5d53914c7db6313ff6dcff9c6 | [] | no_license | Qwertzimus/EMAM2Cpp | f733a19eaf8619df921aaff9ee401d1c4e8314e8 | 6f5a7ffa880fa223fd5e3d828239b7d3bbd2efa1 | refs/heads/master | 2020-03-20T22:34:50.299533 | 2018-05-22T16:51:38 | 2018-05-22T16:51:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 578 | h | #ifndef PAPER_MATHUNIT7_MATRIXMODIFIER_1_
#define PAPER_MATHUNIT7_MATRIXMODIFIER_1_
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#include "octave/oct.h"
#include <thread>
class paper_mathUnit7_matrixModifier_1_{
public:
Matrix mat1;
Matrix mat2;
Matrix mat3;
Matrix mat4;
Matrix mat5;
Matrix matOut;
void init()
{
mat1=Matrix(1000,2);
mat2=Matrix(2,1000);
mat3=Matrix(1000,2);
mat4=Matrix(2,10000);
mat5=Matrix(10000,10000);
matOut=Matrix(1000,10000);
}
void execute()
{
Matrix h1 = mat1*mat2;
Matrix h2 = mat3*mat4;
Matrix h3 = h1*h2;
matOut = h3*mat5;
}
};
#endif
| [
"sascha.schneiders@rwth-aachen.de"
] | sascha.schneiders@rwth-aachen.de |
62d2400048b372cd685631ea269413e78bd19606 | 7aa0663eaeb37f631a80cc00d79fe3203e08a238 | /Morning Problems/addition/soln/addition.cpp | 50be1b88e53dc9c576d88b1d83382979060d86db | [] | no_license | jacobwong98/CMPUT274 | f96899be996caa99d4be4bce37090f1180327d4a | e3f6a7eacfe5dc75c079b10dbaf8e8ce751ff732 | refs/heads/master | 2020-03-24T22:21:28.359191 | 2018-08-25T22:16:15 | 2018-08-25T22:16:15 | 143,080,870 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 718 | cpp | #include <iostream>
using namespace std;
int main() {
// Declare your variables
int n;
// Read the input
cin >> n;
int number1[n];
int number2[n];
int result[n + 1];
int carry = 0;
if (n == 1){
cin >> number1[1];
cin >> number2[1];
}
else {
for (int i = 1; i < n; i++){
cin >> number1[i];
}
for (int i = 1; i < n; i++){
cin >> number2[i];
}
}
for (int i = n-1; n >= 0; n--){
result[n] = number1[n] + number2[n] + carry;
if (result[n] > 9){
carry = 1;
result[n] = result[n] - 10;
}
else {
carry = 0;
}
}
// Solve the problem
for (int i = 0; i < n + 1; i++){
cout << result[i] << " ";
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
c5531af7dcfb28ea2fe499b9c4267c169689b064 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/insert_iter_rvalue.pass.cpp | 40554a48a12f4da0913ce2aadad5c6e3438f26bc | [
"MIT",
"NCSA"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 1,814 | cpp | //===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <list>
// iterator insert(const_iterator position, value_type&& x);
#if _LIBCPP_DEBUG2 >= 1
#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
#endif
#include <list>
#include <cassert>
#include "../../../MoveOnly.h"
#include "../../../min_allocator.h"
int main()
{
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
{
std::list<MoveOnly> l1;
l1.insert(l1.cend(), MoveOnly(1));
assert(l1.size() == 1);
assert(l1.front() == MoveOnly(1));
l1.insert(l1.cbegin(), MoveOnly(2));
assert(l1.size() == 2);
assert(l1.front() == MoveOnly(2));
assert(l1.back() == MoveOnly(1));
}
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
#if _LIBCPP_DEBUG2 >= 1
{
std::list<int> v1(3);
std::list<int> v2(3);
v1.insert(v2.begin(), 4);
assert(false);
}
#endif
#if __cplusplus >= 201103L
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
{
std::list<MoveOnly, min_allocator<MoveOnly>> l1;
l1.insert(l1.cend(), MoveOnly(1));
assert(l1.size() == 1);
assert(l1.front() == MoveOnly(1));
l1.insert(l1.cbegin(), MoveOnly(2));
assert(l1.size() == 2);
assert(l1.front() == MoveOnly(2));
assert(l1.back() == MoveOnly(1));
}
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
#if _LIBCPP_DEBUG2 >= 1
{
std::list<int, min_allocator<int>> v1(3);
std::list<int, min_allocator<int>> v2(3);
v1.insert(v2.begin(), 4);
assert(false);
}
#endif
#endif
}
| [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
a6641123c2c3eb3ba379daa7e0ba302a29de2c19 | 98b1e51f55fe389379b0db00365402359309186a | /homework_3/case_4/40/p | 78092ec3a4b010515a59d7da15e51bf67b47c5cb | [] | no_license | taddyb/597-009 | f14c0e75a03ae2fd741905c4c0bc92440d10adda | 5f67e7d3910e3ec115fb3f3dc89a21dcc9a1b927 | refs/heads/main | 2023-01-23T08:14:47.028429 | 2020-12-03T13:24:27 | 2020-12-03T13:24:27 | 311,713,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 560,906 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "40";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
46400
(
4.78681e-09
-4.0027e-07
-7.23463e-07
-9.67733e-07
-1.12888e-06
-1.20476e-06
-1.19757e-06
-1.11181e-06
-9.51969e-07
-7.21387e-07
-4.22477e-07
-5.72318e-08
3.72652e-07
8.6592e-07
1.4218e-06
2.03979e-06
2.71948e-06
3.46038e-06
4.26206e-06
5.12418e-06
6.04654e-06
7.029e-06
8.07139e-06
9.17342e-06
1.03348e-05
1.15551e-05
1.28341e-05
1.41717e-05
1.55678e-05
1.70221e-05
1.85344e-05
2.01042e-05
2.17312e-05
2.34153e-05
2.51562e-05
2.69535e-05
2.88069e-05
3.07161e-05
3.26807e-05
3.47003e-05
3.67744e-05
3.89027e-05
4.10846e-05
4.33199e-05
4.5608e-05
4.79486e-05
5.0341e-05
5.27846e-05
5.5279e-05
5.78235e-05
6.04176e-05
6.30605e-05
6.57517e-05
6.84905e-05
7.12764e-05
7.41084e-05
7.69859e-05
7.9908e-05
8.28738e-05
8.58825e-05
8.89331e-05
9.20249e-05
9.51569e-05
9.83282e-05
0.000101538
0.000104785
0.000108069
0.000111388
0.000114741
0.000118127
0.000121545
0.000124994
0.000128472
0.000131978
0.000135511
0.000139069
0.00014265
0.000146255
0.00014988
0.000153525
0.000157188
0.000160868
0.000164561
0.000168268
0.000171986
0.000175713
0.000179448
0.000183188
0.000186931
0.000190676
0.00019442
0.000198161
0.000201896
0.000205624
0.000209341
0.000213045
0.000216733
0.000220403
0.000224049
0.00022767
0.00023126
0.000234815
0.00023833
0.0002418
0.000245216
0.000248571
0.000251854
0.000255052
0.000258147
0.000261117
0.000263928
0.000266534
0.00026887
0.000270837
0.00027229
0.000273019
0.000272802
0.000271479
0.000268907
0.000267465
-1.38145e-07
-3.85257e-07
-6.04579e-07
-7.77743e-07
-8.90821e-07
-9.35323e-07
-9.08583e-07
-8.10858e-07
-6.43827e-07
-4.09334e-07
-1.08707e-07
2.57113e-07
6.87218e-07
1.18066e-06
1.73659e-06
2.35443e-06
3.0338e-06
3.77437e-06
4.5758e-06
5.43774e-06
6.35985e-06
7.34188e-06
8.38368e-06
9.48511e-06
1.0646e-05
1.18659e-05
1.31445e-05
1.44816e-05
1.5877e-05
1.73305e-05
1.88419e-05
2.0411e-05
2.20374e-05
2.37208e-05
2.54609e-05
2.72573e-05
2.91099e-05
3.10181e-05
3.29817e-05
3.50002e-05
3.70733e-05
3.92005e-05
4.13813e-05
4.36153e-05
4.59022e-05
4.82415e-05
5.06326e-05
5.30749e-05
5.55679e-05
5.81109e-05
6.07035e-05
6.33449e-05
6.60346e-05
6.87718e-05
7.1556e-05
7.43863e-05
7.7262e-05
8.01823e-05
8.31462e-05
8.61529e-05
8.92015e-05
9.22913e-05
9.54212e-05
9.85904e-05
0.000101798
0.000105043
0.000108324
0.000111641
0.000114992
0.000118376
0.000121791
0.000125237
0.000128713
0.000132216
0.000135746
0.000139301
0.000142881
0.000146482
0.000150105
0.000153747
0.000157407
0.000161084
0.000164775
0.000168479
0.000172194
0.000175918
0.00017965
0.000183387
0.000187128
0.000190871
0.000194612
0.00019835
0.000202084
0.000205809
0.000209525
0.000213227
0.000216914
0.000220582
0.000224229
0.000227849
0.000231439
0.000234995
0.000238512
0.000241984
0.000245404
0.000248764
0.000252054
0.00025526
0.000258369
0.000261359
0.000264205
0.000266875
0.000269329
0.000271517
0.000273393
0.000274946
0.000276263
0.000277589
0.000279467
0.000284764
-1.77169e-07
-4.0863e-07
-5.82247e-07
-7.17523e-07
-8.02492e-07
-8.26591e-07
-7.85841e-07
-6.78751e-07
-5.05234e-07
-2.66102e-07
3.77032e-08
4.055e-07
8.36787e-07
1.33103e-06
1.88764e-06
2.50601e-06
3.1857e-06
3.92638e-06
4.72784e-06
5.58984e-06
6.51211e-06
7.49435e-06
8.53624e-06
9.63758e-06
1.07982e-05
1.20179e-05
1.32964e-05
1.46335e-05
1.60288e-05
1.74822e-05
1.89934e-05
2.05623e-05
2.21885e-05
2.38717e-05
2.56117e-05
2.7408e-05
2.92604e-05
3.11685e-05
3.31318e-05
3.515e-05
3.72228e-05
3.93496e-05
4.15302e-05
4.3764e-05
4.60505e-05
4.83894e-05
5.07802e-05
5.32222e-05
5.57149e-05
5.82577e-05
6.08499e-05
6.3491e-05
6.61804e-05
6.89174e-05
7.17013e-05
7.45312e-05
7.74066e-05
8.03264e-05
8.32899e-05
8.62962e-05
8.93445e-05
9.24339e-05
9.55635e-05
9.87324e-05
0.00010194
0.000105184
0.000108465
0.000111781
0.000115132
0.000118515
0.000121931
0.000125377
0.000128852
0.000132355
0.000135885
0.00013944
0.000143018
0.00014662
0.000150243
0.000153885
0.000157545
0.000161221
0.000164912
0.000168616
0.000172332
0.000176056
0.000179788
0.000183526
0.000187268
0.000191011
0.000194753
0.000198493
0.000202227
0.000205954
0.000209672
0.000213377
0.000217067
0.000220739
0.000224389
0.000228014
0.000231611
0.000235174
0.000238699
0.000242182
0.000245615
0.000248991
0.000252301
0.000255535
0.000258679
0.000261719
0.000264634
0.000267403
0.000270005
0.000272421
0.000274651
0.000276744
0.000278856
0.000281302
0.000284771
0.00029124
-1.87175e-07
-4.41358e-07
-5.98703e-07
-7.13194e-07
-7.79343e-07
-7.87416e-07
-7.34087e-07
-6.17831e-07
-4.37756e-07
-1.93756e-07
1.13767e-07
4.84326e-07
9.17543e-07
1.41311e-06
1.9707e-06
2.5899e-06
3.27032e-06
4.01159e-06
4.81346e-06
5.67575e-06
6.59826e-06
7.5808e-06
8.62306e-06
9.72473e-06
1.08855e-05
1.21053e-05
1.33838e-05
1.4721e-05
1.61165e-05
1.75701e-05
1.90815e-05
2.06506e-05
2.2277e-05
2.39604e-05
2.57006e-05
2.74971e-05
2.93497e-05
3.1258e-05
3.32215e-05
3.52399e-05
3.73128e-05
3.94397e-05
4.16204e-05
4.38544e-05
4.61412e-05
4.84804e-05
5.08713e-05
5.33136e-05
5.58066e-05
5.83498e-05
6.09424e-05
6.3584e-05
6.62738e-05
6.90112e-05
7.17954e-05
7.46258e-05
7.75015e-05
8.04217e-05
8.33857e-05
8.63926e-05
8.94414e-05
9.25315e-05
9.56618e-05
9.88314e-05
0.000102039
0.000105285
0.000108566
0.000111883
0.000115235
0.000118619
0.000122035
0.000125482
0.000128958
0.000132463
0.000135993
0.00013955
0.00014313
0.000146733
0.000150357
0.000154
0.000157662
0.00016134
0.000165033
0.000168739
0.000172456
0.000176183
0.000179918
0.000183658
0.000187402
0.000191148
0.000194894
0.000198637
0.000202375
0.000206107
0.00020983
0.00021354
0.000217236
0.000220915
0.000224572
0.000228207
0.000231814
0.000235389
0.000238929
0.000242429
0.000245882
0.000249284
0.000252626
0.000255901
0.000259099
0.00026221
0.000265221
0.000268124
0.000270913
0.000273593
0.000276194
0.0002788
0.000281575
0.000284803
0.000289015
0.000295263
-2.23575e-07
-5.0417e-07
-6.56914e-07
-7.60201e-07
-8.14285e-07
-8.1069e-07
-7.47026e-07
-6.22399e-07
-4.35938e-07
-1.87109e-07
1.24181e-07
4.97744e-07
9.33316e-07
1.43067e-06
1.98958e-06
2.60984e-06
3.29118e-06
4.03332e-06
4.836e-06
5.69898e-06
6.62205e-06
7.60503e-06
8.64774e-06
9.74988e-06
1.09112e-05
1.21314e-05
1.34103e-05
1.47478e-05
1.61437e-05
1.75977e-05
1.91097e-05
2.06793e-05
2.23062e-05
2.39903e-05
2.5731e-05
2.75281e-05
2.93812e-05
3.129e-05
3.32541e-05
3.52731e-05
3.73465e-05
3.94741e-05
4.16555e-05
4.38901e-05
4.61776e-05
4.85176e-05
5.09093e-05
5.33524e-05
5.58463e-05
5.83905e-05
6.09842e-05
6.36268e-05
6.63177e-05
6.90563e-05
7.18416e-05
7.46731e-05
7.755e-05
8.04715e-05
8.34368e-05
8.64451e-05
8.94955e-05
9.25871e-05
9.57191e-05
9.88904e-05
0.0001021
0.000105347
0.000108631
0.00011195
0.000115303
0.000118689
0.000122108
0.000125557
0.000129035
0.000132542
0.000136075
0.000139634
0.000143217
0.000146823
0.00015045
0.000154097
0.000157761
0.000161443
0.000165139
0.000168849
0.00017257
0.000176301
0.00018004
0.000183785
0.000187533
0.000191284
0.000195035
0.000198785
0.00020253
0.000206268
0.000209998
0.000213717
0.000217422
0.000221111
0.00022478
0.000228427
0.000232048
0.000235641
0.0002392
0.000242723
0.000246204
0.00024964
0.000253023
0.00025635
0.000259614
0.00026281
0.000265934
0.000268987
0.000271975
0.00027492
0.000277871
0.000280918
0.000284211
0.000287972
0.000292542
0.000298393
-3.13692e-07
-6.1606e-07
-7.6909e-07
-8.66588e-07
-9.13182e-07
-9.01648e-07
-8.30295e-07
-6.98768e-07
-5.06534e-07
-2.53092e-07
6.18652e-08
4.38418e-07
8.76477e-07
1.37588e-06
1.93648e-06
2.55811e-06
3.2406e-06
3.98379e-06
4.78749e-06
5.65145e-06
6.57544e-06
7.55922e-06
8.60261e-06
9.7054e-06
1.08674e-05
1.20883e-05
1.33679e-05
1.47061e-05
1.61027e-05
1.75575e-05
1.90703e-05
2.06407e-05
2.22686e-05
2.39535e-05
2.56952e-05
2.74932e-05
2.93473e-05
3.1257e-05
3.32221e-05
3.52421e-05
3.73167e-05
3.94454e-05
4.16279e-05
4.38638e-05
4.61526e-05
4.84939e-05
5.08871e-05
5.33317e-05
5.58271e-05
5.83729e-05
6.09683e-05
6.36128e-05
6.63055e-05
6.90459e-05
7.18331e-05
7.46666e-05
7.75455e-05
8.04691e-05
8.34367e-05
8.64473e-05
8.95003e-05
9.25945e-05
9.57292e-05
9.89033e-05
0.000102116
0.000105366
0.000108653
0.000111975
0.000115331
0.000118721
0.000122142
0.000125595
0.000129077
0.000132588
0.000136125
0.000139688
0.000143276
0.000146886
0.000150517
0.000154168
0.000157838
0.000161525
0.000165226
0.000168942
0.000172668
0.000176405
0.00018015
0.000183902
0.000187658
0.000191416
0.000195175
0.000198932
0.000202686
0.000206434
0.000210174
0.000213904
0.000217621
0.000221323
0.000225007
0.00022867
0.00023231
0.000235923
0.000239507
0.000243057
0.000246572
0.000250047
0.000253479
0.000256865
0.000260203
0.000263491
0.000266732
0.000269933
0.000273111
0.000276294
0.000279534
0.000282915
0.000286555
0.000290612
0.00029528
0.000300748
-4.69622e-07
-7.87322e-07
-9.42415e-07
-1.03706e-06
-1.07879e-06
-1.0617e-06
-9.84719e-07
-8.47798e-07
-6.50661e-07
-3.92991e-07
-7.45111e-08
3.04969e-07
7.45509e-07
1.24707e-06
1.80955e-06
2.43284e-06
3.11679e-06
3.86128e-06
4.66617e-06
5.53128e-06
6.45641e-06
7.44129e-06
8.4857e-06
9.58943e-06
1.07523e-05
1.19742e-05
1.32548e-05
1.4594e-05
1.59917e-05
1.74476e-05
1.89615e-05
2.05332e-05
2.21622e-05
2.38484e-05
2.55913e-05
2.73907e-05
2.92461e-05
3.11572e-05
3.31237e-05
3.51453e-05
3.72215e-05
3.93519e-05
4.15362e-05
4.37739e-05
4.60646e-05
4.84078e-05
5.0803e-05
5.32497e-05
5.57474e-05
5.82955e-05
6.08933e-05
6.35403e-05
6.62356e-05
6.89785e-05
7.17685e-05
7.46048e-05
7.74867e-05
8.04134e-05
8.33842e-05
8.63982e-05
8.94546e-05
9.25525e-05
9.56909e-05
9.88689e-05
0.000102086
0.00010534
0.00010863
0.000111957
0.000115318
0.000118712
0.000122138
0.000125596
0.000129083
0.000132599
0.000136142
0.000139711
0.000143304
0.00014692
0.000150558
0.000154215
0.000157892
0.000161585
0.000165294
0.000169016
0.000172751
0.000176496
0.000180249
0.000184009
0.000187774
0.000191542
0.000195311
0.000199079
0.000202844
0.000206604
0.000210356
0.0002141
0.000217831
0.000221549
0.00022525
0.000228933
0.000232594
0.000236232
0.000239843
0.000243426
0.000246978
0.000250497
0.000253981
0.000257429
0.000260842
0.000264223
0.000267577
0.000270916
0.000274259
0.000277638
0.0002811
0.000284712
0.000288561
0.000292747
0.000297374
0.000302499
-6.9696e-07
-1.02392e-06
-1.18119e-06
-1.27459e-06
-1.3131e-06
-1.2919e-06
-1.2106e-06
-1.06945e-06
-8.68281e-07
-6.06895e-07
-2.85119e-07
9.7221e-08
5.40247e-07
1.044e-06
1.60845e-06
2.23356e-06
2.91921e-06
3.66528e-06
4.47161e-06
5.33808e-06
6.2645e-06
7.25067e-06
8.29635e-06
9.40133e-06
1.05654e-05
1.17885e-05
1.30704e-05
1.4411e-05
1.58101e-05
1.72675e-05
1.87829e-05
2.0356e-05
2.19866e-05
2.36744e-05
2.54189e-05
2.722e-05
2.90771e-05
3.09901e-05
3.29586e-05
3.49822e-05
3.70605e-05
3.91932e-05
4.13798e-05
4.362e-05
4.59131e-05
4.82589e-05
5.06568e-05
5.31063e-05
5.56069e-05
5.81579e-05
6.07589e-05
6.3409e-05
6.61076e-05
6.8854e-05
7.16476e-05
7.44876e-05
7.73733e-05
8.03041e-05
8.3279e-05
8.62974e-05
8.93583e-05
9.24608e-05
9.56041e-05
9.87871e-05
0.000102009
0.000105268
0.000108565
0.000111896
0.000115263
0.000118663
0.000122096
0.00012556
0.000129054
0.000132576
0.000136126
0.000139702
0.000143302
0.000146926
0.000150571
0.000154237
0.000157922
0.000161624
0.000165341
0.000169073
0.000172817
0.000176572
0.000180335
0.000184106
0.000187882
0.000191662
0.000195443
0.000199223
0.000203002
0.000206776
0.000210544
0.000214303
0.000218052
0.000221788
0.000225509
0.000229214
0.0002329
0.000236565
0.000240207
0.000243824
0.000247416
0.00025098
0.000254517
0.000258028
0.000261515
0.000264982
0.000268438
0.000271897
0.000275377
0.000278908
0.000282529
0.00028629
0.00029025
0.000294468
0.000298994
0.000303831
-9.98139e-07
-1.32985e-06
-1.48847e-06
-1.58136e-06
-1.61776e-06
-1.59346e-06
-1.50872e-06
-1.36412e-06
-1.1596e-06
-8.95004e-07
-5.70232e-07
-1.85153e-07
2.60356e-07
7.66362e-07
1.33288e-06
1.9599e-06
2.64737e-06
3.3952e-06
4.20322e-06
5.07128e-06
5.99921e-06
6.98685e-06
8.034e-06
9.14049e-06
1.03061e-05
1.15308e-05
1.28143e-05
1.41566e-05
1.55573e-05
1.70165e-05
1.85336e-05
2.01086e-05
2.17411e-05
2.34308e-05
2.51774e-05
2.69805e-05
2.88399e-05
3.07553e-05
3.27262e-05
3.47523e-05
3.68333e-05
3.89688e-05
4.11583e-05
4.34014e-05
4.56977e-05
4.80466e-05
5.04478e-05
5.29008e-05
5.54049e-05
5.79597e-05
6.05644e-05
6.32185e-05
6.59212e-05
6.86719e-05
7.147e-05
7.43146e-05
7.72052e-05
8.01409e-05
8.31209e-05
8.61446e-05
8.9211e-05
9.23192e-05
9.54684e-05
9.86575e-05
0.000101886
0.000105151
0.000108454
0.000111793
0.000115167
0.000118574
0.000122014
0.000125486
0.000128988
0.000132518
0.000136077
0.000139661
0.00014327
0.000146903
0.000150558
0.000154234
0.000157929
0.000161641
0.000165369
0.000169112
0.000172867
0.000176634
0.00018041
0.000184193
0.000187982
0.000191775
0.000195571
0.000199366
0.00020316
0.000206951
0.000210736
0.000214513
0.000218281
0.000222038
0.000225782
0.000229511
0.000233224
0.000236918
0.000240592
0.000244246
0.000247878
0.000251488
0.000255078
0.000258648
0.000262203
0.000265749
0.000269294
0.000272852
0.00027644
0.000280083
0.000283812
0.000287661
0.000291668
0.000295867
0.000300275
0.000304876
-1.37367e-06
-1.70757e-06
-1.86654e-06
-1.95896e-06
-1.99391e-06
-1.96729e-06
-1.87977e-06
-1.73225e-06
-1.52485e-06
-1.25745e-06
-9.29968e-07
-5.42314e-07
-9.438e-08
4.13917e-07
9.82599e-07
1.61165e-06
2.30106e-06
3.05074e-06
3.86059e-06
4.73044e-06
5.66012e-06
6.64945e-06
7.6983e-06
8.80652e-06
9.97396e-06
1.12005e-05
1.24859e-05
1.38301e-05
1.52329e-05
1.66941e-05
1.82134e-05
1.97906e-05
2.14253e-05
2.31173e-05
2.48664e-05
2.66721e-05
2.85341e-05
3.04522e-05
3.24261e-05
3.44553e-05
3.65395e-05
3.86782e-05
4.08711e-05
4.31178e-05
4.54178e-05
4.77706e-05
5.01758e-05
5.26329e-05
5.51413e-05
5.77005e-05
6.03097e-05
6.29685e-05
6.56762e-05
6.8432e-05
7.12354e-05
7.40856e-05
7.69819e-05
7.99235e-05
8.29096e-05
8.59396e-05
8.90125e-05
9.21274e-05
9.52836e-05
9.84799e-05
0.000101715
0.000104989
0.0001083
0.000111647
0.000115029
0.000118445
0.000121894
0.000125375
0.000128886
0.000132426
0.000135994
0.000139589
0.000143209
0.000146852
0.000150519
0.000154206
0.000157912
0.000161637
0.000165377
0.000169133
0.000172901
0.000176682
0.000180472
0.00018427
0.000188074
0.000191883
0.000195694
0.000199507
0.000203318
0.000207127
0.000210931
0.000214729
0.000218519
0.000222298
0.000226067
0.000229822
0.000233562
0.000237287
0.000240995
0.000244686
0.000248359
0.000252014
0.000255654
0.000259281
0.000262898
0.000266512
0.000270133
0.00027377
0.000277441
0.000281163
0.00028496
0.000288855
0.000292872
0.000297026
0.000301319
0.00030573
-1.82322e-06
-2.15822e-06
-2.31697e-06
-2.40867e-06
-2.4424e-06
-2.41398e-06
-2.32421e-06
-2.17421e-06
-1.96425e-06
-1.69433e-06
-1.36436e-06
-9.74275e-07
-5.23993e-07
-1.34272e-08
5.57463e-07
1.18866e-06
1.88012e-06
2.63179e-06
3.44358e-06
4.31535e-06
5.24694e-06
6.2382e-06
7.28899e-06
8.39919e-06
9.56868e-06
1.07973e-05
1.2085e-05
1.34315e-05
1.48366e-05
1.63001e-05
1.78219e-05
1.94016e-05
2.10389e-05
2.27337e-05
2.44856e-05
2.62943e-05
2.81595e-05
3.00809e-05
3.20581e-05
3.40908e-05
3.61787e-05
3.83212e-05
4.05182e-05
4.2769e-05
4.50733e-05
4.74306e-05
4.98404e-05
5.23023e-05
5.48156e-05
5.73799e-05
5.99945e-05
6.26588e-05
6.53722e-05
6.8134e-05
7.09436e-05
7.38002e-05
7.67032e-05
7.96516e-05
8.26449e-05
8.56821e-05
8.87625e-05
9.18853e-05
9.50495e-05
9.82541e-05
0.000101498
0.000104781
0.000108101
0.000111457
0.000114849
0.000118275
0.000121734
0.000125225
0.000128747
0.000132299
0.000135878
0.000139485
0.000143117
0.000146773
0.000150452
0.000154152
0.000157872
0.00016161
0.000165365
0.000169135
0.000172919
0.000176715
0.000180521
0.000184335
0.000188157
0.000191983
0.000195813
0.000199644
0.000203475
0.000207304
0.00021113
0.00021495
0.000218763
0.000222567
0.000226361
0.000230144
0.000233914
0.000237671
0.000241413
0.000245141
0.000248854
0.000252553
0.00025624
0.000259918
0.000263591
0.000267265
0.000270947
0.000274648
0.00027838
0.000282157
0.000285995
0.00028991
0.000293914
0.000298014
0.000302203
0.00030646
-2.34651e-06
-2.68215e-06
-2.84058e-06
-2.93143e-06
-2.96395e-06
-2.934e-06
-2.84236e-06
-2.69022e-06
-2.47799e-06
-2.20577e-06
-1.87348e-06
-1.48106e-06
-1.02848e-06
-5.15669e-07
5.74303e-08
6.90814e-07
1.38443e-06
2.13821e-06
2.95206e-06
3.82588e-06
4.75955e-06
5.75292e-06
6.80588e-06
7.91832e-06
9.09011e-06
1.03212e-05
1.16113e-05
1.29603e-05
1.43681e-05
1.58343e-05
1.73588e-05
1.89414e-05
2.05818e-05
2.22797e-05
2.40349e-05
2.58471e-05
2.77159e-05
2.9641e-05
3.1622e-05
3.36587e-05
3.57507e-05
3.78976e-05
4.00991e-05
4.23546e-05
4.46638e-05
4.70262e-05
4.94414e-05
5.19087e-05
5.44277e-05
5.69977e-05
5.96184e-05
6.2289e-05
6.5009e-05
6.77777e-05
7.05944e-05
7.34583e-05
7.63688e-05
7.93251e-05
8.23263e-05
8.53719e-05
8.84609e-05
9.15925e-05
9.47659e-05
9.798e-05
0.000101234
0.000104526
0.000107857
0.000111224
0.000114627
0.000118064
0.000121535
0.000125038
0.000128572
0.000132136
0.000135728
0.000139348
0.000142994
0.000146664
0.000150358
0.000154073
0.000157808
0.000161562
0.000165333
0.000169119
0.00017292
0.000176733
0.000180557
0.00018439
0.00018823
0.000192076
0.000195925
0.000199777
0.00020363
0.000207481
0.00021133
0.000215174
0.000219012
0.000222843
0.000226665
0.000230477
0.000234278
0.000238067
0.000241843
0.000245608
0.00024936
0.000253101
0.000256832
0.000260557
0.000264279
0.000268004
0.000271737
0.000275488
0.000279265
0.000283079
0.00028694
0.000290859
0.00029484
0.000298885
0.000302983
0.000307115
-2.94365e-06
-3.27956e-06
-3.43775e-06
-3.52782e-06
-3.55916e-06
-3.52778e-06
-3.4345e-06
-3.28049e-06
-3.06622e-06
-2.79185e-06
-2.45739e-06
-2.06275e-06
-1.60791e-06
-1.09284e-06
-5.17522e-07
1.1807e-07
8.13892e-07
1.56987e-06
2.38591e-06
3.26193e-06
4.19783e-06
5.1935e-06
6.24884e-06
7.36374e-06
8.5381e-06
9.77179e-06
1.10647e-05
1.24165e-05
1.38272e-05
1.52965e-05
1.68241e-05
1.84099e-05
2.00537e-05
2.17553e-05
2.35142e-05
2.53302e-05
2.7203e-05
2.91323e-05
3.11176e-05
3.31588e-05
3.52554e-05
3.74071e-05
3.96136e-05
4.18744e-05
4.41892e-05
4.65573e-05
4.89783e-05
5.14518e-05
5.39771e-05
5.65537e-05
5.91812e-05
6.1859e-05
6.45863e-05
6.73627e-05
7.01873e-05
7.30595e-05
7.59785e-05
7.89435e-05
8.19538e-05
8.50086e-05
8.81073e-05
9.12488e-05
9.44324e-05
9.76571e-05
0.000100922
0.000104226
0.000107568
0.000110947
0.000114362
0.000117812
0.000121296
0.000124812
0.00012836
0.000131938
0.000135545
0.00013918
0.000142841
0.000146527
0.000150236
0.000153968
0.00015772
0.000161491
0.000165279
0.000169084
0.000172903
0.000176736
0.000180579
0.000184432
0.000188293
0.00019216
0.000196032
0.000199907
0.000203783
0.000207658
0.000211531
0.000215401
0.000219266
0.000223125
0.000226975
0.000230817
0.00023465
0.000238472
0.000242283
0.000246084
0.000249874
0.000253655
0.000257428
0.000261196
0.000264962
0.00026873
0.000272506
0.000276296
0.000280106
0.000283945
0.000287818
0.000291731
0.000295686
0.000299679
0.0003037
0.000307731
-3.61492e-06
-3.95078e-06
-4.10872e-06
-4.19814e-06
-4.22843e-06
-4.1957e-06
-4.1009e-06
-3.94522e-06
-3.72908e-06
-3.45272e-06
-3.11617e-06
-2.7194e-06
-2.26235e-06
-1.74504e-06
-1.16747e-06
-5.29634e-07
1.68435e-07
9.26682e-07
1.74503e-06
2.62339e-06
3.56169e-06
4.55984e-06
5.61776e-06
6.73535e-06
7.91251e-06
9.1491e-06
1.0445e-05
1.17999e-05
1.32138e-05
1.46864e-05
1.62175e-05
1.7807e-05
1.94546e-05
2.11601e-05
2.29232e-05
2.47435e-05
2.66207e-05
2.85546e-05
3.05446e-05
3.25907e-05
3.46924e-05
3.68495e-05
3.90616e-05
4.13282e-05
4.3649e-05
4.60235e-05
4.84511e-05
5.09313e-05
5.34636e-05
5.60476e-05
5.86827e-05
6.13683e-05
6.41039e-05
6.68888e-05
6.97222e-05
7.26034e-05
7.55318e-05
7.85065e-05
8.15268e-05
8.4592e-05
8.77013e-05
9.08539e-05
9.40488e-05
9.72852e-05
0.000100562
0.000103878
0.000107233
0.000110625
0.000114054
0.000117518
0.000121016
0.000124547
0.00012811
0.000131704
0.000135327
0.000138978
0.000142656
0.000146359
0.000150086
0.000153836
0.000157607
0.000161397
0.000165205
0.00016903
0.000172869
0.000176723
0.000180588
0.000184463
0.000188346
0.000192236
0.000196132
0.000200031
0.000203932
0.000207833
0.000211733
0.000215631
0.000219524
0.000223411
0.000227292
0.000231166
0.000235031
0.000238886
0.000242732
0.000246568
0.000250396
0.000254215
0.000258027
0.000261834
0.000265639
0.000269445
0.000273257
0.000277079
0.000280915
0.00028477
0.000288649
0.000292552
0.00029648
0.000300427
0.000304383
0.000308333
-4.36053e-06
-4.69623e-06
-4.85381e-06
-4.94265e-06
-4.97205e-06
-4.93809e-06
-4.84187e-06
-4.68462e-06
-4.46678e-06
-4.18852e-06
-3.84996e-06
-3.4511e-06
-2.9919e-06
-2.47236e-06
-1.89252e-06
-1.2524e-06
-5.52028e-07
2.0856e-07
1.02931e-06
1.91015e-06
2.85101e-06
3.85183e-06
4.91254e-06
6.03303e-06
7.21321e-06
8.45294e-06
9.75205e-06
1.11104e-05
1.25277e-05
1.4004e-05
1.55389e-05
1.71324e-05
1.87842e-05
2.0494e-05
2.22616e-05
2.40866e-05
2.59687e-05
2.79075e-05
2.99027e-05
3.19542e-05
3.40615e-05
3.62244e-05
3.84426e-05
4.07157e-05
4.30431e-05
4.54245e-05
4.78593e-05
5.03469e-05
5.2887e-05
5.54791e-05
5.81225e-05
6.08168e-05
6.35614e-05
6.63555e-05
6.91985e-05
7.20897e-05
7.50284e-05
7.80137e-05
8.10451e-05
8.41217e-05
8.72427e-05
9.04073e-05
9.36146e-05
9.68638e-05
0.000100154
0.000103484
0.000106853
0.000110259
0.000113703
0.000117182
0.000120696
0.000124243
0.000127823
0.000131434
0.000135074
0.000138743
0.000142439
0.000146161
0.000149908
0.000153677
0.000157468
0.000161279
0.000165109
0.000168955
0.000172817
0.000176693
0.000180581
0.00018448
0.000188388
0.000192303
0.000196225
0.00020015
0.000204078
0.000208007
0.000211935
0.000215861
0.000219784
0.000223702
0.000227615
0.00023152
0.000235418
0.000239308
0.000243188
0.00024706
0.000250924
0.00025478
0.000258629
0.000262473
0.000266313
0.000270154
0.000273996
0.000277844
0.0002817
0.000285568
0.000289448
0.000293341
0.000297244
0.000301152
0.000305055
0.000308939
-5.18056e-06
-5.51622e-06
-5.67338e-06
-5.76162e-06
-5.79024e-06
-5.75522e-06
-5.65766e-06
-5.49893e-06
-5.27947e-06
-4.99941e-06
-4.6589e-06
-4.25798e-06
-3.79665e-06
-3.27492e-06
-2.6928e-06
-2.05036e-06
-1.34762e-06
-5.84604e-07
2.38653e-07
1.12211e-06
2.0657e-06
3.06938e-06
4.13306e-06
5.25667e-06
6.44008e-06
7.68316e-06
8.98576e-06
1.03477e-05
1.17689e-05
1.32491e-05
1.47882e-05
1.6386e-05
1.80423e-05
1.97568e-05
2.15292e-05
2.33593e-05
2.52466e-05
2.71908e-05
2.91916e-05
3.12489e-05
3.33624e-05
3.55317e-05
3.77566e-05
4.00366e-05
4.23712e-05
4.47601e-05
4.72026e-05
4.96984e-05
5.2247e-05
5.48478e-05
5.75003e-05
6.0204e-05
6.29583e-05
6.57625e-05
6.8616e-05
7.1518e-05
7.44679e-05
7.74648e-05
8.05081e-05
8.35971e-05
8.67308e-05
8.99085e-05
9.31294e-05
9.63925e-05
9.96968e-05
0.000103042
0.000106426
0.000109848
0.000113308
0.000116804
0.000120335
0.0001239
0.000127497
0.000131127
0.000134786
0.000138474
0.000142191
0.000145933
0.000149701
0.000153492
0.000157305
0.000161138
0.000164991
0.000168861
0.000172747
0.000176647
0.00018056
0.000184485
0.000188419
0.000192361
0.000196309
0.000200263
0.000204219
0.000208177
0.000212135
0.000216092
0.000220046
0.000223997
0.000227942
0.00023188
0.000235812
0.000239736
0.000243652
0.000247559
0.000251459
0.00025535
0.000259235
0.000263113
0.000266987
0.000270858
0.000274728
0.000278599
0.000282472
0.00028635
0.00029023
0.000294114
0.000297996
0.000301871
0.00030573
0.000309562
-6.07514e-06
-6.41096e-06
-6.56778e-06
-6.6554e-06
-6.68327e-06
-6.64731e-06
-6.54853e-06
-6.38837e-06
-6.16733e-06
-5.88557e-06
-5.54316e-06
-5.14021e-06
-4.67675e-06
-4.15282e-06
-3.56844e-06
-2.92365e-06
-2.21847e-06
-1.45293e-06
-6.27043e-07
2.59169e-07
1.20566e-06
2.21237e-06
3.27922e-06
4.40612e-06
5.59296e-06
6.83961e-06
8.14593e-06
9.51177e-06
1.0937e-05
1.24214e-05
1.3965e-05
1.55674e-05
1.72285e-05
1.8948e-05
2.07257e-05
2.25611e-05
2.4454e-05
2.6404e-05
2.8411e-05
3.04746e-05
3.25947e-05
3.4771e-05
3.7003e-05
3.92905e-05
4.16329e-05
4.40299e-05
4.64809e-05
4.89854e-05
5.15431e-05
5.41534e-05
5.68157e-05
5.95296e-05
6.22944e-05
6.51095e-05
6.79742e-05
7.08878e-05
7.38497e-05
7.68592e-05
7.99154e-05
8.30177e-05
8.61652e-05
8.93571e-05
9.25926e-05
9.58707e-05
9.91905e-05
0.000102551
0.000105952
0.000109391
0.000112868
0.000116382
0.000119932
0.000123516
0.000127133
0.000130782
0.000134462
0.000138171
0.000141909
0.000145674
0.000149464
0.000153278
0.000157114
0.000160972
0.000164849
0.000168745
0.000172657
0.000176583
0.000180523
0.000184475
0.000188437
0.000192408
0.000196386
0.000200368
0.000204355
0.000208344
0.000212334
0.000216323
0.00022031
0.000224294
0.000228272
0.000232246
0.000236212
0.000240171
0.000244122
0.000248066
0.000252001
0.000255927
0.000259846
0.000263758
0.000267663
0.000271563
0.000275458
0.00027935
0.000283239
0.000287125
0.000291007
0.000294883
0.000298748
0.000302597
0.000306422
0.000310212
-7.04454e-06
-7.3806e-06
-7.53726e-06
-7.62432e-06
-7.65142e-06
-7.61459e-06
-7.51471e-06
-7.35317e-06
-7.13059e-06
-6.84714e-06
-6.50289e-06
-6.09794e-06
-5.63238e-06
-5.10625e-06
-4.51959e-06
-3.87241e-06
-3.16474e-06
-2.39657e-06
-1.56791e-06
-6.78796e-07
2.70746e-07
1.28065e-06
2.35084e-06
3.48122e-06
4.67168e-06
5.92211e-06
7.23238e-06
8.60235e-06
1.00319e-05
1.15208e-05
1.30691e-05
1.46764e-05
1.63426e-05
1.80675e-05
1.98506e-05
2.16917e-05
2.35906e-05
2.55469e-05
2.75604e-05
2.96309e-05
3.17582e-05
3.39419e-05
3.61817e-05
3.84772e-05
4.08279e-05
4.32336e-05
4.56936e-05
4.82076e-05
5.0775e-05
5.33955e-05
5.60683e-05
5.87931e-05
6.15691e-05
6.43958e-05
6.72725e-05
7.01987e-05
7.31735e-05
7.61964e-05
7.92665e-05
8.23831e-05
8.55453e-05
8.87524e-05
9.20036e-05
9.52979e-05
9.86344e-05
0.000102012
0.000105431
0.000108888
0.000112384
0.000115918
0.000119487
0.000123091
0.000126729
0.0001304
0.000134102
0.000137834
0.000141594
0.000145382
0.000149197
0.000153036
0.000156898
0.000160781
0.000164685
0.000168607
0.000172547
0.000176502
0.00018047
0.000184451
0.000188443
0.000192444
0.000196453
0.000200467
0.000204486
0.000208508
0.000212531
0.000216554
0.000220575
0.000224593
0.000228607
0.000232615
0.000236618
0.000240613
0.0002446
0.000248579
0.00025255
0.000256512
0.000260464
0.000264409
0.000268344
0.000272272
0.000276192
0.000280104
0.000284008
0.000287903
0.000291787
0.000295658
0.000299511
0.00030334
0.000307138
0.000310896
-8.08912e-06
-8.42539e-06
-8.582e-06
-8.66865e-06
-8.69502e-06
-8.6573e-06
-8.55638e-06
-8.39356e-06
-8.16945e-06
-7.88432e-06
-7.53827e-06
-7.13136e-06
-6.66371e-06
-6.13538e-06
-5.54641e-06
-4.89681e-06
-4.18656e-06
-3.41566e-06
-2.58411e-06
-1.69194e-06
-7.39201e-07
2.74051e-07
1.34773e-06
2.48176e-06
3.67603e-06
4.93043e-06
6.24487e-06
7.6192e-06
9.05331e-06
1.0547e-05
1.21002e-05
1.37127e-05
1.53843e-05
1.71147e-05
1.89037e-05
2.07509e-05
2.26561e-05
2.46191e-05
2.66397e-05
2.87175e-05
3.08524e-05
3.30441e-05
3.52921e-05
3.75962e-05
3.99558e-05
4.23707e-05
4.48404e-05
4.73644e-05
4.99423e-05
5.25736e-05
5.52577e-05
5.7994e-05
6.0782e-05
6.36211e-05
6.65107e-05
6.94501e-05
7.24388e-05
7.54759e-05
7.85607e-05
8.16926e-05
8.48706e-05
8.80939e-05
9.13619e-05
9.46735e-05
9.80278e-05
0.000101424
0.000104861
0.000108338
0.000111855
0.000115408
0.000118999
0.000122625
0.000126285
0.000129979
0.000133704
0.00013746
0.000141246
0.000145059
0.000148899
0.000152764
0.000156653
0.000160565
0.000164497
0.000168448
0.000172416
0.000176401
0.0001804
0.000184412
0.000188436
0.000192469
0.00019651
0.000200558
0.000204611
0.000208667
0.000212725
0.000216783
0.00022084
0.000224894
0.000228944
0.00023299
0.000237029
0.000241061
0.000245085
0.000249101
0.000253108
0.000257104
0.000261091
0.000265067
0.000269033
0.000272988
0.000276933
0.000280865
0.000284785
0.00028869
0.000292579
0.000296448
0.000300293
0.000304108
0.000307887
0.00031162
-9.20925e-06
-9.54569e-06
-9.70224e-06
-9.78862e-06
-9.81434e-06
-9.77572e-06
-9.67378e-06
-9.50972e-06
-9.28414e-06
-8.99734e-06
-8.64949e-06
-8.24067e-06
-7.77096e-06
-7.24043e-06
-6.64912e-06
-5.99703e-06
-5.28412e-06
-4.51038e-06
-3.67582e-06
-2.78047e-06
-1.82439e-06
-8.07649e-07
2.69672e-07
1.4075e-06
2.60575e-06
3.86433e-06
5.18314e-06
6.56207e-06
8.00098e-06
9.49972e-06
1.10581e-05
1.26761e-05
1.43533e-05
1.60896e-05
1.78846e-05
1.97383e-05
2.16503e-05
2.36204e-05
2.56484e-05
2.7734e-05
2.98771e-05
3.20771e-05
3.43339e-05
3.66471e-05
3.90162e-05
4.14409e-05
4.39208e-05
4.64555e-05
4.90445e-05
5.16872e-05
5.43832e-05
5.71318e-05
5.99325e-05
6.27847e-05
6.5688e-05
6.86416e-05
7.16448e-05
7.46971e-05
7.77976e-05
8.09456e-05
8.41404e-05
8.7381e-05
9.06668e-05
9.39968e-05
9.73702e-05
0.000100786
0.000104243
0.000107741
0.000111279
0.000114855
0.000118468
0.000122117
0.000125801
0.000129519
0.000133269
0.000137051
0.000140862
0.000144702
0.00014857
0.000152463
0.000156381
0.000160322
0.000164283
0.000168265
0.000172265
0.000176281
0.000180313
0.000184358
0.000188415
0.000192482
0.000196558
0.000200641
0.000204729
0.000208821
0.000212916
0.000217011
0.000221105
0.000225197
0.000229285
0.000233369
0.000237446
0.000241516
0.000245578
0.000249631
0.000253674
0.000257707
0.000261728
0.000265737
0.000269733
0.000273716
0.000277685
0.000281639
0.000285575
0.000289493
0.000293389
0.00029726
0.000301102
0.000304908
0.000308673
0.000312389
-1.04052e-05
-1.07419e-05
-1.08983e-05
-1.09844e-05
-1.10096e-05
-1.09701e-05
-1.08671e-05
-1.07019e-05
-1.04749e-05
-1.01864e-05
-9.83681e-06
-9.42607e-06
-8.95432e-06
-8.42159e-06
-7.82791e-06
-7.17326e-06
-6.45761e-06
-5.68093e-06
-4.84325e-06
-3.94461e-06
-2.98507e-06
-1.96471e-06
-8.83617e-07
2.58163e-07
1.46056e-06
2.72351e-06
4.04691e-06
5.43065e-06
6.87459e-06
8.37858e-06
9.94247e-06
1.15661e-05
1.32492e-05
1.49916e-05
1.67932e-05
1.86536e-05
2.05728e-05
2.25504e-05
2.45862e-05
2.66801e-05
2.88317e-05
3.10406e-05
3.33067e-05
3.56294e-05
3.80085e-05
4.04437e-05
4.29344e-05
4.54804e-05
4.8081e-05
5.07358e-05
5.34443e-05
5.62059e-05
5.902e-05
6.18862e-05
6.48039e-05
6.77724e-05
7.07912e-05
7.38594e-05
7.69765e-05
8.01416e-05
8.33541e-05
8.66131e-05
8.99178e-05
9.32673e-05
9.66609e-05
0.000100097
0.000103576
0.000107096
0.000110656
0.000114255
0.000117892
0.000121566
0.000125275
0.000129019
0.000132795
0.000136604
0.000140443
0.000144312
0.000148209
0.000152132
0.00015608
0.000160051
0.000164045
0.000168059
0.000172091
0.000176141
0.000180207
0.000184287
0.000188379
0.000192482
0.000196594
0.000200714
0.00020484
0.00020897
0.000213103
0.000217237
0.00022137
0.000225501
0.000229629
0.000233752
0.000237869
0.000241978
0.000246079
0.000250171
0.000254251
0.00025832
0.000262376
0.000266419
0.000270447
0.000274458
0.000278453
0.000282429
0.000286384
0.000290316
0.000294222
0.000298099
0.000301941
0.000305744
0.000309502
0.000313207
-1.16772e-05
-1.20143e-05
-1.21705e-05
-1.22564e-05
-1.22811e-05
-1.22408e-05
-1.21367e-05
-1.19703e-05
-1.17419e-05
-1.14518e-05
-1.11005e-05
-1.06878e-05
-1.0214e-05
-9.67907e-06
-9.08298e-06
-8.42571e-06
-7.70723e-06
-6.92753e-06
-6.08663e-06
-5.1846e-06
-4.22151e-06
-3.19743e-06
-2.11243e-06
-9.66548e-07
2.40171e-07
1.50767e-06
2.83585e-06
4.22461e-06
5.6738e-06
7.18327e-06
8.75287e-06
1.03824e-05
1.20717e-05
1.38207e-05
1.5629e-05
1.74966e-05
1.94233e-05
2.14087e-05
2.34528e-05
2.55553e-05
2.77159e-05
2.99342e-05
3.22099e-05
3.45428e-05
3.69324e-05
3.93785e-05
4.18806e-05
4.44383e-05
4.70512e-05
4.97187e-05
5.24404e-05
5.52156e-05
5.8044e-05
6.09248e-05
6.38577e-05
6.68421e-05
6.98771e-05
7.29623e-05
7.60968e-05
7.928e-05
8.25111e-05
8.57895e-05
8.91141e-05
9.24843e-05
9.58991e-05
9.93576e-05
0.000102859
0.000106402
0.000109986
0.000113609
0.000117271
0.000120971
0.000124707
0.000128478
0.000132282
0.00013612
0.000139988
0.000143887
0.000147814
0.000151769
0.000155749
0.000159753
0.00016378
0.000167828
0.000171895
0.000175981
0.000180082
0.000184199
0.000188328
0.000192469
0.00019662
0.000200778
0.000204943
0.000209113
0.000213286
0.00021746
0.000221634
0.000225807
0.000229976
0.00023414
0.000238298
0.000242448
0.000246589
0.00025072
0.000254839
0.000258946
0.000263038
0.000267115
0.000271176
0.000275218
0.00027924
0.00028324
0.000287216
0.000291165
0.000295084
0.00029897
0.000302817
0.000306621
0.000310376
0.000314076
-1.30254e-05
-1.33631e-05
-1.35192e-05
-1.36047e-05
-1.3629e-05
-1.3588e-05
-1.34829e-05
-1.33152e-05
-1.30854e-05
-1.27938e-05
-1.24407e-05
-1.20261e-05
-1.15503e-05
-1.10131e-05
-1.04145e-05
-9.75459e-06
-9.03322e-06
-8.25042e-06
-7.40624e-06
-6.50074e-06
-5.53401e-06
-4.5061e-06
-3.41707e-06
-2.26694e-06
-1.05574e-06
2.16483e-07
1.54964e-06
2.94361e-06
4.39826e-06
5.91344e-06
7.489e-06
9.12477e-06
1.08206e-05
1.25763e-05
1.43918e-05
1.62669e-05
1.82014e-05
2.01951e-05
2.22478e-05
2.43593e-05
2.65292e-05
2.87573e-05
3.10432e-05
3.33866e-05
3.57872e-05
3.82447e-05
4.07587e-05
4.33288e-05
4.59545e-05
4.86353e-05
5.13708e-05
5.41604e-05
5.70037e-05
5.99e-05
6.28489e-05
6.58498e-05
6.8902e-05
7.20049e-05
7.51578e-05
7.836e-05
8.16108e-05
8.49095e-05
8.82552e-05
9.1647e-05
9.50841e-05
9.85656e-05
0.00010209
0.000105658
0.000109267
0.000112916
0.000116605
0.000120331
0.000124095
0.000127895
0.000131729
0.000135597
0.000139497
0.000143427
0.000147386
0.000151374
0.000155387
0.000159426
0.000163488
0.000167572
0.000171676
0.000175799
0.000179938
0.000184093
0.000188262
0.000192442
0.000196633
0.000200833
0.000205039
0.00020925
0.000213465
0.000217682
0.000221898
0.000226113
0.000230325
0.000234532
0.000238733
0.000242925
0.000247108
0.00025128
0.00025544
0.000259586
0.000263716
0.000267829
0.000271923
0.000275997
0.000280048
0.000284074
0.000288073
0.000292042
0.000295978
0.000299876
0.000303732
0.000307542
0.0003113
0.000315001
-1.44502e-05
-1.47886e-05
-1.49447e-05
-1.50298e-05
-1.50536e-05
-1.50119e-05
-1.49059e-05
-1.47369e-05
-1.45057e-05
-1.42126e-05
-1.38577e-05
-1.34413e-05
-1.29633e-05
-1.24239e-05
-1.18228e-05
-1.11601e-05
-1.04358e-05
-9.64985e-06
-8.80233e-06
-7.89331e-06
-6.92285e-06
-5.89102e-06
-4.79783e-06
-3.64331e-06
-2.42747e-06
-1.15036e-06
1.87934e-07
1.5873e-06
3.04762e-06
4.56872e-06
6.15048e-06
7.79275e-06
9.49539e-06
1.12583e-05
1.30812e-05
1.49641e-05
1.69068e-05
1.89091e-05
2.09707e-05
2.30915e-05
2.52712e-05
2.75094e-05
2.98059e-05
3.21603e-05
3.45724e-05
3.70418e-05
3.95682e-05
4.21512e-05
4.47903e-05
4.7485e-05
5.0235e-05
5.30396e-05
5.58985e-05
5.8811e-05
6.17767e-05
6.4795e-05
6.78652e-05
7.09867e-05
7.41588e-05
7.7381e-05
8.06524e-05
8.39723e-05
8.734e-05
9.07546e-05
9.42151e-05
9.77208e-05
0.00010127
0.000104863
0.000108499
0.000112175
0.000115891
0.000119647
0.00012344
0.00012727
0.000131135
0.000135035
0.000138967
0.00014293
0.000146924
0.000150946
0.000154995
0.00015907
0.000163169
0.00016729
0.000171433
0.000175595
0.000179774
0.000183969
0.000188179
0.000192401
0.000196634
0.000200876
0.000205126
0.000209381
0.000213639
0.0002179
0.000222161
0.000226421
0.000230678
0.000234929
0.000239174
0.000243411
0.000247637
0.000251852
0.000256054
0.00026024
0.000264409
0.00026856
0.00027269
0.000276798
0.00028088
0.000284935
0.00028896
0.000292952
0.000296907
0.000300821
0.000304691
0.000308511
0.000312276
0.000315982
-1.5952e-05
-1.62909e-05
-1.64472e-05
-1.6532e-05
-1.65553e-05
-1.65129e-05
-1.64059e-05
-1.62357e-05
-1.60031e-05
-1.57085e-05
-1.53519e-05
-1.49335e-05
-1.44535e-05
-1.39116e-05
-1.3308e-05
-1.26426e-05
-1.19152e-05
-1.11261e-05
-1.02752e-05
-9.36259e-06
-8.38833e-06
-7.35247e-06
-6.25501e-06
-5.09596e-06
-3.87534e-06
-2.59319e-06
-1.2496e-06
1.55333e-07
1.62149e-06
3.14874e-06
4.73694e-06
6.38598e-06
8.09571e-06
9.86601e-06
1.16968e-05
1.35878e-05
1.5539e-05
1.75501e-05
1.96211e-05
2.17515e-05
2.39413e-05
2.619e-05
2.84975e-05
3.08634e-05
3.32874e-05
3.57692e-05
3.83085e-05
4.09049e-05
4.35579e-05
4.62672e-05
4.90322e-05
5.18526e-05
5.47278e-05
5.76572e-05
6.06404e-05
6.36768e-05
6.67658e-05
6.99068e-05
7.30991e-05
7.6342e-05
7.9635e-05
8.29772e-05
8.63679e-05
8.98063e-05
9.32913e-05
9.68222e-05
0.000100398
0.000104018
0.00010768
0.000111385
0.000115131
0.000118916
0.00012274
0.000126602
0.000130499
0.000134432
0.000138398
0.000142396
0.000146425
0.000150484
0.00015457
0.000158683
0.000162821
0.000166982
0.000171165
0.000175367
0.000179589
0.000183826
0.000188079
0.000192345
0.000196622
0.000200909
0.000205203
0.000209504
0.000213808
0.000218116
0.000222423
0.00022673
0.000231033
0.000235331
0.000239622
0.000243905
0.000248177
0.000252436
0.000256682
0.000260911
0.000265121
0.000269312
0.00027348
0.000277623
0.000281739
0.000285826
0.000289879
0.000293897
0.000297874
0.000301809
0.000305695
0.00030953
0.000313307
0.000317022
-1.75311e-05
-1.78704e-05
-1.8027e-05
-1.81116e-05
-1.81343e-05
-1.80911e-05
-1.79832e-05
-1.78119e-05
-1.7578e-05
-1.72817e-05
-1.69234e-05
-1.65031e-05
-1.60209e-05
-1.54766e-05
-1.48704e-05
-1.42021e-05
-1.34718e-05
-1.26795e-05
-1.18251e-05
-1.09089e-05
-9.93073e-06
-8.89073e-06
-7.78888e-06
-6.62519e-06
-5.39966e-06
-4.11235e-06
-2.76332e-06
-1.35266e-06
1.19509e-07
1.65309e-06
3.24797e-06
4.90403e-06
6.62114e-06
8.39916e-06
1.0238e-05
1.21375e-05
1.40975e-05
1.61178e-05
1.81983e-05
2.03388e-05
2.2539e-05
2.47986e-05
2.71174e-05
2.94952e-05
3.19315e-05
3.44262e-05
3.69789e-05
3.95892e-05
4.22568e-05
4.49812e-05
4.77619e-05
5.05986e-05
5.34907e-05
5.64378e-05
5.94392e-05
6.24945e-05
6.56031e-05
6.87644e-05
7.19777e-05
7.52424e-05
7.85578e-05
8.19233e-05
8.53379e-05
8.88011e-05
9.23117e-05
9.58689e-05
9.94719e-05
0.00010312
0.000106811
0.000110545
0.000114321
0.000118138
0.000121994
0.000125889
0.00012982
0.000133788
0.000137789
0.000141824
0.00014589
0.000149987
0.000154112
0.000158265
0.000162443
0.000166646
0.000170871
0.000175117
0.000179381
0.000183663
0.000187961
0.000192272
0.000196596
0.000200929
0.000205271
0.000209619
0.000213972
0.000218328
0.000222684
0.000227039
0.000231391
0.000235738
0.000240077
0.000244408
0.000248727
0.000253033
0.000257324
0.000261598
0.000265852
0.000270085
0.000274293
0.000278475
0.000282628
0.000286748
0.000290833
0.000294879
0.000298883
0.000302841
0.000306748
0.000310601
0.000314394
0.000318123
-1.91878e-05
-1.95275e-05
-1.96842e-05
-1.97688e-05
-1.9791e-05
-1.97471e-05
-1.96382e-05
-1.94658e-05
-1.92305e-05
-1.89326e-05
-1.85725e-05
-1.81503e-05
-1.76658e-05
-1.71192e-05
-1.65103e-05
-1.58392e-05
-1.51058e-05
-1.43102e-05
-1.34524e-05
-1.25324e-05
-1.15503e-05
-1.05061e-05
-9.39976e-06
-8.23131e-06
-7.00076e-06
-5.70816e-06
-4.35357e-06
-2.93705e-06
-1.4587e-06
8.14144e-08
1.68318e-06
3.34648e-06
5.07121e-06
6.85722e-06
8.7044e-06
1.06126e-05
1.25817e-05
1.46115e-05
1.67019e-05
1.88527e-05
2.10637e-05
2.33346e-05
2.56651e-05
2.80551e-05
3.05043e-05
3.30123e-05
3.55789e-05
3.82037e-05
4.08863e-05
4.36263e-05
4.64234e-05
4.9277e-05
5.21867e-05
5.5152e-05
5.81724e-05
6.12473e-05
6.43762e-05
6.75586e-05
7.07937e-05
7.4081e-05
7.74198e-05
8.08094e-05
8.42491e-05
8.7738e-05
9.12753e-05
9.48601e-05
9.84914e-05
0.000102168
0.00010589
0.000109655
0.000113463
0.000117312
0.000121202
0.000125131
0.000129097
0.000133101
0.00013714
0.000141212
0.000145318
0.000149454
0.00015362
0.000157815
0.000162035
0.000166281
0.00017055
0.000174841
0.000179151
0.00018348
0.000187824
0.000192183
0.000196555
0.000200937
0.000205329
0.000209727
0.00021413
0.000218536
0.000222943
0.000227349
0.000231752
0.000236149
0.000240539
0.00024492
0.000249289
0.000253644
0.000257983
0.000262304
0.000266604
0.000270881
0.000275132
0.000279355
0.000283547
0.000287704
0.000291823
0.000295901
0.000299935
0.00030392
0.000307852
0.000311727
0.00031554
0.000319287
-2.09224e-05
-2.12626e-05
-2.14193e-05
-2.15038e-05
-2.15256e-05
-2.1481e-05
-2.13712e-05
-2.11976e-05
-2.09609e-05
-2.06615e-05
-2.02996e-05
-1.98753e-05
-1.93886e-05
-1.88395e-05
-1.8228e-05
-1.7554e-05
-1.68176e-05
-1.60187e-05
-1.51573e-05
-1.42336e-05
-1.32474e-05
-1.21989e-05
-1.1088e-05
-9.91466e-06
-8.679e-06
-7.381e-06
-6.02072e-06
-4.5982e-06
-3.11351e-06
-1.5667e-06
4.21381e-08
1.71289e-06
3.44545e-06
5.23967e-06
7.09544e-06
9.01262e-06
1.09911e-05
1.30307e-05
1.51313e-05
1.72927e-05
1.95147e-05
2.17972e-05
2.41399e-05
2.65426e-05
2.90049e-05
3.15267e-05
3.41077e-05
3.67474e-05
3.94456e-05
4.22019e-05
4.50158e-05
4.78869e-05
5.08148e-05
5.3799e-05
5.6839e-05
5.99343e-05
6.30843e-05
6.62885e-05
6.95463e-05
7.2857e-05
7.62201e-05
7.96348e-05
8.31005e-05
8.66162e-05
9.01812e-05
9.37946e-05
9.74553e-05
0.000101163
0.000104915
0.000108712
0.000112553
0.000116437
0.000120361
0.000124326
0.000128329
0.000132371
0.000136448
0.000140561
0.000144707
0.000148885
0.000153093
0.000157331
0.000161596
0.000165887
0.000170202
0.000174539
0.000178897
0.000183274
0.000187668
0.000192077
0.000196499
0.000200933
0.000205375
0.000209826
0.000214281
0.00021874
0.0002232
0.000227659
0.000232115
0.000236565
0.000241008
0.000245442
0.000249863
0.000254269
0.000258659
0.000263029
0.000267377
0.000271701
0.000275998
0.000280265
0.000284498
0.000288695
0.000292852
0.000296966
0.000301033
0.000305048
0.000309009
0.00031291
0.000316747
0.000320515
-2.2735e-05
-2.3076e-05
-2.32326e-05
-2.33169e-05
-2.33384e-05
-2.32931e-05
-2.31823e-05
-2.30076e-05
-2.27696e-05
-2.24686e-05
-2.21049e-05
-2.16786e-05
-2.11896e-05
-2.0638e-05
-2.00238e-05
-1.93469e-05
-1.86074e-05
-1.78051e-05
-1.69402e-05
-1.60127e-05
-1.50224e-05
-1.39695e-05
-1.28539e-05
-1.16756e-05
-1.04347e-05
-9.13124e-06
-7.76515e-06
-6.33649e-06
-4.84531e-06
-3.29164e-06
-1.67557e-06
2.80182e-09
1.74337e-06
3.546e-06
5.41057e-06
7.33696e-06
9.32502e-06
1.13746e-05
1.34857e-05
1.5658e-05
1.78915e-05
2.01859e-05
2.25411e-05
2.49568e-05
2.74328e-05
2.99688e-05
3.25646e-05
3.52198e-05
3.79341e-05
4.07071e-05
4.35384e-05
4.64276e-05
4.93742e-05
5.23779e-05
5.54382e-05
5.85545e-05
6.17264e-05
6.49532e-05
6.82344e-05
7.15694e-05
7.49576e-05
7.83984e-05
8.1891e-05
8.54345e-05
8.90283e-05
9.26713e-05
9.63627e-05
0.000100101
0.000103887
0.000107717
0.000111592
0.000115511
0.000119472
0.000123474
0.000127515
0.000131596
0.000135714
0.000139868
0.000144056
0.000148277
0.00015253
0.000156813
0.000161124
0.000165462
0.000169825
0.000174211
0.000178619
0.000183046
0.000187491
0.000191952
0.000196427
0.000200914
0.000205411
0.000209915
0.000214426
0.000218939
0.000223455
0.000227969
0.00023248
0.000236987
0.000241485
0.000245973
0.000250448
0.000254909
0.000259351
0.000263774
0.000268173
0.000272547
0.000276892
0.000281205
0.000285483
0.000289723
0.000293922
0.000298074
0.000302178
0.000306228
0.000310221
0.000314152
0.000318016
0.00032181
-2.46259e-05
-2.49677e-05
-2.51244e-05
-2.52085e-05
-2.52296e-05
-2.51837e-05
-2.5072e-05
-2.48962e-05
-2.46568e-05
-2.43543e-05
-2.39887e-05
-2.35603e-05
-2.30691e-05
-2.2515e-05
-2.18981e-05
-2.12183e-05
-2.04756e-05
-1.967e-05
-1.88015e-05
-1.787e-05
-1.68756e-05
-1.58182e-05
-1.46978e-05
-1.35146e-05
-1.22684e-05
-1.09593e-05
-9.58725e-06
-8.15232e-06
-6.6545e-06
-5.09384e-06
-3.4704e-06
-1.78427e-06
-3.55404e-08
1.77566e-06
3.64922e-06
5.58501e-06
7.58292e-06
9.64282e-06
1.17646e-05
1.39482e-05
1.61934e-05
1.85e-05
2.0868e-05
2.32972e-05
2.57872e-05
2.83379e-05
3.0949e-05
3.36201e-05
3.63509e-05
3.91412e-05
4.19904e-05
4.48982e-05
4.78641e-05
5.08879e-05
5.39691e-05
5.71071e-05
6.03015e-05
6.35517e-05
6.68571e-05
7.02172e-05
7.36315e-05
7.70991e-05
8.06195e-05
8.4192e-05
8.78155e-05
9.14893e-05
9.52123e-05
9.89837e-05
0.000102803
0.000106668
0.000110579
0.000114534
0.000118532
0.000122573
0.000126654
0.000130775
0.000134935
0.000139132
0.000143364
0.00014763
0.000151929
0.000156259
0.000160618
0.000165005
0.000169418
0.000173855
0.000178315
0.000182794
0.000187293
0.000191808
0.000196338
0.00020088
0.000205433
0.000209995
0.000214562
0.000219133
0.000223706
0.000228279
0.000232848
0.000237412
0.000241969
0.000246514
0.000251047
0.000255563
0.000260062
0.000264539
0.000268993
0.000273419
0.000277815
0.000282178
0.000286505
0.000290791
0.000295034
0.000299229
0.000303372
0.000307461
0.000311489
0.000315454
0.00031935
0.000323173
-2.65955e-05
-2.69381e-05
-2.70949e-05
-2.71788e-05
-2.71995e-05
-2.7153e-05
-2.70405e-05
-2.68635e-05
-2.66228e-05
-2.63187e-05
-2.59513e-05
-2.55209e-05
-2.50274e-05
-2.44708e-05
-2.38511e-05
-2.31684e-05
-2.24226e-05
-2.16136e-05
-2.07414e-05
-1.9806e-05
-1.88073e-05
-1.77454e-05
-1.66203e-05
-1.54319e-05
-1.41803e-05
-1.28655e-05
-1.14874e-05
-1.00461e-05
-8.54154e-06
-6.97377e-06
-5.34284e-06
-3.64882e-06
-1.89181e-06
-7.18892e-08
1.81082e-06
3.75621e-06
5.76416e-06
7.83458e-06
9.96736e-06
1.21624e-05
1.44196e-05
1.67389e-05
1.91201e-05
2.15629e-05
2.40674e-05
2.66331e-05
2.92599e-05
3.19474e-05
3.46952e-05
3.75032e-05
4.03708e-05
4.32977e-05
4.62836e-05
4.93281e-05
5.24308e-05
5.55911e-05
5.88087e-05
6.2083e-05
6.54134e-05
6.87994e-05
7.22405e-05
7.5736e-05
7.92852e-05
8.28873e-05
8.65416e-05
9.02471e-05
9.40029e-05
9.78081e-05
0.000101662
0.000105563
0.000109511
0.000113504
0.000117541
0.000121622
0.000125744
0.000129908
0.000134111
0.000138352
0.00014263
0.000146943
0.00015129
0.000155669
0.000160078
0.000164516
0.00016898
0.00017347
0.000177983
0.000182518
0.000187072
0.000191644
0.000196231
0.000200831
0.000205443
0.000210063
0.00021469
0.000219322
0.000223955
0.000228588
0.000233218
0.000237843
0.000242459
0.000247065
0.000251658
0.000256234
0.000260791
0.000265326
0.000269836
0.000274318
0.000278769
0.000283185
0.000287563
0.000291899
0.000296189
0.00030043
0.000304618
0.000308748
0.000312816
0.000316818
0.000320749
0.000324605
-2.8644e-05
-2.89873e-05
-2.91445e-05
-2.92282e-05
-2.92484e-05
-2.92013e-05
-2.90879e-05
-2.89099e-05
-2.86679e-05
-2.83622e-05
-2.7993e-05
-2.75606e-05
-2.70648e-05
-2.65057e-05
-2.58833e-05
-2.51976e-05
-2.44486e-05
-2.36362e-05
-2.27603e-05
-2.18209e-05
-2.0818e-05
-1.97516e-05
-1.86216e-05
-1.74281e-05
-1.6171e-05
-1.48504e-05
-1.34662e-05
-1.20183e-05
-1.05069e-05
-8.9319e-06
-7.29339e-06
-5.59139e-06
-3.82597e-06
-1.99722e-06
-1.0521e-07
1.84994e-06
3.86814e-06
5.94929e-06
8.09331e-06
1.03001e-05
1.25696e-05
1.49018e-05
1.72964e-05
1.97534e-05
2.22726e-05
2.48537e-05
2.74965e-05
3.02008e-05
3.29661e-05
3.57922e-05
3.86787e-05
4.16253e-05
4.46317e-05
4.76974e-05
5.08222e-05
5.40056e-05
5.7247e-05
6.05461e-05
6.39022e-05
6.7315e-05
7.07837e-05
7.43078e-05
7.78867e-05
8.15195e-05
8.52054e-05
8.89437e-05
9.27333e-05
9.65734e-05
0.000100463
0.000104401
0.000108387
0.000112419
0.000116497
0.000120619
0.000124785
0.000128992
0.00013324
0.000137528
0.000141853
0.000146214
0.000150611
0.00015504
0.000159501
0.000163992
0.00016851
0.000173055
0.000177624
0.000182216
0.000186828
0.000191458
0.000196105
0.000200765
0.000205438
0.00021012
0.000214809
0.000219503
0.0002242
0.000228896
0.000233589
0.000238277
0.000242957
0.000247626
0.000252282
0.00025692
0.000261539
0.000266135
0.000270705
0.000275246
0.000279754
0.000284227
0.000288659
0.000293048
0.00029739
0.000301681
0.000305916
0.000310091
0.000314203
0.000318246
0.000322216
0.000326109
-3.07719e-05
-3.11159e-05
-3.12732e-05
-3.13568e-05
-3.13767e-05
-3.1329e-05
-3.12148e-05
-3.10356e-05
-3.07923e-05
-3.04851e-05
-3.01141e-05
-2.96796e-05
-2.91816e-05
-2.862e-05
-2.79949e-05
-2.73063e-05
-2.65541e-05
-2.57382e-05
-2.48586e-05
-2.39153e-05
-2.29081e-05
-2.18371e-05
-2.07022e-05
-1.95035e-05
-1.82409e-05
-1.69144e-05
-1.55239e-05
-1.40694e-05
-1.25511e-05
-1.09688e-05
-9.3226e-06
-7.61253e-06
-5.83861e-06
-4.00089e-06
-2.09945e-06
-1.34378e-07
1.89424e-06
3.98631e-06
6.14177e-06
8.36056e-06
1.06426e-05
1.29879e-05
1.53963e-05
1.78677e-05
2.0402e-05
2.29988e-05
2.56581e-05
2.83794e-05
3.11626e-05
3.40073e-05
3.69132e-05
3.98799e-05
4.29073e-05
4.59949e-05
4.91424e-05
5.23494e-05
5.56154e-05
5.89399e-05
6.23225e-05
6.57627e-05
6.92599e-05
7.28135e-05
7.64229e-05
8.00872e-05
8.38057e-05
8.75776e-05
9.14021e-05
9.52782e-05
9.92049e-05
0.000103181
0.000107207
0.00011128
0.000115399
0.000119564
0.000123774
0.000128027
0.000132321
0.000136657
0.000141031
0.000145442
0.00014989
0.000154372
0.000158887
0.000163432
0.000168007
0.000172609
0.000177236
0.000181887
0.000186559
0.00019125
0.000195959
0.000200682
0.000205418
0.000210164
0.000214918
0.000219677
0.00022444
0.000229202
0.000233962
0.000238716
0.000243462
0.000248197
0.000252919
0.000257623
0.000262306
0.000266966
0.0002716
0.000276203
0.000280772
0.000285304
0.000289795
0.000294241
0.000298638
0.000302981
0.000307268
0.000311492
0.000315651
0.000319739
0.000323752
0.000327685
-3.29794e-05
-3.3324e-05
-3.34816e-05
-3.35651e-05
-3.35846e-05
-3.35362e-05
-3.34212e-05
-3.3241e-05
-3.29964e-05
-3.26876e-05
-3.23149e-05
-3.18784e-05
-3.13781e-05
-3.08141e-05
-3.01863e-05
-2.94948e-05
-2.87394e-05
-2.79201e-05
-2.70367e-05
-2.60894e-05
-2.50779e-05
-2.40023e-05
-2.28626e-05
-2.16586e-05
-2.03904e-05
-1.90579e-05
-1.76611e-05
-1.62e-05
-1.46746e-05
-1.3085e-05
-1.1431e-05
-9.71279e-06
-7.93027e-06
-6.08349e-06
-4.1725e-06
-2.19738e-06
-1.58194e-07
1.94497e-06
4.11207e-06
6.34307e-06
8.63793e-06
1.09966e-05
1.3419e-05
1.59051e-05
1.84547e-05
2.10677e-05
2.37436e-05
2.64825e-05
2.92838e-05
3.21475e-05
3.50732e-05
3.80607e-05
4.11095e-05
4.42196e-05
4.73903e-05
5.06215e-05
5.39126e-05
5.72633e-05
6.06731e-05
6.41415e-05
6.7668e-05
7.12518e-05
7.48924e-05
7.85891e-05
8.23411e-05
8.61477e-05
9.00079e-05
9.3921e-05
9.7886e-05
0.000101902
0.000105968
0.000110083
0.000114246
0.000118455
0.000122711
0.00012701
0.000131353
0.000135738
0.000140163
0.000144626
0.000149127
0.000153663
0.000158234
0.000162836
0.000167468
0.00017213
0.000176817
0.000181529
0.000186264
0.000191019
0.000195791
0.00020058
0.000205382
0.000210195
0.000215016
0.000219844
0.000224674
0.000229506
0.000234334
0.000239158
0.000243974
0.000248778
0.000253568
0.000258341
0.000263093
0.00026782
0.00027252
0.000277189
0.000281823
0.000286418
0.000290971
0.000295478
0.000299933
0.000304334
0.000308675
0.000312953
0.000317163
0.0003213
0.000325359
0.000329337
-3.52668e-05
-3.56121e-05
-3.57698e-05
-3.58533e-05
-3.58724e-05
-3.58235e-05
-3.57076e-05
-3.55264e-05
-3.52804e-05
-3.49702e-05
-3.45957e-05
-3.41572e-05
-3.36547e-05
-3.30883e-05
-3.24579e-05
-3.17634e-05
-3.10048e-05
-3.0182e-05
-2.92949e-05
-2.83436e-05
-2.73278e-05
-2.62476e-05
-2.5103e-05
-2.38937e-05
-2.26199e-05
-2.12814e-05
-1.98783e-05
-1.84105e-05
-1.68781e-05
-1.5281e-05
-1.36192e-05
-1.18928e-05
-1.01016e-05
-8.24561e-06
-6.32497e-06
-4.33968e-06
-2.28981e-06
-1.75406e-07
2.0035e-06
4.2469e-06
6.55476e-06
8.92708e-06
1.13638e-05
1.38648e-05
1.64301e-05
1.90593e-05
2.17523e-05
2.45089e-05
2.73289e-05
3.02119e-05
3.31579e-05
3.61664e-05
3.92373e-05
4.23702e-05
4.55648e-05
4.88207e-05
5.21377e-05
5.55152e-05
5.89528e-05
6.24501e-05
6.60065e-05
6.96214e-05
7.32941e-05
7.7024e-05
8.08103e-05
8.46524e-05
8.85495e-05
9.25006e-05
9.6505e-05
0.000100562
0.000104669
0.000108828
0.000113035
0.00011729
0.000121593
0.000125941
0.000130334
0.000134769
0.000139246
0.000143764
0.00014832
0.000152912
0.00015754
0.000162201
0.000166894
0.000171616
0.000176366
0.000181142
0.000185942
0.000190762
0.000195602
0.000200458
0.000205329
0.000210211
0.000215103
0.000220001
0.000224903
0.000229806
0.000234707
0.000239603
0.000244491
0.000249368
0.000254231
0.000259075
0.000263899
0.000268697
0.000273467
0.000278206
0.000282908
0.00028757
0.000292189
0.000296759
0.000301278
0.000305739
0.00031014
0.000314474
0.000318739
0.000322929
0.000327039
0.000331065
-3.76344e-05
-3.79804e-05
-3.81383e-05
-3.82217e-05
-3.82405e-05
-3.8191e-05
-3.80743e-05
-3.7892e-05
-3.76448e-05
-3.7333e-05
-3.69569e-05
-3.65165e-05
-3.60118e-05
-3.54429e-05
-3.48098e-05
-3.41124e-05
-3.33506e-05
-3.25244e-05
-3.16336e-05
-3.06783e-05
-2.96582e-05
-2.85735e-05
-2.74239e-05
-2.62094e-05
-2.493e-05
-2.35855e-05
-2.2176e-05
-2.07015e-05
-1.9162e-05
-1.75575e-05
-1.58878e-05
-1.4153e-05
-1.2353e-05
-1.04879e-05
-8.55749e-06
-6.56196e-06
-4.50129e-06
-2.37553e-06
-1.84664e-07
2.0713e-06
4.39236e-06
6.77853e-06
9.22975e-06
1.1746e-05
1.4327e-05
1.69728e-05
1.96831e-05
2.24578e-05
2.52967e-05
2.81995e-05
3.11661e-05
3.41961e-05
3.72894e-05
4.04457e-05
4.36647e-05
4.69459e-05
5.02892e-05
5.36942e-05
5.71603e-05
6.06871e-05
6.42742e-05
6.79208e-05
7.16263e-05
7.53903e-05
7.92119e-05
8.30904e-05
8.70252e-05
9.10155e-05
9.50602e-05
9.91586e-05
0.00010331
0.000107512
0.000111766
0.000116068
0.000120419
0.000124817
0.000129261
0.00013375
0.000138281
0.000142854
0.000147466
0.000152117
0.000156804
0.000161526
0.000166281
0.000171067
0.000175882
0.000180724
0.000185591
0.000190479
0.000195388
0.000200315
0.000205257
0.000210212
0.000215177
0.000220149
0.000225125
0.000230103
0.000235079
0.000240051
0.000245015
0.000249967
0.000254905
0.000259825
0.000264724
0.000269597
0.000274441
0.000279253
0.000284027
0.00028876
0.000293449
0.000298087
0.000302672
0.000307199
0.000311662
0.000316058
0.000320382
0.000324628
0.000328793
0.000332871
-4.00824e-05
-4.04293e-05
-4.05873e-05
-4.06707e-05
-4.06892e-05
-4.06391e-05
-4.05216e-05
-4.03383e-05
-4.00899e-05
-3.97766e-05
-3.93988e-05
-3.89564e-05
-3.84496e-05
-3.78784e-05
-3.72426e-05
-3.65423e-05
-3.57773e-05
-3.49477e-05
-3.40532e-05
-3.30939e-05
-3.20696e-05
-3.09803e-05
-2.98258e-05
-2.8606e-05
-2.7321e-05
-2.59706e-05
-2.45547e-05
-2.30736e-05
-2.15269e-05
-1.99149e-05
-1.82373e-05
-1.64941e-05
-1.46853e-05
-1.28109e-05
-1.08707e-05
-8.86485e-06
-6.79332e-06
-4.65609e-06
-2.45315e-06
-1.84483e-07
2.14994e-06
4.55013e-06
7.01604e-06
9.54761e-06
1.21447e-05
1.48073e-05
1.75352e-05
2.03282e-05
2.31863e-05
2.61092e-05
2.90967e-05
3.21487e-05
3.52649e-05
3.8445e-05
4.16888e-05
4.49959e-05
4.83661e-05
5.1799e-05
5.52942e-05
5.88512e-05
6.24695e-05
6.61486e-05
6.98878e-05
7.36866e-05
7.75443e-05
8.14603e-05
8.54338e-05
8.94641e-05
9.35503e-05
9.76916e-05
0.000101887
0.000106135
0.000110436
0.000114787
0.000119188
0.000123638
0.000128135
0.000132677
0.000137264
0.000141894
0.000146565
0.000151276
0.000156025
0.00016081
0.000165629
0.000170481
0.000175363
0.000180273
0.000185209
0.000190169
0.00019515
0.00020015
0.000205166
0.000210196
0.000215237
0.000220285
0.000225339
0.000230395
0.00023545
0.0002405
0.000245543
0.000250575
0.000255592
0.000260591
0.000265569
0.00027052
0.000275442
0.000280331
0.000285181
0.000289989
0.000294751
0.000299462
0.000304118
0.000308713
0.000313244
0.000317705
0.000322092
0.0003264
0.000330623
0.000334757
-4.26112e-05
-4.29591e-05
-4.31173e-05
-4.32006e-05
-4.32188e-05
-4.31682e-05
-4.30499e-05
-4.28656e-05
-4.26159e-05
-4.23012e-05
-4.19217e-05
-4.14775e-05
-4.09686e-05
-4.0395e-05
-3.97566e-05
-3.90533e-05
-3.82852e-05
-3.74522e-05
-3.6554e-05
-3.55908e-05
-3.45623e-05
-3.34684e-05
-3.2309e-05
-3.10841e-05
-2.97934e-05
-2.84371e-05
-2.7015e-05
-2.55271e-05
-2.39734e-05
-2.23538e-05
-2.06683e-05
-1.89167e-05
-1.7099e-05
-1.52152e-05
-1.32653e-05
-1.1249e-05
-9.16657e-06
-7.01781e-06
-4.8027e-06
-2.52122e-06
-1.73309e-07
2.24103e-06
4.72177e-06
7.26887e-06
9.88225e-06
1.25618e-05
1.53075e-05
1.81191e-05
2.09967e-05
2.394e-05
2.69488e-05
3.00231e-05
3.31625e-05
3.63668e-05
3.96358e-05
4.29693e-05
4.63669e-05
4.98283e-05
5.33531e-05
5.69409e-05
6.05912e-05
6.43034e-05
6.8077e-05
7.19114e-05
7.58061e-05
7.97603e-05
8.37735e-05
8.78449e-05
9.19736e-05
9.61589e-05
0.0001004
0.000104695
0.000109044
0.000113445
0.000117898
0.0001224
0.000126952
0.00013155
0.000136195
0.000140883
0.000145615
0.000150388
0.0001552
0.00016005
0.000164936
0.000169856
0.000174807
0.000179788
0.000184796
0.000189829
0.000194885
0.000199961
0.000205054
0.000210162
0.000215282
0.00022041
0.000225544
0.000230681
0.000235818
0.000240951
0.000246076
0.000251191
0.000256291
0.000261373
0.000266433
0.000271467
0.00027647
0.00028144
0.00028637
0.000291258
0.000296097
0.000300885
0.000305615
0.000310284
0.000314887
0.000319417
0.000323872
0.000328245
0.000332531
0.000336726
-4.52212e-05
-4.55699e-05
-4.57285e-05
-4.58117e-05
-4.58297e-05
-4.57785e-05
-4.56595e-05
-4.54742e-05
-4.52234e-05
-4.49073e-05
-4.45261e-05
-4.408e-05
-4.3569e-05
-4.2993e-05
-4.2352e-05
-4.1646e-05
-4.08748e-05
-4.00383e-05
-3.91366e-05
-3.81694e-05
-3.71367e-05
-3.60383e-05
-3.48741e-05
-3.3644e-05
-3.23478e-05
-3.09856e-05
-2.95572e-05
-2.80627e-05
-2.65019e-05
-2.48748e-05
-2.31813e-05
-2.14213e-05
-1.95948e-05
-1.77016e-05
-1.57418e-05
-1.37152e-05
-1.16217e-05
-9.46139e-06
-7.23407e-06
-4.93969e-06
-2.57822e-06
-1.49641e-07
2.34605e-06
4.90881e-06
7.53859e-06
1.02353e-05
1.2999e-05
1.58295e-05
1.87268e-05
2.16907e-05
2.47212e-05
2.7818e-05
3.0981e-05
3.42099e-05
3.75046e-05
4.08648e-05
4.42902e-05
4.77806e-05
5.13356e-05
5.49548e-05
5.86376e-05
6.23837e-05
6.61924e-05
7.00632e-05
7.39957e-05
7.79891e-05
8.20428e-05
8.61562e-05
9.03285e-05
9.45588e-05
9.88462e-05
0.00010319
0.000107588
0.000112041
0.000116546
0.000121103
0.00012571
0.000130366
0.00013507
0.00013982
0.000144614
0.00014945
0.000154328
0.000159245
0.0001642
0.000169189
0.000174212
0.000179267
0.00018435
0.000189459
0.000194592
0.000199747
0.00020492
0.000210108
0.00021531
0.000220521
0.000225739
0.000230961
0.000236183
0.000241401
0.000246613
0.000251814
0.000257001
0.000262169
0.000267316
0.000272436
0.000277526
0.00028258
0.000287595
0.000292566
0.000297488
0.000302356
0.000307166
0.000311913
0.000316591
0.000321196
0.000325722
0.000330165
0.000334518
0.000338778
-4.79126e-05
-4.82622e-05
-4.84211e-05
-4.85043e-05
-4.85221e-05
-4.84705e-05
-4.83508e-05
-4.81645e-05
-4.79125e-05
-4.7595e-05
-4.72123e-05
-4.67643e-05
-4.62512e-05
-4.56729e-05
-4.50294e-05
-4.43206e-05
-4.35463e-05
-4.27066e-05
-4.18013e-05
-4.08303e-05
-3.97934e-05
-3.86905e-05
-3.75215e-05
-3.62863e-05
-3.49846e-05
-3.36166e-05
-3.2182e-05
-3.06808e-05
-2.9113e-05
-2.74784e-05
-2.57769e-05
-2.40086e-05
-2.21732e-05
-2.02707e-05
-1.8301e-05
-1.6264e-05
-1.41596e-05
-1.19876e-05
-9.74802e-06
-7.44073e-06
-5.06565e-06
-2.62277e-06
-1.12053e-07
2.46647e-06
5.11279e-06
7.82687e-06
1.06087e-05
1.34583e-05
1.63755e-05
1.93603e-05
2.24127e-05
2.55323e-05
2.87192e-05
3.1973e-05
3.52937e-05
3.86811e-05
4.21348e-05
4.56546e-05
4.92403e-05
5.28913e-05
5.66073e-05
6.03878e-05
6.42324e-05
6.81404e-05
7.21114e-05
7.61448e-05
8.024e-05
8.43964e-05
8.86132e-05
9.28896e-05
9.72246e-05
0.000101617
0.000106067
0.000110572
0.000115131
0.000119744
0.000124409
0.000129124
0.000133888
0.0001387
0.000143559
0.000148461
0.000153407
0.000158393
0.000163418
0.000168481
0.000173578
0.000178708
0.000183868
0.000189056
0.000194269
0.000199505
0.000204761
0.000210033
0.00021532
0.000220618
0.000225923
0.000231233
0.000236543
0.000241851
0.000247153
0.000252444
0.000257721
0.000262981
0.000268218
0.000273428
0.000278608
0.000283752
0.000288855
0.000293914
0.000298923
0.000303877
0.000308771
0.0003136
0.000318359
0.000323043
0.000327645
0.000332162
0.000336587
0.000340915
-5.06859e-05
-5.10363e-05
-5.11955e-05
-5.12788e-05
-5.12964e-05
-5.12443e-05
-5.11239e-05
-5.09368e-05
-5.06836e-05
-5.03648e-05
-4.99804e-05
-4.95307e-05
-4.90156e-05
-4.84351e-05
-4.77891e-05
-4.70775e-05
-4.63003e-05
-4.54574e-05
-4.45486e-05
-4.35737e-05
-4.25328e-05
-4.14254e-05
-4.02517e-05
-3.90113e-05
-3.77043e-05
-3.63305e-05
-3.48898e-05
-3.3382e-05
-3.18072e-05
-3.01652e-05
-2.84559e-05
-2.66792e-05
-2.4835e-05
-2.29232e-05
-2.09436e-05
-1.88962e-05
-1.67807e-05
-1.45972e-05
-1.23454e-05
-1.00251e-05
-7.63647e-06
-5.17925e-06
-2.65346e-06
-5.90937e-08
2.60385e-06
5.3354e-06
8.13555e-06
1.10043e-05
1.39417e-05
1.69476e-05
2.0022e-05
2.31647e-05
2.63757e-05
2.96548e-05
3.30018e-05
3.64167e-05
3.98991e-05
4.34488e-05
4.70655e-05
5.0749e-05
5.44987e-05
5.83143e-05
6.21953e-05
6.61412e-05
7.01516e-05
7.42258e-05
7.83634e-05
8.25636e-05
8.68259e-05
9.11493e-05
9.5533e-05
9.99761e-05
0.000104478
0.000109036
0.000113651
0.000118321
0.000123045
0.000127821
0.000132648
0.000137524
0.000142448
0.000147419
0.000152434
0.000157492
0.00016259
0.000167727
0.000172901
0.000178109
0.000183349
0.000188618
0.000193914
0.000199234
0.000204576
0.000209936
0.000215311
0.000220698
0.000226094
0.000231495
0.000236898
0.000242299
0.000247694
0.00025308
0.000258452
0.000263806
0.000269138
0.000274443
0.000279717
0.000284955
0.000290151
0.000295302
0.000300403
0.000305447
0.00031043
0.000315346
0.000320191
0.000324958
0.000329642
0.000334238
0.000338739
0.000343141
-5.35413e-05
-5.38925e-05
-5.40521e-05
-5.41355e-05
-5.41529e-05
-5.41004e-05
-5.39793e-05
-5.37913e-05
-5.3537e-05
-5.32169e-05
-5.2831e-05
-5.23795e-05
-5.18625e-05
-5.12798e-05
-5.06314e-05
-4.99172e-05
-4.91371e-05
-4.82911e-05
-4.73788e-05
-4.64002e-05
-4.53552e-05
-4.42435e-05
-4.30651e-05
-4.18198e-05
-4.05074e-05
-3.91279e-05
-3.76811e-05
-3.61669e-05
-3.45852e-05
-3.29359e-05
-3.12187e-05
-2.94338e-05
-2.75808e-05
-2.56596e-05
-2.36702e-05
-2.16124e-05
-1.94861e-05
-1.72909e-05
-1.50269e-05
-1.26938e-05
-1.02915e-05
-7.81998e-06
-5.2791e-06
-2.66885e-06
1.07908e-08
2.75987e-06
5.57843e-06
8.46651e-06
1.14241e-05
1.44513e-05
1.75479e-05
2.07139e-05
2.39493e-05
2.72539e-05
3.06275e-05
3.40702e-05
3.75816e-05
4.11616e-05
4.48099e-05
4.85262e-05
5.23102e-05
5.61614e-05
6.00794e-05
6.40639e-05
6.81143e-05
7.22302e-05
7.64109e-05
8.0656e-05
8.49646e-05
8.9336e-05
9.37694e-05
9.82639e-05
0.000102819
0.000107432
0.000112104
0.000116833
0.000121617
0.000126455
0.000131346
0.000136289
0.000141281
0.000146321
0.000151408
0.000156539
0.000161713
0.000166927
0.000172179
0.000177468
0.00018279
0.000188144
0.000193525
0.000198933
0.000204363
0.000209813
0.00021528
0.00022076
0.00022625
0.000231747
0.000237246
0.000242744
0.000248237
0.000253721
0.000259192
0.000264645
0.000270076
0.00027548
0.000280853
0.000286189
0.000291484
0.000296732
0.000301928
0.000307068
0.000312144
0.000317153
0.000322088
0.000326944
0.000331714
0.000336394
0.000340976
0.000345457
-5.64791e-05
-5.68312e-05
-5.69911e-05
-5.70746e-05
-5.70919e-05
-5.7039e-05
-5.69173e-05
-5.67284e-05
-5.6473e-05
-5.61516e-05
-5.57642e-05
-5.53111e-05
-5.47921e-05
-5.42074e-05
-5.35567e-05
-5.284e-05
-5.20572e-05
-5.1208e-05
-5.02924e-05
-4.93101e-05
-4.82611e-05
-4.71452e-05
-4.59622e-05
-4.4712e-05
-4.33944e-05
-4.20094e-05
-4.05566e-05
-3.90361e-05
-3.74476e-05
-3.5791e-05
-3.40662e-05
-3.2273e-05
-3.04112e-05
-2.84809e-05
-2.64817e-05
-2.44136e-05
-2.22764e-05
-2.00697e-05
-1.77935e-05
-1.54476e-05
-1.30318e-05
-1.05459e-05
-7.98992e-06
-5.36379e-06
-2.66743e-06
9.92192e-08
2.93624e-06
5.8437e-06
8.82165e-06
1.18701e-05
1.49891e-05
1.81786e-05
2.14385e-05
2.47688e-05
2.81694e-05
3.16401e-05
3.51809e-05
3.87915e-05
4.24718e-05
4.62214e-05
5.004e-05
5.39274e-05
5.7883e-05
6.19067e-05
6.59979e-05
7.01561e-05
7.43808e-05
7.86714e-05
8.30273e-05
8.74476e-05
9.19317e-05
9.64787e-05
0.000101088
0.000105758
0.000110487
0.000115276
0.000120122
0.000125024
0.000129981
0.000134991
0.000140053
0.000145165
0.000150326
0.000155532
0.000160784
0.000166077
0.000171411
0.000176783
0.00018219
0.00018763
0.000193101
0.000198598
0.00020412
0.000209664
0.000215226
0.000220802
0.00022639
0.000231986
0.000237585
0.000243184
0.000248779
0.000254366
0.00025994
0.000265496
0.000271031
0.000276538
0.000282015
0.000287454
0.000292852
0.000298202
0.0003035
0.00030874
0.000313915
0.000319021
0.000324052
0.000329001
0.000333863
0.000338632
0.000343301
0.000347865
-5.94997e-05
-5.98528e-05
-6.00129e-05
-6.00965e-05
-6.01137e-05
-6.00604e-05
-5.99381e-05
-5.97483e-05
-5.94919e-05
-5.91692e-05
-5.87805e-05
-5.83257e-05
-5.7805e-05
-5.72183e-05
-5.65654e-05
-5.58463e-05
-5.50607e-05
-5.42086e-05
-5.32897e-05
-5.23039e-05
-5.1251e-05
-5.01309e-05
-4.89434e-05
-4.76885e-05
-4.63658e-05
-4.49753e-05
-4.35168e-05
-4.199e-05
-4.03949e-05
-3.87312e-05
-3.69988e-05
-3.51975e-05
-3.33272e-05
-3.13877e-05
-2.93789e-05
-2.73005e-05
-2.51524e-05
-2.29344e-05
-2.06461e-05
-1.82874e-05
-1.5858e-05
-1.33579e-05
-1.07869e-05
-8.14491e-06
-5.43187e-06
-2.64766e-06
2.07826e-07
3.13469e-06
6.13303e-06
9.20291e-06
1.23444e-05
1.55574e-05
1.88421e-05
2.21982e-05
2.56259e-05
2.9125e-05
3.26954e-05
3.6337e-05
4.00495e-05
4.38327e-05
4.76865e-05
5.16104e-05
5.56043e-05
5.96677e-05
6.38002e-05
6.80015e-05
7.22709e-05
7.66079e-05
8.10119e-05
8.54821e-05
9.00178e-05
9.46183e-05
9.92827e-05
0.00010401
0.000108799
0.000113649
0.000118558
0.000123526
0.00012855
0.00013363
0.000138763
0.000143949
0.000149185
0.00015447
0.000159801
0.000165176
0.000170594
0.000176051
0.000181546
0.000187076
0.000192638
0.000198229
0.000203846
0.000209486
0.000215146
0.000220823
0.000226512
0.00023221
0.000237914
0.000243618
0.000249319
0.000255013
0.000260694
0.000266359
0.000272001
0.000277618
0.000283203
0.00028875
0.000294256
0.000299714
0.000305118
0.000310463
0.000315743
0.000320952
0.000326084
0.000331132
0.00033609
0.000340953
0.000345714
0.000350367
-6.26033e-05
-6.29574e-05
-6.31179e-05
-6.32016e-05
-6.32186e-05
-6.31649e-05
-6.3042e-05
-6.28515e-05
-6.25941e-05
-6.22702e-05
-6.18801e-05
-6.14238e-05
-6.09014e-05
-6.03128e-05
-5.96578e-05
-5.89364e-05
-5.81482e-05
-5.72932e-05
-5.63711e-05
-5.53818e-05
-5.43252e-05
-5.32011e-05
-5.20093e-05
-5.07498e-05
-4.94222e-05
-4.80264e-05
-4.65622e-05
-4.50294e-05
-4.34277e-05
-4.17571e-05
-4.00172e-05
-3.8208e-05
-3.63292e-05
-3.43807e-05
-3.23624e-05
-3.02739e-05
-2.81152e-05
-2.58858e-05
-2.35855e-05
-2.12141e-05
-1.87713e-05
-1.6257e-05
-1.3671e-05
-1.10133e-05
-8.28361e-06
-5.48189e-06
-2.60797e-06
3.38297e-07
3.35704e-06
6.44837e-06
9.61236e-06
1.28491e-05
1.61585e-05
1.95407e-05
2.29957e-05
2.65233e-05
3.01236e-05
3.37963e-05
3.75414e-05
4.13586e-05
4.52478e-05
4.92088e-05
5.32412e-05
5.73449e-05
6.15195e-05
6.57644e-05
7.00792e-05
7.44633e-05
7.89162e-05
8.34371e-05
8.80255e-05
9.26805e-05
9.74014e-05
0.000102187
0.000107037
0.000111949
0.000116923
0.000121958
0.000127051
0.000132202
0.000137409
0.00014267
0.000147984
0.000153348
0.000158761
0.000164221
0.000169725
0.00017527
0.000180856
0.000186478
0.000192134
0.000197821
0.000203537
0.000209278
0.00021504
0.00022082
0.000226614
0.000232419
0.00023823
0.000244044
0.000249856
0.00025566
0.000261454
0.000267231
0.000272987
0.000278717
0.000284416
0.000290077
0.000295696
0.000301266
0.000306782
0.000312239
0.000317628
0.000322945
0.000328184
0.000333336
0.000338397
0.00034336
0.000348218
0.000352965
-6.57902e-05
-6.61454e-05
-6.63063e-05
-6.639e-05
-6.64069e-05
-6.63529e-05
-6.62294e-05
-6.60381e-05
-6.57797e-05
-6.54548e-05
-6.50634e-05
-6.46058e-05
-6.40818e-05
-6.34913e-05
-6.28343e-05
-6.21106e-05
-6.13199e-05
-6.04621e-05
-5.95369e-05
-5.85443e-05
-5.74842e-05
-5.63562e-05
-5.51604e-05
-5.38964e-05
-5.2564e-05
-5.11631e-05
-4.96934e-05
-4.81547e-05
-4.65467e-05
-4.48692e-05
-4.31221e-05
-4.13051e-05
-3.94181e-05
-3.74608e-05
-3.54331e-05
-3.33347e-05
-3.11654e-05
-2.89248e-05
-2.66126e-05
-2.42286e-05
-2.17725e-05
-1.92442e-05
-1.66434e-05
-1.397e-05
-1.12238e-05
-8.40465e-06
-5.51234e-06
-2.5467e-06
4.92432e-07
3.60521e-06
6.79175e-06
1.00521e-05
1.33865e-05
1.67948e-05
2.02771e-05
2.38334e-05
2.74637e-05
3.11678e-05
3.49456e-05
3.87971e-05
4.27221e-05
4.67205e-05
5.0792e-05
5.49365e-05
5.91535e-05
6.34426e-05
6.78035e-05
7.22354e-05
7.67379e-05
8.13104e-05
8.59523e-05
9.06629e-05
9.54413e-05
0.000100287
0.000105198
0.000110175
0.000115215
0.000120318
0.000125481
0.000130705
0.000135987
0.000141326
0.000146719
0.000152165
0.000157662
0.000163209
0.000168801
0.000174438
0.000180116
0.000185834
0.000191587
0.000197374
0.000203192
0.000209036
0.000214903
0.000220791
0.000226694
0.00023261
0.000238533
0.00024446
0.000250386
0.000256307
0.000262217
0.000268112
0.000273987
0.000279836
0.000285653
0.000291433
0.000297171
0.000302859
0.000308493
0.000314066
0.000319571
0.000325003
0.000330353
0.000335617
0.000340786
0.000345855
0.000350816
0.000355662
-6.90609e-05
-6.9417e-05
-6.95783e-05
-6.96621e-05
-6.96788e-05
-6.96245e-05
-6.95005e-05
-6.93085e-05
-6.90493e-05
-6.87233e-05
-6.83308e-05
-6.78718e-05
-6.73463e-05
-6.67542e-05
-6.60952e-05
-6.53693e-05
-6.45762e-05
-6.37157e-05
-6.27877e-05
-6.1792e-05
-6.07285e-05
-5.95969e-05
-5.83971e-05
-5.71288e-05
-5.57918e-05
-5.43859e-05
-5.29109e-05
-5.13664e-05
-4.97523e-05
-4.80683e-05
-4.63141e-05
-4.44896e-05
-4.25945e-05
-4.06286e-05
-3.85918e-05
-3.64836e-05
-3.43039e-05
-3.20522e-05
-2.97283e-05
-2.73319e-05
-2.48627e-05
-2.23204e-05
-1.9705e-05
-1.70161e-05
-1.42535e-05
-1.14171e-05
-8.50648e-06
-5.52154e-06
-2.46207e-06
6.72125e-07
3.88119e-06
7.16527e-06
1.05245e-05
1.39589e-05
1.74687e-05
2.10537e-05
2.47141e-05
2.84497e-05
3.22605e-05
3.61465e-05
4.01076e-05
4.41437e-05
4.82547e-05
5.24403e-05
5.67002e-05
6.10341e-05
6.54415e-05
6.99219e-05
7.44748e-05
7.90997e-05
8.3796e-05
8.8563e-05
9.34e-05
9.83062e-05
0.000103281
0.000108322
0.00011343
0.000118602
0.000123838
0.000129136
0.000134495
0.000139913
0.000145388
0.000150918
0.000156502
0.000162136
0.00016782
0.00017355
0.000179325
0.00018514
0.000190995
0.000196885
0.000202807
0.000208758
0.000214735
0.000220733
0.000226749
0.00023278
0.000238819
0.000244864
0.00025091
0.000256951
0.000262983
0.000269001
0.000274999
0.000280972
0.000286913
0.000292818
0.00029868
0.000304493
0.00031025
0.000315946
0.000321573
0.000327124
0.000332593
0.000337974
0.000343257
0.000348438
0.000353508
0.00035846
-7.24154e-05
-7.27725e-05
-7.29342e-05
-7.30181e-05
-7.30347e-05
-7.29801e-05
-7.28556e-05
-7.2663e-05
-7.24031e-05
-7.20762e-05
-7.16826e-05
-7.12224e-05
-7.06954e-05
-7.01017e-05
-6.94409e-05
-6.87129e-05
-6.79175e-05
-6.70545e-05
-6.61238e-05
-6.51252e-05
-6.40585e-05
-6.29234e-05
-6.17199e-05
-6.04475e-05
-5.91061e-05
-5.76954e-05
-5.62153e-05
-5.46653e-05
-5.30453e-05
-5.13549e-05
-4.95939e-05
-4.7762e-05
-4.58591e-05
-4.38849e-05
-4.18391e-05
-3.97214e-05
-3.75315e-05
-3.5269e-05
-3.29336e-05
-3.05249e-05
-2.80428e-05
-2.54869e-05
-2.2857e-05
-2.01528e-05
-1.7374e-05
-1.45204e-05
-1.15916e-05
-8.58747e-06
-5.50775e-06
-2.35224e-06
8.79264e-07
4.18696e-06
7.571e-06
1.10315e-05
1.45687e-05
1.81825e-05
2.1873e-05
2.56403e-05
2.94842e-05
3.3405e-05
3.74024e-05
4.14765e-05
4.56272e-05
4.98543e-05
5.41575e-05
5.85365e-05
6.2991e-05
6.75204e-05
7.21244e-05
7.68024e-05
8.15539e-05
8.63783e-05
9.12749e-05
9.62429e-05
0.000101281
0.000106389
0.000111566
0.000116809
0.000122119
0.000127493
0.00013293
0.000138429
0.000143987
0.000149604
0.000155276
0.000161002
0.000166779
0.000172606
0.000178479
0.000184395
0.000190353
0.000196349
0.00020238
0.000208442
0.000214531
0.000220644
0.000226778
0.000232927
0.000239087
0.000245255
0.000251424
0.000257591
0.00026375
0.000269896
0.000276022
0.000282124
0.000288196
0.000294231
0.000300223
0.000306166
0.000312053
0.000317878
0.000323632
0.000329311
0.000334905
0.000340408
0.000345813
0.000351112
0.000356297
0.000361361
-7.58541e-05
-7.6212e-05
-7.63741e-05
-7.64582e-05
-7.64748e-05
-7.64199e-05
-7.62951e-05
-7.61019e-05
-7.58413e-05
-7.55136e-05
-7.51191e-05
-7.46577e-05
-7.41294e-05
-7.35341e-05
-7.28716e-05
-7.21416e-05
-7.13441e-05
-7.04789e-05
-6.95457e-05
-6.85444e-05
-6.74747e-05
-6.63364e-05
-6.51292e-05
-6.38529e-05
-6.25073e-05
-6.10921e-05
-5.9607e-05
-5.80518e-05
-5.64261e-05
-5.47296e-05
-5.2962e-05
-5.11232e-05
-4.92127e-05
-4.72304e-05
-4.51759e-05
-4.30489e-05
-4.08491e-05
-3.8576e-05
-3.62293e-05
-3.38087e-05
-3.1314e-05
-2.87447e-05
-2.61005e-05
-2.33812e-05
-2.05864e-05
-1.77157e-05
-1.47689e-05
-1.17458e-05
-8.64599e-06
-5.46931e-06
-2.2155e-06
1.11568e-06
4.52444e-06
8.01099e-06
1.15755e-05
1.5218e-05
1.89388e-05
2.27377e-05
2.66149e-05
3.05705e-05
3.46045e-05
3.87168e-05
4.29074e-05
4.71763e-05
5.15231e-05
5.59477e-05
6.04496e-05
6.50286e-05
6.96843e-05
7.44161e-05
7.92236e-05
8.41062e-05
8.90633e-05
9.4094e-05
9.91975e-05
0.000104373
0.000109619
0.000114935
0.00012032
0.000125771
0.000131289
0.00013687
0.000142514
0.000148219
0.000153982
0.000159801
0.000165675
0.0001716
0.000177574
0.000183595
0.00018966
0.000195765
0.000201908
0.000208084
0.00021429
0.000220522
0.000226776
0.000233048
0.000239334
0.000245628
0.000251927
0.000258224
0.000264515
0.000270794
0.000277055
0.000283292
0.0002895
0.000295671
0.0003018
0.000307879
0.000313902
0.000319862
0.000325751
0.000331562
0.000337288
0.000342921
0.000348454
0.000353877
0.000359185
0.000364368
-7.9377e-05
-7.97359e-05
-7.98984e-05
-7.99827e-05
-7.99993e-05
-7.99443e-05
-7.98191e-05
-7.96255e-05
-7.93643e-05
-7.90359e-05
-7.86405e-05
-7.8178e-05
-7.76485e-05
-7.70518e-05
-7.63877e-05
-7.5656e-05
-7.48566e-05
-7.39893e-05
-7.30538e-05
-7.205e-05
-7.09775e-05
-6.98361e-05
-6.86256e-05
-6.73456e-05
-6.5996e-05
-6.45765e-05
-6.30868e-05
-6.15265e-05
-5.98954e-05
-5.8193e-05
-5.64192e-05
-5.45736e-05
-5.26559e-05
-5.06658e-05
-4.86029e-05
-4.64669e-05
-4.42574e-05
-4.19741e-05
-3.96165e-05
-3.71843e-05
-3.46771e-05
-3.20947e-05
-2.94366e-05
-2.67024e-05
-2.38917e-05
-2.10043e-05
-1.80397e-05
-1.49978e-05
-1.18782e-05
-8.68053e-06
-5.40461e-06
-2.05013e-06
1.3832e-06
4.89563e-06
8.48738e-06
1.21586e-05
1.59095e-05
1.97402e-05
2.36507e-05
2.76412e-05
3.17118e-05
3.58625e-05
4.00933e-05
4.44041e-05
4.87948e-05
5.32652e-05
5.78151e-05
6.24441e-05
6.71519e-05
7.19382e-05
7.68024e-05
8.17439e-05
8.67622e-05
9.18566e-05
9.70263e-05
0.00010227
0.000107588
0.000112978
0.000118439
0.000123969
0.000129569
0.000135235
0.000140966
0.00014676
0.000152616
0.000158532
0.000164504
0.00017053
0.000176609
0.000182737
0.000188912
0.000195129
0.000201387
0.000207681
0.000214007
0.000220362
0.000226742
0.000233141
0.000239557
0.000245983
0.000252415
0.000258848
0.000265277
0.000271694
0.000278095
0.000284473
0.000290823
0.000297136
0.000303408
0.00030963
0.000315795
0.000321897
0.000327928
0.00033388
0.000339745
0.000345514
0.000351181
0.000356737
0.000362174
0.000367483
-8.29845e-05
-8.33443e-05
-8.35072e-05
-8.35918e-05
-8.36084e-05
-8.35534e-05
-8.3428e-05
-8.32341e-05
-8.29724e-05
-8.26433e-05
-8.22471e-05
-8.17837e-05
-8.12531e-05
-8.06551e-05
-7.99896e-05
-7.92564e-05
-7.84553e-05
-7.75861e-05
-7.66485e-05
-7.56424e-05
-7.45673e-05
-7.34231e-05
-7.22094e-05
-7.09261e-05
-6.95727e-05
-6.81492e-05
-6.66551e-05
-6.509e-05
-6.34537e-05
-6.17458e-05
-5.9966e-05
-5.8114e-05
-5.61894e-05
-5.41918e-05
-5.21209e-05
-4.99763e-05
-4.77575e-05
-4.54642e-05
-4.3096e-05
-4.06525e-05
-3.81333e-05
-3.55381e-05
-3.28662e-05
-3.01174e-05
-2.72912e-05
-2.43873e-05
-2.14053e-05
-1.83449e-05
-1.52057e-05
-1.19874e-05
-8.68961e-06
-5.31204e-06
-1.85434e-06
1.68382e-06
5.30269e-06
9.00252e-06
1.27835e-05
1.66458e-05
2.05896e-05
2.4615e-05
2.87223e-05
3.29114e-05
3.71824e-05
4.15354e-05
4.59702e-05
5.04867e-05
5.50848e-05
5.97643e-05
6.45248e-05
6.9366e-05
7.42874e-05
7.92886e-05
8.43689e-05
8.95278e-05
9.47645e-05
0.000100078
0.000105468
0.000110933
0.000116472
0.000122083
0.000127766
0.000133518
0.000139339
0.000145225
0.000151176
0.000157189
0.000163263
0.000169393
0.000175579
0.000181817
0.000188105
0.000194438
0.000200814
0.000207229
0.00021368
0.000220162
0.000226671
0.000233203
0.000239753
0.000246316
0.000252887
0.000259461
0.000266032
0.000272594
0.00027914
0.000285666
0.000292163
0.000298626
0.000305047
0.000311418
0.000317734
0.000323985
0.000330164
0.000336263
0.000342274
0.000348188
0.000353997
0.000359693
0.000365266
0.000370709
-8.66767e-05
-8.70375e-05
-8.72009e-05
-8.72857e-05
-8.73025e-05
-8.72475e-05
-8.71219e-05
-8.69277e-05
-8.66656e-05
-8.63361e-05
-8.59392e-05
-8.5475e-05
-8.49435e-05
-8.43444e-05
-8.36776e-05
-8.29431e-05
-8.21405e-05
-8.12696e-05
-8.03302e-05
-7.93219e-05
-7.82445e-05
-7.70977e-05
-7.58812e-05
-7.45947e-05
-7.3238e-05
-7.18107e-05
-7.03125e-05
-6.8743e-05
-6.71018e-05
-6.53887e-05
-6.36032e-05
-6.17451e-05
-5.98139e-05
-5.78092e-05
-5.57306e-05
-5.35777e-05
-5.13501e-05
-4.90472e-05
-4.66688e-05
-4.42144e-05
-4.16835e-05
-3.90757e-05
-3.63905e-05
-3.36274e-05
-3.07861e-05
-2.78661e-05
-2.4867e-05
-2.17884e-05
-1.863e-05
-1.53913e-05
-1.2072e-05
-8.67162e-06
-5.18978e-06
-1.62612e-06
2.01967e-06
5.74788e-06
9.55878e-06
1.34526e-05
1.74295e-05
2.14899e-05
2.56337e-05
2.98613e-05
3.41726e-05
3.85678e-05
4.30469e-05
4.76098e-05
5.22564e-05
5.69866e-05
6.18001e-05
6.66967e-05
7.16758e-05
7.67372e-05
8.18803e-05
8.71045e-05
9.24091e-05
9.77936e-05
0.000103257
0.000108798
0.000114416
0.000120109
0.000125877
0.000131717
0.000137629
0.000143609
0.000149658
0.000155771
0.000161948
0.000168185
0.000174481
0.000180832
0.000187235
0.000193688
0.000200186
0.000206726
0.000213305
0.000219918
0.000226561
0.00023323
0.000239919
0.000246624
0.000253339
0.000260059
0.000266778
0.00027349
0.000280189
0.000286868
0.00029352
0.000300138
0.000306715
0.000313243
0.000319715
0.000326123
0.000332458
0.000338712
0.000344877
0.000350943
0.000356902
0.000362745
0.000368463
0.000374047
-9.0454e-05
-9.08158e-05
-9.09797e-05
-9.10648e-05
-9.10818e-05
-9.10268e-05
-9.09012e-05
-9.07068e-05
-9.04444e-05
-9.01145e-05
-8.9717e-05
-8.92522e-05
-8.87199e-05
-8.81199e-05
-8.74521e-05
-8.67164e-05
-8.59125e-05
-8.50402e-05
-8.40991e-05
-8.3089e-05
-8.20095e-05
-8.08604e-05
-7.96413e-05
-7.8352e-05
-7.69922e-05
-7.55615e-05
-7.40595e-05
-7.24858e-05
-7.08402e-05
-6.91222e-05
-6.73314e-05
-6.54676e-05
-6.35302e-05
-6.15188e-05
-5.94329e-05
-5.72722e-05
-5.5036e-05
-5.27241e-05
-5.03359e-05
-4.78709e-05
-4.53287e-05
-4.27087e-05
-4.00105e-05
-3.72336e-05
-3.43776e-05
-3.14419e-05
-2.84261e-05
-2.53298e-05
-2.21525e-05
-1.88939e-05
-1.55533e-05
-1.21304e-05
-8.62476e-06
-5.03589e-06
-1.36345e-06
2.39289e-06
6.23345e-06
1.01586e-05
1.41685e-05
1.82635e-05
2.2444e-05
2.67099e-05
3.10616e-05
3.5499e-05
4.00224e-05
4.46318e-05
4.93271e-05
5.41083e-05
5.89751e-05
6.39274e-05
6.89648e-05
7.40868e-05
7.92932e-05
8.45835e-05
8.99569e-05
9.54129e-05
0.000100951
0.000106569
0.000112267
0.000118044
0.000123898
0.000129828
0.000135833
0.000141909
0.000148057
0.000154273
0.000160555
0.000166902
0.00017331
0.000179777
0.000186299
0.000192874
0.000199498
0.000206168
0.000212879
0.000219627
0.000226408
0.000233218
0.000240051
0.000246903
0.000253768
0.00026064
0.000267513
0.000274381
0.000281238
0.000288076
0.00029489
0.00030167
0.000308411
0.000315103
0.00032174
0.000328312
0.000334811
0.000341227
0.000347554
0.00035378
0.000359897
0.000365896
0.000371767
0.0003775
-9.43166e-05
-9.46795e-05
-9.48438e-05
-9.49293e-05
-9.49465e-05
-9.48916e-05
-9.4766e-05
-9.45715e-05
-9.4309e-05
-9.39787e-05
-9.35809e-05
-9.31156e-05
-9.25826e-05
-9.19819e-05
-9.13134e-05
-9.05767e-05
-8.97717e-05
-8.88981e-05
-8.79556e-05
-8.69439e-05
-8.58626e-05
-8.47115e-05
-8.34902e-05
-8.21985e-05
-8.08359e-05
-7.94021e-05
-7.78967e-05
-7.63192e-05
-7.46694e-05
-7.29469e-05
-7.11513e-05
-6.92821e-05
-6.73389e-05
-6.53213e-05
-6.32286e-05
-6.10604e-05
-5.88163e-05
-5.64956e-05
-5.4098e-05
-5.16229e-05
-4.90698e-05
-4.64381e-05
-4.37274e-05
-4.09372e-05
-3.80668e-05
-3.51159e-05
-3.20839e-05
-2.89704e-05
-2.57747e-05
-2.24965e-05
-1.91351e-05
-1.56901e-05
-1.21609e-05
-8.5472e-06
-4.84848e-06
-1.06435e-06
2.80557e-06
6.76168e-06
1.08044e-05
1.49339e-05
1.91507e-05
2.34549e-05
2.78468e-05
3.23265e-05
3.68943e-05
4.15502e-05
4.62943e-05
5.11266e-05
5.60469e-05
6.10552e-05
6.61511e-05
7.13344e-05
7.66047e-05
8.19616e-05
8.74046e-05
9.2933e-05
9.85462e-05
0.000104243
0.000110023
0.000115885
0.000121827
0.000127848
0.000133946
0.000140121
0.00014637
0.00015269
0.000159081
0.00016554
0.000172063
0.000178649
0.000185294
0.000191994
0.000198748
0.00020555
0.000212397
0.000219284
0.000226209
0.000233164
0.000240147
0.00024715
0.00025417
0.000261199
0.000268232
0.000275263
0.000282284
0.000289289
0.000296271
0.000303221
0.000310133
0.000316997
0.000323805
0.000330549
0.00033722
0.000343808
0.000350305
0.0003567
0.000362984
0.000369147
0.000375179
0.000381071
-9.82648e-05
-9.86287e-05
-9.87935e-05
-9.88794e-05
-9.88968e-05
-9.88421e-05
-9.87166e-05
-9.85221e-05
-9.82595e-05
-9.79291e-05
-9.75311e-05
-9.70654e-05
-9.65321e-05
-9.59308e-05
-9.52617e-05
-9.45243e-05
-9.37184e-05
-9.28438e-05
-9.19001e-05
-9.0887e-05
-8.98043e-05
-8.86515e-05
-8.74284e-05
-8.61345e-05
-8.47695e-05
-8.33329e-05
-8.18244e-05
-8.02436e-05
-7.85901e-05
-7.68635e-05
-7.50634e-05
-7.31894e-05
-7.12409e-05
-6.92174e-05
-6.71184e-05
-6.49433e-05
-6.26915e-05
-6.03627e-05
-5.79561e-05
-5.54714e-05
-5.29079e-05
-5.02651e-05
-4.75424e-05
-4.47393e-05
-4.18552e-05
-3.88896e-05
-3.58419e-05
-3.27116e-05
-2.9498e-05
-2.62006e-05
-2.28189e-05
-1.93521e-05
-1.58e-05
-1.21618e-05
-8.43726e-06
-4.62576e-06
-7.26863e-07
3.25991e-06
7.33499e-06
1.14988e-05
1.57517e-05
2.00939e-05
2.45259e-05
2.90477e-05
3.36598e-05
3.83622e-05
4.31551e-05
4.80386e-05
5.30126e-05
5.8077e-05
6.32318e-05
6.84767e-05
7.38114e-05
7.92355e-05
8.47487e-05
9.03503e-05
9.60397e-05
0.000101816
0.000107679
0.000113626
0.000119657
0.000125771
0.000131966
0.00013824
0.000144592
0.00015102
0.000157521
0.000164094
0.000170735
0.000177443
0.000184213
0.000191043
0.000197929
0.000204868
0.000211855
0.000218886
0.000225958
0.000233064
0.0002402
0.000247361
0.000254541
0.000261734
0.000268933
0.000276133
0.000283325
0.000290504
0.000297661
0.000304788
0.000311878
0.000318922
0.000325911
0.000332835
0.000339686
0.000346454
0.00035313
0.000359703
0.000366163
0.000372499
0.000378702
0.000384761
-0.000102299
-0.000102664
-0.000102829
-0.000102915
-0.000102933
-0.000102878
-0.000102753
-0.000102559
-0.000102296
-0.000101966
-0.000101568
-0.000101102
-0.000100568
-9.99669e-05
-9.92973e-05
-9.85594e-05
-9.77529e-05
-9.68775e-05
-9.59329e-05
-9.49188e-05
-9.38349e-05
-9.26807e-05
-9.14561e-05
-9.01604e-05
-8.87933e-05
-8.73544e-05
-8.58433e-05
-8.42595e-05
-8.26028e-05
-8.08726e-05
-7.90686e-05
-7.71902e-05
-7.52368e-05
-7.3208e-05
-7.11031e-05
-6.89215e-05
-6.66627e-05
-6.43261e-05
-6.19112e-05
-5.94174e-05
-5.6844e-05
-5.41906e-05
-5.14565e-05
-4.86412e-05
-4.57439e-05
-4.27642e-05
-3.97014e-05
-3.65548e-05
-3.33238e-05
-3.00078e-05
-2.66062e-05
-2.31183e-05
-1.95436e-05
-1.58816e-05
-1.21317e-05
-8.29327e-06
-4.36584e-06
-3.48823e-07
3.75829e-06
7.95596e-06
1.22446e-05
1.66246e-05
2.10963e-05
2.56601e-05
3.03162e-05
3.5065e-05
3.99066e-05
4.48412e-05
4.9869e-05
5.49898e-05
6.02036e-05
6.55104e-05
7.09099e-05
7.64017e-05
8.19856e-05
8.7661e-05
9.34274e-05
9.92841e-05
0.00010523
0.000111265
0.000117386
0.000123594
0.000129887
0.000136262
0.00014272
0.000149257
0.000155871
0.00016256
0.000169322
0.000176154
0.000183053
0.000190015
0.000197038
0.000204117
0.000211248
0.000218428
0.000225651
0.000232913
0.000240208
0.000247532
0.000254878
0.00026224
0.000269612
0.000276987
0.000284358
0.000291717
0.000299057
0.000306369
0.000313645
0.000320876
0.000328054
0.000335167
0.000342208
0.000349165
0.000356029
0.000362789
0.000369434
0.000375954
0.000382337
0.000388573
-0.000106419
-0.000106784
-0.00010695
-0.000107037
-0.000107055
-0.000107001
-0.000106876
-0.000106682
-0.00010642
-0.000106089
-0.000105691
-0.000105225
-0.000104692
-0.00010409
-0.00010342
-0.000102682
-0.000101875
-0.000101
-0.000100054
-9.90395e-05
-9.79548e-05
-9.67996e-05
-9.55738e-05
-9.42767e-05
-9.29079e-05
-9.14671e-05
-8.99538e-05
-8.83676e-05
-8.67081e-05
-8.49748e-05
-8.31673e-05
-8.1285e-05
-7.93273e-05
-7.72936e-05
-7.51833e-05
-7.29958e-05
-7.07305e-05
-6.83868e-05
-6.59641e-05
-6.34618e-05
-6.08793e-05
-5.82159e-05
-5.5471e-05
-5.26441e-05
-4.97343e-05
-4.6741e-05
-4.36636e-05
-4.05014e-05
-3.72537e-05
-3.39197e-05
-3.04988e-05
-2.69903e-05
-2.33937e-05
-1.97084e-05
-1.59336e-05
-1.20689e-05
-8.11339e-06
-4.06661e-06
7.20507e-08
4.30313e-06
8.62712e-06
1.30445e-05
1.75556e-05
2.2161e-05
2.68609e-05
3.16558e-05
3.6546e-05
4.15317e-05
4.6613e-05
5.17903e-05
5.70633e-05
6.24322e-05
6.78966e-05
7.34566e-05
7.91116e-05
8.48614e-05
9.07055e-05
9.66433e-05
0.000102674
0.000108796
0.00011501
0.000121313
0.000127705
0.000134184
0.000140748
0.000147396
0.000154125
0.000160934
0.000167819
0.000174779
0.000181809
0.000188907
0.00019607
0.000203293
0.000210572
0.000217904
0.000225284
0.000232706
0.000240166
0.000247658
0.000255175
0.000262713
0.000270264
0.000277821
0.000285377
0.000292924
0.000300454
0.000307959
0.00031543
0.000322858
0.000330232
0.000337544
0.000344783
0.000351939
0.000359001
0.000365958
0.000372799
0.000379512
0.000386086
0.000392509
-0.000110625
-0.000110991
-0.000111158
-0.000111245
-0.000111264
-0.00011121
-0.000111085
-0.000110891
-0.000110629
-0.000110299
-0.000109902
-0.000109436
-0.000108903
-0.000108301
-0.000107631
-0.000106893
-0.000106086
-0.00010521
-0.000104265
-0.00010325
-0.000102164
-0.000101009
-9.97818e-05
-9.84837e-05
-9.71137e-05
-9.56714e-05
-9.41564e-05
-9.25682e-05
-9.09065e-05
-8.91706e-05
-8.73602e-05
-8.54745e-05
-8.3513e-05
-8.1475e-05
-7.936e-05
-7.71671e-05
-7.48959e-05
-7.25457e-05
-7.01159e-05
-6.76057e-05
-6.50147e-05
-6.2342e-05
-5.9587e-05
-5.67491e-05
-5.38274e-05
-5.08213e-05
-4.77301e-05
-4.45529e-05
-4.1289e-05
-3.79376e-05
-3.44982e-05
-3.09698e-05
-2.7352e-05
-2.3644e-05
-1.98451e-05
-1.59545e-05
-1.19716e-05
-7.89561e-06
-3.72596e-06
5.37996e-07
4.89681e-06
9.35102e-06
1.39011e-05
1.85477e-05
2.32911e-05
2.81318e-05
3.30702e-05
3.81067e-05
4.32417e-05
4.84752e-05
5.38075e-05
5.92384e-05
6.47681e-05
7.03963e-05
7.61229e-05
8.19476e-05
8.787e-05
9.38895e-05
0.000100005
0.000106217
0.000112523
0.000118923
0.000125416
0.000131999
0.000138672
0.000145433
0.00015228
0.00015921
0.000166221
0.000173311
0.000180476
0.000187713
0.000195019
0.00020239
0.000209822
0.00021731
0.000224851
0.000232439
0.000240068
0.000247734
0.000255429
0.000263149
0.000270885
0.000278631
0.00028638
0.000294122
0.000301851
0.000309557
0.000317231
0.000324863
0.000332444
0.000339964
0.000347411
0.000354776
0.000362046
0.000369211
0.000376258
0.000383175
0.000389951
0.000396572
-0.000114917
-0.000115284
-0.000115451
-0.000115539
-0.000115558
-0.000115505
-0.000115381
-0.000115188
-0.000114926
-0.000114596
-0.000114199
-0.000113734
-0.000113201
-0.0001126
-0.000111931
-0.000111193
-0.000110386
-0.00010951
-0.000108565
-0.000107549
-0.000106464
-0.000105308
-0.000104081
-0.000102782
-0.000101411
-9.99678e-05
-9.84517e-05
-9.68621e-05
-9.51986e-05
-9.34607e-05
-9.16479e-05
-8.97594e-05
-8.77946e-05
-8.57529e-05
-8.36336e-05
-8.14361e-05
-7.91596e-05
-7.68036e-05
-7.43673e-05
-7.18501e-05
-6.92512e-05
-6.657e-05
-6.38056e-05
-6.09574e-05
-5.80246e-05
-5.50064e-05
-5.1902e-05
-4.87106e-05
-4.54313e-05
-4.20634e-05
-3.8606e-05
-3.50586e-05
-3.14203e-05
-2.76903e-05
-2.38679e-05
-1.99522e-05
-1.59425e-05
-1.1838e-05
-7.63802e-06
-3.34183e-06
1.0512e-06
5.54169e-06
1.01302e-05
1.48174e-05
1.96038e-05
2.44899e-05
2.94762e-05
3.45633e-05
3.97516e-05
4.50412e-05
5.04326e-05
5.59257e-05
6.15206e-05
6.72173e-05
7.30157e-05
7.89155e-05
8.49166e-05
9.10183e-05
9.72203e-05
0.000103522
0.000109922
0.00011642
0.000123014
0.000129704
0.000136487
0.000143363
0.000150329
0.000157383
0.000164522
0.000171745
0.000179047
0.000186427
0.00019388
0.000201403
0.000208991
0.000216641
0.000224347
0.000232105
0.00023991
0.000247755
0.000255635
0.000263542
0.000271471
0.000279413
0.000287361
0.000295307
0.000303242
0.000311157
0.000319043
0.000326889
0.000334686
0.000342424
0.00035009
0.000357673
0.000365163
0.000372546
0.00037981
0.000386943
0.000393931
0.000400762
-0.000119295
-0.000119664
-0.000119831
-0.00011992
-0.000119939
-0.000119887
-0.000119763
-0.00011957
-0.000119309
-0.00011898
-0.000118584
-0.000118119
-0.000117587
-0.000116987
-0.000116318
-0.000115581
-0.000114774
-0.000113899
-0.000112954
-0.000111939
-0.000110854
-0.000109698
-0.000108471
-0.000107172
-0.000105801
-0.000104357
-0.00010284
-0.00010125
-9.9585e-05
-9.78456e-05
-9.60309e-05
-9.41402e-05
-9.21728e-05
-9.0128e-05
-8.80052e-05
-8.58036e-05
-8.35226e-05
-8.11614e-05
-7.87194e-05
-7.61959e-05
-7.359e-05
-7.09009e-05
-6.81279e-05
-6.52703e-05
-6.23271e-05
-5.92975e-05
-5.61808e-05
-5.29759e-05
-4.9682e-05
-4.62984e-05
-4.28241e-05
-3.92583e-05
-3.56003e-05
-3.18492e-05
-2.8004e-05
-2.40641e-05
-2.00283e-05
-1.58961e-05
-1.16665e-05
-7.33879e-06
-2.91224e-06
1.61385e-06
6.24018e-06
1.09674e-05
1.57962e-05
2.07272e-05
2.5761e-05
3.08983e-05
3.61395e-05
4.1485e-05
4.69351e-05
5.24901e-05
5.81502e-05
6.39154e-05
6.97856e-05
7.57609e-05
8.18409e-05
8.80254e-05
9.4314e-05
0.000100706
0.000107201
0.000113798
0.000120495
0.000127292
0.000134188
0.00014118
0.000148267
0.000155447
0.000162717
0.000170075
0.000177519
0.000185044
0.000192647
0.000200325
0.000208074
0.000215889
0.000223766
0.0002317
0.000239685
0.000247716
0.000255785
0.000263887
0.000272015
0.00028016
0.000288316
0.000296473
0.000304623
0.000312756
0.000320863
0.000328933
0.000336956
0.000344921
0.000352817
0.00036063
0.000368349
0.000375962
0.000383455
0.000390816
0.000398029
0.000405083
-0.00012376
-0.000124129
-0.000124298
-0.000124387
-0.000124407
-0.000124355
-0.000124232
-0.00012404
-0.00012378
-0.000123452
-0.000123056
-0.000122592
-0.000122061
-0.000121461
-0.000120794
-0.000120057
-0.000119252
-0.000118377
-0.000117433
-0.000116419
-0.000115334
-0.000114179
-0.000112952
-0.000111653
-0.000110283
-0.000108839
-0.000107322
-0.000105731
-0.000104066
-0.000102326
-0.00010051
-9.86175e-05
-9.66481e-05
-9.46009e-05
-9.24752e-05
-9.02703e-05
-8.79855e-05
-8.562e-05
-8.31731e-05
-8.0644e-05
-7.80318e-05
-7.53357e-05
-7.2555e-05
-6.96887e-05
-6.6736e-05
-6.3696e-05
-6.05678e-05
-5.73503e-05
-5.40428e-05
-5.06442e-05
-4.71538e-05
-4.35707e-05
-3.98939e-05
-3.61225e-05
-3.22555e-05
-2.82921e-05
-2.42312e-05
-2.00721e-05
-1.58137e-05
-1.14553e-05
-6.99607e-06
-2.43515e-06
2.22823e-06
6.99481e-06
1.18654e-05
1.68407e-05
2.19214e-05
2.71083e-05
3.24019e-05
3.78028e-05
4.33114e-05
4.89281e-05
5.46531e-05
6.04866e-05
6.64288e-05
7.24795e-05
7.86387e-05
8.49063e-05
9.12819e-05
9.77652e-05
0.000104355
0.000111052
0.000117854
0.00012476
0.000131769
0.000138879
0.000146089
0.000153397
0.000160801
0.000168297
0.000175883
0.000183557
0.000191314
0.000199151
0.000207065
0.00021505
0.000223102
0.000231217
0.000239388
0.000247609
0.000255875
0.000264178
0.000272512
0.000280868
0.000289239
0.000297616
0.000305989
0.000314349
0.000322686
0.00033099
0.00033925
0.000347453
0.000355589
0.000363643
0.000371605
0.00037946
0.000387194
0.000394794
0.000402246
0.000409534
-0.000128311
-0.000128682
-0.000128851
-0.00012894
-0.000128961
-0.00012891
-0.000128788
-0.000128597
-0.000128337
-0.00012801
-0.000127615
-0.000127153
-0.000126623
-0.000126024
-0.000125358
-0.000124623
-0.000123819
-0.000122945
-0.000122002
-0.000120989
-0.000119906
-0.000118751
-0.000117525
-0.000116228
-0.000114858
-0.000113415
-0.000111898
-0.000110308
-0.000108642
-0.000106902
-0.000105085
-0.000103192
-0.000101221
-9.91724e-05
-9.70446e-05
-9.48371e-05
-9.25493e-05
-9.01803e-05
-8.77293e-05
-8.51954e-05
-8.25778e-05
-7.98756e-05
-7.70879e-05
-7.42139e-05
-7.12526e-05
-6.82031e-05
-6.50643e-05
-6.18352e-05
-5.85149e-05
-5.51025e-05
-5.15969e-05
-4.79974e-05
-4.43027e-05
-4.0512e-05
-3.66242e-05
-3.26383e-05
-2.85533e-05
-2.43682e-05
-2.00821e-05
-1.56939e-05
-1.12029e-05
-6.60799e-06
-1.90842e-06
2.89671e-06
7.80829e-06
1.28272e-05
1.79541e-05
2.319e-05
2.85355e-05
3.39912e-05
3.95578e-05
4.52357e-05
5.10253e-05
5.69269e-05
6.29407e-05
6.90668e-05
7.53053e-05
8.16561e-05
8.81192e-05
9.46941e-05
0.00010138
0.000108178
0.000115085
0.000122101
0.000129224
0.000136455
0.000143789
0.000151227
0.000158766
0.000166403
0.000174135
0.00018196
0.000189875
0.000197875
0.000205957
0.000214116
0.000222349
0.000230649
0.000239011
0.00024743
0.000255898
0.000264409
0.000272956
0.00028153
0.000290124
0.000298729
0.000307334
0.000315931
0.000324509
0.000333057
0.000341563
0.000350016
0.000358403
0.000366711
0.000374927
0.000383036
0.000391025
0.000398878
0.000406581
0.000414118
-0.000132949
-0.00013332
-0.00013349
-0.000133581
-0.000133602
-0.000133552
-0.00013343
-0.00013324
-0.000132982
-0.000132656
-0.000132262
-0.000131801
-0.000131273
-0.000130676
-0.000130011
-0.000129277
-0.000128475
-0.000127603
-0.000126662
-0.00012565
-0.000124568
-0.000123415
-0.000122191
-0.000120895
-0.000119526
-0.000118084
-0.000116569
-0.000114979
-0.000113314
-0.000111574
-0.000109758
-0.000107864
-0.000105893
-0.000103843
-0.000101714
-9.95048e-05
-9.72148e-05
-9.48431e-05
-9.23888e-05
-8.9851e-05
-8.72288e-05
-8.45214e-05
-8.17278e-05
-7.88471e-05
-7.58781e-05
-7.282e-05
-6.96716e-05
-6.64319e-05
-6.30999e-05
-5.96746e-05
-5.61551e-05
-5.25401e-05
-4.88287e-05
-4.50198e-05
-4.11122e-05
-3.71049e-05
-3.29968e-05
-2.87869e-05
-2.44739e-05
-2.00571e-05
-1.55352e-05
-1.09074e-05
-6.17258e-06
-1.32981e-06
3.62189e-06
8.68348e-06
1.38559e-05
1.91399e-05
2.45365e-05
3.00464e-05
3.56703e-05
4.14089e-05
4.72626e-05
5.32318e-05
5.9317e-05
6.55183e-05
7.1836e-05
7.82701e-05
8.48208e-05
9.14877e-05
9.82706e-05
0.000105169
0.000112182
0.000119309
0.000126549
0.0001339
0.000141361
0.000148931
0.000156607
0.000164386
0.000172268
0.000180247
0.000188322
0.000196489
0.000204743
0.000213081
0.000221498
0.000229989
0.000238548
0.00024717
0.000255847
0.000264573
0.00027334
0.00028214
0.000290966
0.000299807
0.000308654
0.000317497
0.000326325
0.000335127
0.000343892
0.000352606
0.000361256
0.00036983
0.000378313
0.00038669
0.000394946
0.000403067
0.000411035
0.000418835
-0.000137673
-0.000138046
-0.000138216
-0.000138307
-0.00013833
-0.00013828
-0.00013816
-0.000137971
-0.000137714
-0.000137389
-0.000136997
-0.000136538
-0.000136011
-0.000135416
-0.000134753
-0.000134021
-0.00013322
-0.000132351
-0.000131411
-0.000130402
-0.000129322
-0.000128171
-0.000126949
-0.000125654
-0.000124288
-0.000122848
-0.000121334
-0.000119746
-0.000118082
-0.000116343
-0.000114528
-0.000112635
-0.000110663
-0.000108614
-0.000106484
-0.000104274
-0.000101983
-9.96091e-05
-9.71524e-05
-9.46117e-05
-9.1986e-05
-8.92743e-05
-8.64758e-05
-8.35892e-05
-8.06137e-05
-7.7548e-05
-7.43911e-05
-7.11419e-05
-6.77993e-05
-6.43623e-05
-6.08298e-05
-5.72006e-05
-5.34736e-05
-4.96476e-05
-4.57214e-05
-4.16939e-05
-3.75639e-05
-3.33302e-05
-2.89917e-05
-2.45472e-05
-1.99957e-05
-1.53361e-05
-1.05671e-05
-5.68773e-06
-6.96915e-07
4.4064e-06
9.62323e-06
1.49546e-05
2.04014e-05
2.59646e-05
3.16451e-05
3.74436e-05
4.33608e-05
4.93971e-05
5.55532e-05
6.18293e-05
6.8226e-05
7.47433e-05
8.13816e-05
8.81406e-05
9.50202e-05
0.00010202
0.00010914
0.000116379
0.000123735
0.000131209
0.000138798
0.000146501
0.000154316
0.000162241
0.000170274
0.000178411
0.000186649
0.000194986
0.000203417
0.000211937
0.000220544
0.00022923
0.000237992
0.000246822
0.000255714
0.000264661
0.000273656
0.000282691
0.000291756
0.000300842
0.00030994
0.000319039
0.000328128
0.000337196
0.00034623
0.000355217
0.000364144
0.000372996
0.000381759
0.000390418
0.000398957
0.000407359
0.000415608
0.000423686
-0.000142485
-0.000142858
-0.000143029
-0.000143121
-0.000143145
-0.000143096
-0.000142977
-0.000142789
-0.000142533
-0.00014221
-0.00014182
-0.000141362
-0.000140837
-0.000140244
-0.000139583
-0.000138854
-0.000138056
-0.000137188
-0.000136252
-0.000135245
-0.000134167
-0.000133019
-0.000131799
-0.000130508
-0.000129143
-0.000127706
-0.000126194
-0.000124608
-0.000122947
-0.00012121
-0.000119395
-0.000117504
-0.000115534
-0.000113484
-0.000111355
-0.000109145
-0.000106854
-0.000104479
-0.000102021
-9.94784e-05
-9.68502e-05
-9.41353e-05
-9.13328e-05
-8.84416e-05
-8.54604e-05
-8.23883e-05
-7.9224e-05
-7.59665e-05
-7.26145e-05
-6.9167e-05
-6.56228e-05
-6.19806e-05
-5.82392e-05
-5.43974e-05
-5.04539e-05
-4.64074e-05
-4.22567e-05
-3.80006e-05
-3.36377e-05
-2.91669e-05
-2.4587e-05
-1.98967e-05
-1.50948e-05
-1.018e-05
-5.15128e-06
-7.38966e-09
5.25278e-06
1.06303e-05
1.61264e-05
2.1742e-05
2.74781e-05
3.33357e-05
3.93155e-05
4.54183e-05
5.16446e-05
5.79952e-05
6.44704e-05
7.10707e-05
7.77963e-05
8.46473e-05
9.16239e-05
9.87257e-05
0.000105952
0.000113304
0.000120778
0.000128375
0.000136093
0.000143932
0.000151888
0.00015996
0.000168146
0.000176443
0.000184848
0.000193358
0.000201969
0.000210677
0.000219477
0.000228365
0.000237334
0.000246378
0.000255492
0.000264668
0.000273898
0.000283174
0.000292487
0.000301828
0.000311186
0.000320552
0.000329913
0.000339257
0.000348572
0.000357845
0.000367061
0.000376205
0.000385263
0.000394218
0.000403054
0.000411754
0.000420299
0.000428672
-0.000147382
-0.000147757
-0.000147928
-0.000148021
-0.000148046
-0.000147998
-0.00014788
-0.000147694
-0.00014744
-0.000147118
-0.00014673
-0.000146275
-0.000145752
-0.000145161
-0.000144503
-0.000143776
-0.000142981
-0.000142116
-0.000141183
-0.000140179
-0.000139105
-0.000137959
-0.000136743
-0.000135454
-0.000134093
-0.000132658
-0.00013115
-0.000129567
-0.000127908
-0.000126173
-0.000124362
-0.000122472
-0.000120504
-0.000118456
-0.000116329
-0.00011412
-0.000111828
-0.000109454
-0.000106996
-0.000104452
-0.000101822
-9.91053e-05
-9.62999e-05
-9.34051e-05
-9.04196e-05
-8.73422e-05
-8.41718e-05
-8.09071e-05
-7.75471e-05
-7.40904e-05
-7.05357e-05
-6.68819e-05
-6.31275e-05
-5.92711e-05
-5.53116e-05
-5.12475e-05
-4.70774e-05
-4.28002e-05
-3.84144e-05
-3.39187e-05
-2.93117e-05
-2.45921e-05
-1.97585e-05
-1.48097e-05
-9.74438e-06
-4.56122e-06
7.41024e-07
6.16358e-06
1.17077e-05
1.73745e-05
2.31652e-05
2.90809e-05
3.51224e-05
4.12907e-05
4.75867e-05
5.40109e-05
6.05641e-05
6.72468e-05
7.40594e-05
8.10023e-05
8.80756e-05
9.52794e-05
0.000102613
0.000110077
0.00011767
0.000125392
0.00013324
0.000141215
0.000149314
0.000157535
0.000165877
0.000174337
0.000182912
0.000191598
0.000200393
0.000209292
0.00021829
0.000227383
0.000236565
0.00024583
0.000255172
0.000264583
0.000274056
0.000283581
0.000293151
0.000302756
0.000312385
0.000322027
0.000331671
0.000341303
0.000350912
0.000360483
0.000370002
0.000379453
0.00038882
0.000398087
0.000407236
0.000416249
0.000425108
0.000433792
-0.000152366
-0.000152742
-0.000152914
-0.000153008
-0.000153033
-0.000152987
-0.000152871
-0.000152686
-0.000152434
-0.000152114
-0.000151728
-0.000151275
-0.000150755
-0.000150167
-0.000149511
-0.000148788
-0.000147996
-0.000147135
-0.000146204
-0.000145204
-0.000144134
-0.000142992
-0.000141779
-0.000140494
-0.000139137
-0.000137706
-0.000136201
-0.000134622
-0.000132967
-0.000131235
-0.000129427
-0.00012754
-0.000125575
-0.00012353
-0.000121404
-0.000119197
-0.000116908
-0.000114535
-0.000112077
-0.000109533
-0.000106903
-0.000104185
-0.000101378
-9.84809e-05
-9.54922e-05
-9.24108e-05
-8.92356e-05
-8.59652e-05
-8.25984e-05
-7.91339e-05
-7.55702e-05
-7.19061e-05
-6.814e-05
-6.42706e-05
-6.02965e-05
-5.62162e-05
-5.20283e-05
-4.77314e-05
-4.33241e-05
-3.88049e-05
-3.41724e-05
-2.9425e-05
-2.45613e-05
-1.95799e-05
-1.44794e-05
-9.25844e-06
-3.91554e-06
1.55063e-06
7.14145e-06
1.28582e-05
1.87023e-05
2.46748e-05
3.07769e-05
3.70098e-05
4.33743e-05
4.98714e-05
5.65018e-05
6.32662e-05
7.01653e-05
7.71995e-05
8.43694e-05
9.16751e-05
9.91165e-05
0.000106693
0.000114405
0.000122252
0.000130231
0.000138343
0.000146586
0.000154959
0.000163459
0.000172083
0.000180831
0.000189697
0.000198679
0.000207773
0.000216974
0.000226277
0.000235678
0.000245169
0.000254745
0.000264398
0.000274121
0.000283905
0.00029374
0.000303618
0.000313527
0.000323457
0.000333394
0.000343328
0.000353243
0.000363126
0.000372961
0.000382733
0.000392425
0.00040202
0.000411498
0.000420842
0.000430031
0.000439046
-0.000157437
-0.000157813
-0.000157987
-0.000158081
-0.000158108
-0.000158063
-0.000157948
-0.000157765
-0.000157515
-0.000157198
-0.000156814
-0.000156363
-0.000155846
-0.000155261
-0.000154609
-0.000153889
-0.0001531
-0.000152243
-0.000151317
-0.000150321
-0.000149255
-0.000148117
-0.000146909
-0.000145628
-0.000144275
-0.000142849
-0.000141349
-0.000139774
-0.000138123
-0.000136396
-0.000134591
-0.000132709
-0.000130747
-0.000128706
-0.000126583
-0.000124379
-0.000122092
-0.000119721
-0.000117265
-0.000114723
-0.000112094
-0.000109376
-0.000106568
-0.00010367
-0.000100679
-9.75954e-05
-9.44168e-05
-9.11421e-05
-8.777e-05
-8.42991e-05
-8.07279e-05
-7.70549e-05
-7.32787e-05
-6.93978e-05
-6.54106e-05
-6.13156e-05
-5.71115e-05
-5.27966e-05
-4.83693e-05
-4.38283e-05
-3.91717e-05
-3.43982e-05
-2.9506e-05
-2.44937e-05
-1.93597e-05
-1.41024e-05
-8.72047e-06
-3.21222e-06
2.4238e-06
8.18905e-06
1.4085e-05
2.0113e-05
2.62745e-05
3.25707e-05
3.90027e-05
4.55715e-05
5.22781e-05
5.91233e-05
6.61081e-05
7.32332e-05
8.04991e-05
8.79063e-05
9.54548e-05
0.000103145
0.000110976
0.000118947
0.000127059
0.00013531
0.000143698
0.000152223
0.000160883
0.000169675
0.000178597
0.000187646
0.000196818
0.000206111
0.000215519
0.000225037
0.000234661
0.000244385
0.000254202
0.000264104
0.000274084
0.000284134
0.000294244
0.000304404
0.000314604
0.000324831
0.000335075
0.000345321
0.000355556
0.000365765
0.000375931
0.00038604
0.000396072
0.000406011
0.000415837
0.000425529
0.000435068
0.000444432
-0.000162594
-0.000162971
-0.000163145
-0.000163241
-0.000163269
-0.000163225
-0.000163112
-0.000162931
-0.000162683
-0.000162368
-0.000161987
-0.00016154
-0.000161026
-0.000160444
-0.000159796
-0.000159079
-0.000158295
-0.000157442
-0.000156521
-0.000155529
-0.000154468
-0.000153335
-0.000152132
-0.000150856
-0.000149509
-0.000148087
-0.000146592
-0.000145022
-0.000143377
-0.000141655
-0.000139855
-0.000137977
-0.000136021
-0.000133984
-0.000131866
-0.000129666
-0.000127383
-0.000125015
-0.000122562
-0.000120022
-0.000117395
-0.000114678
-0.000111872
-0.000108973
-0.000105982
-0.000102897
-9.97166e-05
-9.64391e-05
-9.30632e-05
-8.95874e-05
-8.60102e-05
-8.233e-05
-7.85453e-05
-7.46544e-05
-7.06558e-05
-6.65479e-05
-6.23291e-05
-5.79979e-05
-5.35525e-05
-4.89912e-05
-4.43125e-05
-3.95145e-05
-3.45956e-05
-2.95541e-05
-2.43883e-05
-1.90966e-05
-1.36773e-05
-8.12868e-06
-2.44915e-06
3.36293e-06
9.30919e-06
1.53912e-05
2.16106e-05
2.79686e-05
3.44666e-05
4.11058e-05
4.78874e-05
5.48125e-05
6.1882e-05
6.9097e-05
7.64583e-05
8.39663e-05
9.16217e-05
9.94243e-05
0.000107374
0.000115472
0.000123715
0.000132105
0.00014064
0.000149319
0.00015814
0.000167101
0.0001762
0.000185435
0.000194801
0.000204296
0.000213915
0.000223653
0.000233506
0.000243468
0.000253531
0.000263689
0.000273935
0.000284259
0.000294652
0.000305104
0.000315605
0.000326142
0.000336703
0.000347275
0.000357843
0.000368391
0.000378905
0.000389365
0.000399756
0.000410056
0.000420247
0.000430307
0.000440215
0.000449949
-0.000167837
-0.000168215
-0.00016839
-0.000168487
-0.000168516
-0.000168474
-0.000168363
-0.000168184
-0.000167938
-0.000167627
-0.000167248
-0.000166804
-0.000166293
-0.000165716
-0.000165071
-0.00016436
-0.00016358
-0.000162732
-0.000161815
-0.000160829
-0.000159773
-0.000158646
-0.000157448
-0.000156179
-0.000154837
-0.000153421
-0.000151932
-0.000150368
-0.000148729
-0.000147013
-0.000145219
-0.000143347
-0.000141396
-0.000139365
-0.000137253
-0.000135058
-0.000132779
-0.000130416
-0.000127967
-0.000125431
-0.000122807
-0.000120093
-0.000117289
-0.000114392
-0.000111402
-0.000108317
-0.000105136
-0.000101857
-9.84793e-05
-9.50003e-05
-9.14187e-05
-8.7733e-05
-8.39414e-05
-8.00423e-05
-7.6034e-05
-7.1915e-05
-6.76835e-05
-6.33377e-05
-5.88759e-05
-5.42964e-05
-4.95973e-05
-4.47768e-05
-3.98331e-05
-3.47643e-05
-2.95687e-05
-2.42444e-05
-1.87896e-05
-1.32025e-05
-7.48131e-06
-1.62422e-06
4.37058e-06
1.05049e-05
1.67803e-05
2.31985e-05
2.97609e-05
3.6469e-05
4.33242e-05
5.03277e-05
5.74808e-05
6.47847e-05
7.22403e-05
7.98485e-05
8.76099e-05
9.55249e-05
0.000103594
0.000111816
0.000120193
0.000128722
0.000137404
0.000146238
0.000155221
0.000164353
0.000173632
0.000183054
0.000192617
0.000202317
0.000212151
0.000222114
0.000232201
0.000242406
0.000252722
0.000263144
0.000273662
0.000284268
0.000294953
0.000305708
0.000316519
0.000327377
0.000338268
0.000349179
0.000360093
0.000370997
0.000381872
0.000392702
0.000403467
0.000414148
0.000424723
0.000435171
0.000445469
0.000455593
-0.000173166
-0.000173545
-0.000173721
-0.000173819
-0.00017385
-0.000173809
-0.0001737
-0.000173524
-0.000173281
-0.000172972
-0.000172597
-0.000172156
-0.000171649
-0.000171076
-0.000170436
-0.000169729
-0.000168954
-0.000168112
-0.000167201
-0.00016622
-0.00016517
-0.000164049
-0.000162858
-0.000161595
-0.000160259
-0.000158851
-0.000157369
-0.000155812
-0.000154179
-0.00015247
-0.000150683
-0.000148818
-0.000146874
-0.00014485
-0.000142744
-0.000140555
-0.000138283
-0.000135925
-0.000133482
-0.000130951
-0.000128331
-0.000125622
-0.000122821
-0.000119927
-0.00011694
-0.000113857
-0.000110677
-0.000107398
-0.00010402
-0.000100539
-9.69549e-05
-9.32653e-05
-8.94686e-05
-8.55632e-05
-8.15472e-05
-7.7419e-05
-7.31766e-05
-6.88182e-05
-6.43421e-05
-5.97463e-05
-5.50289e-05
-5.01879e-05
-4.52214e-05
-4.01274e-05
-3.4904e-05
-2.95492e-05
-2.4061e-05
-1.84374e-05
-1.26766e-05
-6.77654e-06
-7.35193e-07
5.44935e-06
1.1779e-05
1.82554e-05
2.48804e-05
3.16556e-05
3.85826e-05
4.5663e-05
5.28983e-05
6.02897e-05
6.78385e-05
7.55457e-05
8.34122e-05
9.14388e-05
9.96258e-05
0.000107974
0.000116482
0.000125151
0.000133981
0.00014297
0.000152117
0.000161422
0.000170881
0.000180494
0.000190256
0.000200165
0.000210218
0.000220409
0.000230734
0.000241188
0.000251764
0.000262455
0.000273253
0.00028415
0.000295136
0.000306202
0.000317336
0.000328526
0.000339759
0.000351021
0.000362297
0.000373571
0.000384825
0.000396041
0.000407199
0.000418279
0.000429258
0.000440115
0.000450825
0.000461362
-0.000178582
-0.000178961
-0.000179138
-0.000179237
-0.000179269
-0.000179231
-0.000179124
-0.00017895
-0.000178709
-0.000178404
-0.000178033
-0.000177596
-0.000177093
-0.000176524
-0.000175889
-0.000175188
-0.000174419
-0.000173582
-0.000172677
-0.000171703
-0.000170659
-0.000169546
-0.000168361
-0.000167105
-0.000165777
-0.000164376
-0.000162902
-0.000161352
-0.000159727
-0.000158026
-0.000156248
-0.000154391
-0.000152455
-0.000150438
-0.00014834
-0.000146158
-0.000143893
-0.000141543
-0.000139106
-0.000136582
-0.000133968
-0.000131265
-0.000128469
-0.00012558
-0.000122597
-0.000119517
-0.00011634
-0.000113063
-0.000109686
-0.000106205
-0.00010262
-9.89286e-05
-9.51288e-05
-9.1219e-05
-8.71972e-05
-8.30617e-05
-7.88106e-05
-7.44418e-05
-6.99534e-05
-6.53435e-05
-6.06099e-05
-5.57506e-05
-5.07635e-05
-4.56465e-05
-4.03975e-05
-3.50144e-05
-2.9495e-05
-2.38373e-05
-1.80391e-05
-1.20982e-05
-6.01255e-06
2.20059e-07
6.60163e-06
1.31342e-05
1.98197e-05
2.666e-05
3.3657e-05
4.08125e-05
4.81282e-05
5.56055e-05
6.32459e-05
7.10507e-05
7.90212e-05
8.71582e-05
9.54626e-05
0.000103935
0.000112575
0.000121384
0.000130361
0.000139506
0.000148818
0.000158296
0.000167938
0.000177742
0.000187707
0.000197828
0.000208102
0.000218526
0.000229094
0.000239802
0.000250642
0.000261609
0.000272695
0.000283891
0.000295187
0.000306574
0.000318041
0.000329575
0.000341163
0.000352791
0.000364443
0.000376102
0.000387751
0.000399371
0.000410941
0.00042244
0.000433845
0.000445132
0.000456276
0.000467251
-0.000184083
-0.000184463
-0.000184641
-0.000184741
-0.000184774
-0.000184738
-0.000184633
-0.000184462
-0.000184225
-0.000183923
-0.000183555
-0.000183123
-0.000182625
-0.000182061
-0.000181432
-0.000180736
-0.000179973
-0.000179142
-0.000178244
-0.000177277
-0.00017624
-0.000175134
-0.000173958
-0.00017271
-0.00017139
-0.000169998
-0.000168531
-0.000166991
-0.000165375
-0.000163683
-0.000161913
-0.000160065
-0.000158138
-0.00015613
-0.000154041
-0.000151868
-0.000149612
-0.00014727
-0.000144841
-0.000142325
-0.000139719
-0.000137023
-0.000134234
-0.000131351
-0.000128373
-0.000125299
-0.000122126
-0.000118853
-0.000115478
-0.000112
-0.000108416
-0.000104724
-0.000100923
-9.70113e-05
-9.29859e-05
-8.88453e-05
-8.45876e-05
-8.02105e-05
-7.57122e-05
-7.10904e-05
-6.63429e-05
-6.14677e-05
-5.64624e-05
-5.13247e-05
-4.60526e-05
-4.06436e-05
-3.50955e-05
-2.9406e-05
-2.35728e-05
-1.75936e-05
-1.1466e-05
-5.18771e-06
1.24344e-06
7.82974e-06
1.45734e-05
2.14766e-05
2.85415e-05
3.577e-05
4.31639e-05
5.07252e-05
5.84554e-05
6.63562e-05
7.4429e-05
8.26751e-05
9.10956e-05
9.96913e-05
0.000108463
0.000117411
0.000126535
0.000135836
0.000145313
0.000154965
0.000164791
0.000174789
0.000184957
0.000195293
0.000205792
0.000216452
0.000227268
0.000238234
0.000249345
0.000260595
0.000271975
0.000283477
0.000295093
0.000306811
0.000318621
0.000330511
0.000342467
0.000354474
0.000366516
0.000378578
0.000390639
0.000402681
0.000414682
0.000426621
0.000438473
0.000450214
0.000461816
0.000473254
-0.000189669
-0.00019005
-0.000190229
-0.00019033
-0.000190365
-0.000190331
-0.000190228
-0.00019006
-0.000189826
-0.000189528
-0.000189165
-0.000188737
-0.000188244
-0.000187686
-0.000187062
-0.000186372
-0.000185616
-0.000184792
-0.000183901
-0.000182942
-0.000181914
-0.000180816
-0.000179648
-0.000178409
-0.000177098
-0.000175715
-0.000174258
-0.000172727
-0.000171121
-0.000169439
-0.000167679
-0.000165842
-0.000163925
-0.000161927
-0.000159848
-0.000157685
-0.000155439
-0.000153106
-0.000150688
-0.000148181
-0.000145584
-0.000142896
-0.000140116
-0.000137241
-0.000134271
-0.000131203
-0.000128037
-0.000124769
-0.000121399
-0.000117925
-0.000114344
-0.000110654
-0.000106854
-0.000102942
-9.8915e-05
-9.47717e-05
-9.05096e-05
-8.61267e-05
-8.16207e-05
-7.69894e-05
-7.22306e-05
-6.73418e-05
-6.23208e-05
-5.71651e-05
-5.18723e-05
-4.64401e-05
-4.08659e-05
-3.51473e-05
-2.92817e-05
-2.32668e-05
-1.70999e-05
-1.07787e-05
-4.30055e-06
2.33693e-06
9.13627e-06
1.60999e-05
2.32301e-05
3.05291e-05
3.7999e-05
4.56419e-05
5.34598e-05
6.14545e-05
6.96278e-05
7.79813e-05
8.65163e-05
9.52342e-05
0.000104136
0.000113222
0.000122494
0.00013195
0.000141592
0.000151419
0.000161429
0.000171622
0.000181996
0.000192548
0.000203275
0.000214174
0.000225241
0.000236471
0.000247858
0.000259396
0.000271078
0.000282894
0.000294838
0.000306897
0.000319062
0.000331319
0.000343655
0.000356055
0.000368504
0.000380983
0.000393475
0.000405958
0.000418411
0.00043081
0.000443133
0.000455351
0.000467438
0.000479364
-0.00019534
-0.000195722
-0.000195902
-0.000196004
-0.000196041
-0.000196009
-0.000195909
-0.000195744
-0.000195514
-0.00019522
-0.000194861
-0.000194438
-0.000193951
-0.000193398
-0.000192781
-0.000192098
-0.000191349
-0.000190533
-0.000189649
-0.000188698
-0.000187679
-0.00018659
-0.000185431
-0.000184202
-0.000182901
-0.000181528
-0.000180081
-0.000178561
-0.000176966
-0.000175295
-0.000173546
-0.00017172
-0.000169814
-0.000167828
-0.00016576
-0.000163609
-0.000161374
-0.000159053
-0.000156645
-0.000154149
-0.000151564
-0.000148886
-0.000146116
-0.000143251
-0.00014029
-0.000137231
-0.000134073
-0.000130813
-0.000127449
-0.000123981
-0.000120405
-0.00011672
-0.000112923
-0.000109012
-0.000104986
-0.000100843
-9.65787e-05
-9.21923e-05
-8.76812e-05
-8.30431e-05
-7.82754e-05
-7.33758e-05
-6.83417e-05
-6.31707e-05
-5.78601e-05
-5.24074e-05
-4.68099e-05
-4.1065e-05
-3.517e-05
-2.91222e-05
-2.29189e-05
-1.65575e-05
-1.00353e-05
-3.34944e-06
3.50275e-06
1.0524e-05
1.77167e-05
2.50835e-05
3.26267e-05
4.03487e-05
4.82517e-05
5.63379e-05
6.46095e-05
7.30683e-05
8.1716e-05
9.05544e-05
9.95846e-05
0.000108808
0.000118225
0.000127837
0.000137643
0.000147644
0.00015784
0.000168228
0.000178809
0.000189579
0.000200537
0.000211678
0.000223
0.000234498
0.000246166
0.000257998
0.000269988
0.000282127
0.000294407
0.000306817
0.000319346
0.000331982
0.000344712
0.00035752
0.00037039
0.000383304
0.000396244
0.000409187
0.000422113
0.000434996
0.000447812
0.000460533
0.00047313
0.000485573
-0.000201096
-0.000201479
-0.000201659
-0.000201763
-0.000201802
-0.000201772
-0.000201675
-0.000201513
-0.000201287
-0.000200997
-0.000200644
-0.000200226
-0.000199744
-0.000199199
-0.000198588
-0.000197912
-0.00019717
-0.000196362
-0.000195488
-0.000194545
-0.000193535
-0.000192456
-0.000191308
-0.000190089
-0.000188799
-0.000187437
-0.000186002
-0.000184493
-0.00018291
-0.000181251
-0.000179515
-0.000177701
-0.000175808
-0.000173834
-0.000171779
-0.00016964
-0.000167418
-0.00016511
-0.000162715
-0.000160232
-0.000157658
-0.000154993
-0.000152235
-0.000149382
-0.000146432
-0.000143384
-0.000140235
-0.000136985
-0.00013363
-0.000130169
-0.000126601
-0.000122922
-0.000119131
-0.000115225
-0.000111202
-0.00010706
-0.000102797
-9.84096e-05
-9.3896e-05
-8.92537e-05
-8.448e-05
-7.95723e-05
-7.4528e-05
-6.93445e-05
-6.40191e-05
-5.85489e-05
-5.29312e-05
-4.7163e-05
-4.12416e-05
-3.5164e-05
-2.89274e-05
-2.2529e-05
-1.59657e-05
-9.23463e-06
-2.33268e-06
4.74301e-06
1.19952e-05
1.94267e-05
2.70402e-05
3.48383e-05
4.28237e-05
5.09987e-05
5.93659e-05
6.79275e-05
7.66857e-05
8.56423e-05
9.47993e-05
0.000104158
0.000113719
0.000123485
0.000133455
0.000143631
0.000154011
0.000164596
0.000175384
0.000186374
0.000197563
0.000208949
0.000220529
0.000232299
0.000244252
0.000256385
0.000268689
0.000281158
0.000293782
0.000306552
0.000319457
0.000332484
0.00034562
0.00035885
0.000372157
0.000385523
0.000398929
0.000412353
0.000425773
0.000439163
0.000452497
0.000465747
0.000478882
0.000491871
-0.000206937
-0.00020732
-0.000207501
-0.000207607
-0.000207648
-0.00020762
-0.000207526
-0.000207368
-0.000207146
-0.000206861
-0.000206512
-0.0002061
-0.000205625
-0.000205086
-0.000204482
-0.000203814
-0.000203081
-0.000202281
-0.000201416
-0.000200483
-0.000199483
-0.000198415
-0.000197277
-0.00019607
-0.000194791
-0.000193441
-0.000192019
-0.000190523
-0.000188952
-0.000187307
-0.000185584
-0.000183784
-0.000181904
-0.000179945
-0.000177904
-0.00017578
-0.000173572
-0.000171278
-0.000168897
-0.000166428
-0.000163869
-0.000161218
-0.000158473
-0.000155633
-0.000152696
-0.000149661
-0.000146524
-0.000143285
-0.000139942
-0.000136492
-0.000132933
-0.000129262
-0.000125479
-0.00012158
-0.000117563
-0.000113426
-0.000109166
-0.00010478
-0.000100267
-9.56235e-05
-9.08466e-05
-8.59339e-05
-8.08825e-05
-7.56897e-05
-7.03525e-05
-6.4868e-05
-5.92332e-05
-5.3445e-05
-4.75005e-05
-4.13965e-05
-3.513e-05
-2.86979e-05
-2.20969e-05
-1.53239e-05
-8.37562e-06
-1.24887e-06
6.05941e-06
1.35523e-05
2.12327e-05
2.91037e-05
3.71681e-05
4.54289e-05
5.38887e-05
6.25503e-05
7.14161e-05
8.04885e-05
8.97697e-05
9.92616e-05
0.000108966
0.000118884
0.000129017
0.000139365
0.00014993
0.00016071
0.000171706
0.000182916
0.000194339
0.000205973
0.000217813
0.000229858
0.000242101
0.000254539
0.000267164
0.000279969
0.000292946
0.000306085
0.000319376
0.000332805
0.000346361
0.000360027
0.000373787
0.000387622
0.000401514
0.000415439
0.000429374
0.000443295
0.000457173
0.000470978
0.000484681
0.000498246
-0.000212861
-0.000213244
-0.000213427
-0.000213534
-0.000213577
-0.000213552
-0.000213462
-0.000213307
-0.000213089
-0.000212809
-0.000212466
-0.00021206
-0.000211592
-0.00021106
-0.000210464
-0.000209804
-0.000209079
-0.00020829
-0.000207434
-0.000206512
-0.000205522
-0.000204465
-0.00020334
-0.000202144
-0.000200879
-0.000199542
-0.000198132
-0.00019665
-0.000195094
-0.000193462
-0.000191754
-0.000189969
-0.000188105
-0.000186161
-0.000184135
-0.000182027
-0.000179835
-0.000177557
-0.000175192
-0.000172739
-0.000170195
-0.00016756
-0.000164831
-0.000162006
-0.000159085
-0.000156064
-0.000152942
-0.000149716
-0.000146386
-0.000142949
-0.000139401
-0.000135743
-0.00013197
-0.00012808
-0.000124072
-0.000119942
-0.000115688
-0.000111307
-0.000106797
-0.000102155
-9.73779e-05
-9.24632e-05
-8.74079e-05
-8.2209e-05
-7.68634e-05
-7.1368e-05
-6.57195e-05
-5.99148e-05
-5.39506e-05
-4.78238e-05
-4.1531e-05
-3.50689e-05
-2.84339e-05
-2.16227e-05
-1.46317e-05
-7.45761e-06
-9.6999e-08
7.4535e-06
1.51972e-05
2.31374e-05
3.12774e-05
3.96204e-05
4.81694e-05
5.69276e-05
6.58979e-05
7.50832e-05
8.44858e-05
9.41083e-05
0.000103953
0.000114021
0.000124314
0.000134834
0.000145582
0.000156558
0.000167762
0.000179192
0.00019085
0.000202731
0.000214835
0.000227157
0.000239695
0.000252442
0.000265393
0.000278541
0.000291879
0.000305396
0.000319082
0.000332926
0.000346913
0.00036103
0.000375258
0.00038958
0.000403976
0.000418424
0.000432898
0.000447373
0.000461821
0.000476211
0.000490511
0.000504686
-0.000218868
-0.000219253
-0.000219436
-0.000219545
-0.00021959
-0.000219568
-0.000219481
-0.00021933
-0.000219117
-0.000218842
-0.000218505
-0.000218106
-0.000217644
-0.00021712
-0.000216533
-0.000215882
-0.000215166
-0.000214386
-0.000213541
-0.00021263
-0.000211652
-0.000210608
-0.000209494
-0.000208312
-0.00020706
-0.000205737
-0.000204342
-0.000202875
-0.000201334
-0.000199718
-0.000198026
-0.000196257
-0.000194409
-0.000192482
-0.000190473
-0.000188382
-0.000186207
-0.000183947
-0.0001816
-0.000179164
-0.000176638
-0.000174021
-0.000171309
-0.000168502
-0.000165597
-0.000162593
-0.000159487
-0.000156278
-0.000152964
-0.000149541
-0.000146009
-0.000142364
-0.000138604
-0.000134726
-0.000130729
-0.000126609
-0.000122364
-0.000117991
-0.000113487
-0.00010885
-0.000104076
-9.91629e-05
-9.4107e-05
-8.89054e-05
-8.35549e-05
-7.8052e-05
-7.23935e-05
-6.6576e-05
-6.0596e-05
-5.44502e-05
-4.8135e-05
-4.16466e-05
-3.49816e-05
-2.81361e-05
-2.11066e-05
-1.38892e-05
-6.48028e-06
1.12382e-06
8.92678e-06
1.69322e-05
2.51438e-05
3.3565e-05
4.21994e-05
5.10505e-05
6.01217e-05
6.94162e-05
7.8937e-05
8.86868e-05
9.86684e-05
0.000108884
0.000119336
0.000130026
0.000140955
0.000152124
0.000163535
0.000175186
0.000187078
0.000199209
0.000211577
0.00022418
0.000237014
0.000250075
0.000263357
0.000276854
0.000290559
0.000304463
0.000318555
0.000332823
0.000347256
0.000361837
0.00037655
0.000391376
0.000406296
0.000421286
0.000436323
0.000451378
0.000466423
0.000481427
0.000496356
0.000511173
-0.000224959
-0.000225344
-0.000225529
-0.000225639
-0.000225687
-0.000225668
-0.000225584
-0.000225437
-0.000225229
-0.00022496
-0.000224629
-0.000224236
-0.000223783
-0.000223266
-0.000222688
-0.000222046
-0.000221341
-0.000220571
-0.000219737
-0.000218838
-0.000217873
-0.000216841
-0.000215741
-0.000214573
-0.000213336
-0.000212028
-0.000210648
-0.000209197
-0.000207672
-0.000206073
-0.000204398
-0.000202647
-0.000200817
-0.000198908
-0.000196918
-0.000194846
-0.00019269
-0.000190449
-0.000188121
-0.000185705
-0.000183198
-0.0001806
-0.000177908
-0.00017512
-0.000172234
-0.000169249
-0.000166162
-0.000162972
-0.000159675
-0.00015627
-0.000152755
-0.000149126
-0.000145382
-0.00014152
-0.000137537
-0.00013343
-0.000129197
-0.000124835
-0.000120341
-0.000115711
-0.000110944
-0.000106035
-0.000100982
-9.57817e-05
-9.04299e-05
-8.49234e-05
-7.92587e-05
-7.34323e-05
-6.74406e-05
-6.12798e-05
-5.49462e-05
-4.84359e-05
-4.1745e-05
-3.48696e-05
-2.78058e-05
-2.05495e-05
-1.30967e-05
-5.44346e-06
2.41432e-06
1.04806e-05
1.87593e-05
2.72545e-05
3.597e-05
4.49098e-05
5.40777e-05
6.34774e-05
7.31124e-05
8.2986e-05
9.31013e-05
0.000103461
0.000114068
0.000124925
0.000136033
0.000147395
0.00015901
0.000170881
0.000183007
0.000195388
0.000208021
0.000220906
0.000234039
0.000247417
0.000261035
0.000274887
0.000288966
0.000303264
0.000317771
0.000332475
0.000347364
0.000362424
0.000377637
0.000392985
0.000408448
0.000424003
0.000439625
0.000455286
0.000470957
0.000486605
0.000502195
0.000517689
-0.000231132
-0.000231517
-0.000231703
-0.000231816
-0.000231866
-0.00023185
-0.00023177
-0.000231628
-0.000231424
-0.000231161
-0.000230836
-0.000230452
-0.000230006
-0.000229498
-0.000228929
-0.000228297
-0.000227602
-0.000226844
-0.000226022
-0.000225136
-0.000224184
-0.000223165
-0.00022208
-0.000220927
-0.000219705
-0.000218413
-0.00021705
-0.000215616
-0.000214109
-0.000212528
-0.000210872
-0.000209139
-0.000207328
-0.000205439
-0.000203469
-0.000201418
-0.000199282
-0.000197062
-0.000194755
-0.00019236
-0.000189875
-0.000187298
-0.000184627
-0.000181861
-0.000178997
-0.000176033
-0.000172968
-0.000169798
-0.000166522
-0.000163137
-0.000159642
-0.000156032
-0.000152307
-0.000148462
-0.000144496
-0.000140406
-0.000136188
-0.00013184
-0.000127358
-0.00012274
-0.000117983
-0.000113083
-0.000108037
-0.000102841
-9.74914e-05
-9.19852e-05
-8.63184e-05
-8.04873e-05
-7.4488e-05
-6.83166e-05
-6.19691e-05
-5.54413e-05
-4.87291e-05
-4.18285e-05
-3.4735e-05
-2.74446e-05
-1.99527e-05
-1.2255e-05
-4.34722e-06
3.77505e-06
1.21161e-05
2.06805e-05
2.94723e-05
3.84961e-05
4.77562e-05
5.72565e-05
6.70013e-05
7.69943e-05
8.72392e-05
9.77393e-05
0.000108498
0.000119518
0.000130802
0.000142353
0.000154172
0.000166261
0.000178619
0.000191249
0.000204148
0.000217316
0.00023075
0.000244447
0.000258405
0.000272616
0.000287075
0.000301774
0.000316705
0.000331855
0.000347213
0.000362765
0.000378494
0.000394381
0.000410407
0.000426548
0.000442779
0.000459073
0.000475398
0.000491721
0.000508006
0.000524214
-0.000237387
-0.000237772
-0.00023796
-0.000238074
-0.000238127
-0.000238114
-0.000238038
-0.0002379
-0.000237703
-0.000237445
-0.000237128
-0.00023675
-0.000236313
-0.000235815
-0.000235255
-0.000234634
-0.000233951
-0.000233205
-0.000232395
-0.000231522
-0.000230584
-0.00022958
-0.00022851
-0.000227373
-0.000226167
-0.000224892
-0.000223548
-0.000222132
-0.000220643
-0.000219082
-0.000217445
-0.000215733
-0.000213943
-0.000212075
-0.000210127
-0.000208097
-0.000205984
-0.000203787
-0.000201503
-0.000199131
-0.000196669
-0.000194115
-0.000191468
-0.000188726
-0.000185885
-0.000182945
-0.000179903
-0.000176757
-0.000173504
-0.000170142
-0.000166669
-0.000163082
-0.000159378
-0.000155554
-0.000151608
-0.000147537
-0.000143338
-0.000139007
-0.000134542
-0.000129939
-0.000125196
-0.000120308
-0.000115272
-0.000110085
-0.000104742
-9.92405e-05
-9.35759e-05
-8.77445e-05
-8.17421e-05
-7.55646e-05
-6.92078e-05
-6.26673e-05
-5.59387e-05
-4.90178e-05
-4.18998e-05
-3.45802e-05
-2.70544e-05
-1.93175e-05
-1.13649e-05
-3.19187e-06
5.20636e-06
1.38346e-05
2.26975e-05
3.18001e-05
4.1147e-05
5.07429e-05
6.05924e-05
7.06999e-05
8.10695e-05
9.17054e-05
0.000102611
0.000113791
0.000125247
0.000136984
0.000149003
0.000161307
0.000173896
0.000186773
0.000199937
0.000213388
0.000227124
0.000241143
0.000255442
0.000270017
0.000284862
0.000299969
0.000315331
0.000330937
0.000346775
0.000362832
0.000379091
0.000395535
0.000412143
0.000428892
0.000445757
0.00046271
0.000479719
0.000496749
0.000513764
0.000530724
-0.000243723
-0.000244109
-0.000244298
-0.000244414
-0.000244469
-0.00024446
-0.000244388
-0.000244255
-0.000244063
-0.000243812
-0.000243502
-0.000243133
-0.000242704
-0.000242215
-0.000241666
-0.000241056
-0.000240385
-0.000239652
-0.000238856
-0.000237996
-0.000237073
-0.000236085
-0.000235031
-0.00023391
-0.000232722
-0.000231466
-0.00023014
-0.000228744
-0.000227275
-0.000225734
-0.000224119
-0.000222428
-0.000220661
-0.000218816
-0.000216891
-0.000214885
-0.000212796
-0.000210623
-0.000208364
-0.000206017
-0.00020358
-0.000201052
-0.000198431
-0.000195714
-0.0001929
-0.000189986
-0.00018697
-0.00018385
-0.000180623
-0.000177286
-0.000173838
-0.000170276
-0.000166597
-0.000162797
-0.000158875
-0.000154826
-0.000150649
-0.000146339
-0.000141894
-0.00013731
-0.000132584
-0.000127712
-0.000122691
-0.000117517
-0.000112185
-0.000106692
-0.000101034
-9.52072e-05
-8.92065e-05
-8.30277e-05
-7.66665e-05
-7.01184e-05
-6.33787e-05
-5.64427e-05
-4.93056e-05
-4.19623e-05
-3.4408e-05
-2.66375e-05
-1.86457e-05
-1.04276e-05
-1.97802e-06
6.70833e-06
1.56366e-05
2.48122e-05
3.42402e-05
4.39259e-05
5.38745e-05
6.40908e-05
7.45798e-05
8.53461e-05
9.63941e-05
0.000107728
0.000119352
0.000131271
0.000143486
0.000156001
0.000168819
0.000181941
0.000195368
0.000209101
0.000223139
0.000237481
0.000252124
0.000267065
0.0002823
0.000297821
0.000313621
0.000329692
0.000346021
0.000362595
0.0003794
0.000396417
0.000413626
0.000431005
0.000448528
0.000466166
0.000483888
0.000501659
0.000519441
0.000537191
-0.00025014
-0.000250526
-0.000250716
-0.000250834
-0.000250892
-0.000250886
-0.000250819
-0.000250692
-0.000250506
-0.000250261
-0.000249959
-0.000249598
-0.000249178
-0.0002487
-0.000248162
-0.000247564
-0.000246905
-0.000246185
-0.000245403
-0.000244559
-0.000243651
-0.000242679
-0.000241642
-0.00024054
-0.00023937
-0.000238133
-0.000236827
-0.000235451
-0.000234004
-0.000232485
-0.000230892
-0.000229225
-0.000227482
-0.000225661
-0.000223761
-0.00022178
-0.000219717
-0.00021757
-0.000215338
-0.000213018
-0.000210609
-0.000208108
-0.000205515
-0.000202827
-0.000200041
-0.000197155
-0.000194168
-0.000191076
-0.000187878
-0.00018457
-0.00018115
-0.000177616
-0.000173964
-0.000170192
-0.000166296
-0.000162274
-0.000158122
-0.000153837
-0.000149416
-0.000144855
-0.00014015
-0.000135299
-0.000130296
-0.000125139
-0.000119823
-0.000114343
-0.000108697
-0.000102879
-9.68846e-05
-9.07097e-05
-8.43494e-05
-7.77991e-05
-7.10537e-05
-6.41082e-05
-5.69576e-05
-4.95965e-05
-4.20196e-05
-3.42215e-05
-2.61967e-05
-1.79397e-05
-9.44491e-06
-7.06726e-07
8.28057e-06
1.75227e-05
2.70255e-05
3.67947e-05
4.6836e-05
5.7155e-05
6.77572e-05
7.86478e-05
8.98321e-05
0.000101315
0.000113102
0.000125196
0.000137603
0.000150326
0.000163368
0.000176732
0.00019042
0.000204433
0.000218771
0.000233435
0.000248423
0.000263733
0.00027936
0.0002953
0.000311546
0.000328089
0.000344918
0.000362022
0.000379386
0.000396992
0.000414821
0.000432851
0.000451056
0.000469407
0.000487873
0.000506418
0.000525003
0.000543584
-0.000256636
-0.000257024
-0.000257215
-0.000257335
-0.000257396
-0.000257393
-0.00025733
-0.000257208
-0.000257029
-0.000256791
-0.000256497
-0.000256145
-0.000255735
-0.000255267
-0.000254741
-0.000254155
-0.00025351
-0.000252804
-0.000252037
-0.000251208
-0.000250317
-0.000249362
-0.000248343
-0.000247259
-0.00024611
-0.000244893
-0.000243608
-0.000242254
-0.00024083
-0.000239334
-0.000237766
-0.000236123
-0.000234405
-0.00023261
-0.000230736
-0.000228783
-0.000226747
-0.000224629
-0.000222425
-0.000220134
-0.000217754
-0.000215284
-0.000212721
-0.000210063
-0.000207308
-0.000204454
-0.000201497
-0.000198437
-0.00019527
-0.000191993
-0.000188605
-0.000185102
-0.000181481
-0.000177739
-0.000173874
-0.000169881
-0.000165758
-0.000161502
-0.000157108
-0.000152574
-0.000147895
-0.000143068
-0.000138089
-0.000132953
-0.000127657
-0.000122196
-0.000116566
-0.000110762
-0.00010478
-9.86142e-05
-9.22605e-05
-8.57135e-05
-7.89682e-05
-7.20193e-05
-6.48612e-05
-5.74884e-05
-4.98952e-05
-4.20759e-05
-3.40246e-05
-2.57354e-05
-1.72022e-05
-8.419e-06
6.2039e-07
9.92223e-06
1.94928e-05
2.93385e-05
3.94655e-05
4.98802e-05
6.05886e-05
7.15967e-05
8.29105e-05
9.45358e-05
0.000106478
0.000118743
0.000131336
0.000144261
0.000157522
0.000171124
0.000185068
0.000199359
0.000213996
0.000228981
0.000244314
0.000259993
0.000276015
0.000292377
0.000309073
0.000326094
0.000343433
0.000361077
0.000379013
0.000397224
0.000415691
0.000434393
0.000453304
0.000472396
0.000491636
0.000510988
0.000530414
0.000549867
-0.000263212
-0.0002636
-0.000263792
-0.000263915
-0.000263978
-0.00026398
-0.000263922
-0.000263805
-0.000263632
-0.000263402
-0.000263116
-0.000262773
-0.000262374
-0.000261917
-0.000261403
-0.00026083
-0.000260198
-0.000259507
-0.000258756
-0.000257944
-0.00025707
-0.000256133
-0.000255133
-0.000254069
-0.00025294
-0.000251745
-0.000250483
-0.000249152
-0.000247752
-0.000246281
-0.000244737
-0.000243121
-0.00024143
-0.000239662
-0.000237817
-0.000235892
-0.000233886
-0.000231798
-0.000229624
-0.000227365
-0.000225017
-0.000222579
-0.000220048
-0.000217423
-0.000214702
-0.000211881
-0.000208959
-0.000205932
-0.0002028
-0.000199557
-0.000196203
-0.000192735
-0.000189148
-0.00018544
-0.000181608
-0.000177649
-0.000173559
-0.000169335
-0.000164973
-0.00016047
-0.000155821
-0.000151023
-0.000146072
-0.000140962
-0.000135691
-0.000130254
-0.000124645
-0.000118861
-0.000112896
-0.000106745
-0.000100403
-9.38659e-05
-8.71267e-05
-8.01805e-05
-7.30213e-05
-6.56434e-05
-5.80406e-05
-5.0207e-05
-4.21362e-05
-3.38219e-05
-2.52576e-05
-1.64368e-05
-7.35279e-06
2.00119e-06
1.1632e-05
2.15464e-05
3.17515e-05
4.2254e-05
5.30608e-05
6.41788e-05
7.56146e-05
8.73748e-05
9.9466e-05
0.000111894
0.000124666
0.000137786
0.000151261
0.000165095
0.000179291
0.000193854
0.000208787
0.00022409
0.000239766
0.000255814
0.000272232
0.000289019
0.000306168
0.000323675
0.00034153
0.000359724
0.000378244
0.000397074
0.000416197
0.000435591
0.000455231
0.00047509
0.000495134
0.000515329
0.000535634
0.000556002
-0.000269867
-0.000270255
-0.000270448
-0.000270573
-0.000270639
-0.000270645
-0.000270592
-0.000270481
-0.000270315
-0.000270093
-0.000269816
-0.000269483
-0.000269094
-0.000268648
-0.000268147
-0.000267588
-0.000266971
-0.000266295
-0.00026556
-0.000264765
-0.000263909
-0.000262992
-0.000262012
-0.000260969
-0.000259862
-0.000258689
-0.000257451
-0.000256144
-0.000254769
-0.000253324
-0.000251808
-0.000250219
-0.000248556
-0.000246818
-0.000245002
-0.000243108
-0.000241134
-0.000239077
-0.000236937
-0.000234711
-0.000232397
-0.000229993
-0.000227497
-0.000224908
-0.000222222
-0.000219437
-0.000216552
-0.000213563
-0.000210467
-0.000207262
-0.000203946
-0.000200514
-0.000196965
-0.000193295
-0.0001895
-0.000185578
-0.000181525
-0.000177338
-0.000173012
-0.000168544
-0.000163929
-0.000159165
-0.000154246
-0.000149168
-0.000143927
-0.000138518
-0.000132937
-0.000127177
-0.000121235
-0.000115105
-0.000108782
-0.00010226
-9.55334e-05
-8.85964e-05
-8.14429e-05
-7.40668e-05
-6.64617e-05
-5.8621e-05
-5.05383e-05
-4.22065e-05
-3.36189e-05
-2.47683e-05
-1.56477e-05
-6.24983e-06
3.43279e-06
1.34076e-05
2.36821e-05
3.4264e-05
4.51607e-05
5.638e-05
6.79293e-05
7.98161e-05
9.20477e-05
0.000104631
0.000117574
0.000130883
0.000144564
0.000158622
0.000173065
0.000187895
0.000203118
0.000218736
0.000234751
0.000251166
0.00026798
0.000285191
0.000302797
0.000320792
0.00033917
0.000357923
0.000377037
0.0003965
0.000416295
0.0004364
0.000456792
0.000477444
0.000498323
0.000519395
0.000540616
0.000561943
-0.000276599
-0.000276987
-0.000277182
-0.000277309
-0.000277378
-0.000277388
-0.00027734
-0.000277236
-0.000277076
-0.000276863
-0.000276594
-0.000276271
-0.000275894
-0.000275461
-0.000274972
-0.000274427
-0.000273825
-0.000273166
-0.000272448
-0.000271671
-0.000270834
-0.000269937
-0.000268978
-0.000267957
-0.000266873
-0.000265724
-0.00026451
-0.00026323
-0.000261881
-0.000260464
-0.000258976
-0.000257416
-0.000255783
-0.000254076
-0.000252292
-0.000250431
-0.000248489
-0.000246467
-0.000244361
-0.00024217
-0.000239892
-0.000237525
-0.000235067
-0.000232516
-0.000229868
-0.000227123
-0.000224277
-0.000221327
-0.000218272
-0.000215108
-0.000211832
-0.000208442
-0.000204933
-0.000201304
-0.000197551
-0.00019367
-0.000189658
-0.00018551
-0.000181225
-0.000176796
-0.000172221
-0.000167495
-0.000162614
-0.000157572
-0.000152367
-0.000146992
-0.000141443
-0.000135714
-0.000129801
-0.000123698
-0.0001174
-0.0001109
-0.000104192
-9.72716e-05
-9.01309e-05
-8.27639e-05
-7.51639e-05
-6.7324e-05
-5.92371e-05
-5.0896e-05
-4.22934e-05
-3.34216e-05
-2.42732e-05
-1.48402e-05
-5.11474e-06
4.91125e-06
1.5246e-05
2.58978e-05
3.68751e-05
4.81863e-05
5.98396e-05
7.18435e-05
8.42062e-05
9.6936e-05
0.000110041
0.000123529
0.000137407
0.000151683
0.000166363
0.000181454
0.00019696
0.000212887
0.000229238
0.000246016
0.000263223
0.000280858
0.000298921
0.000317408
0.000336313
0.00035563
0.000375349
0.000395457
0.000415937
0.000436772
0.000457938
0.000479409
0.000501153
0.000523134
0.000545312
0.000567641
-0.000283408
-0.000283796
-0.000283992
-0.000284121
-0.000284194
-0.000284208
-0.000284165
-0.000284068
-0.000283916
-0.00028371
-0.000283452
-0.000283139
-0.000282773
-0.000282353
-0.000281878
-0.000281348
-0.000280762
-0.000280119
-0.000279419
-0.000278661
-0.000277844
-0.000276968
-0.000276031
-0.000275033
-0.000273973
-0.000272849
-0.000271661
-0.000270408
-0.000269087
-0.000267699
-0.000266241
-0.000264712
-0.000263111
-0.000261436
-0.000259686
-0.000257859
-0.000255953
-0.000253966
-0.000251897
-0.000249744
-0.000247504
-0.000245176
-0.000242758
-0.000240247
-0.000237641
-0.000234937
-0.000232133
-0.000229226
-0.000226214
-0.000223094
-0.000219862
-0.000216516
-0.000213053
-0.000209468
-0.00020576
-0.000201924
-0.000197957
-0.000193854
-0.000189613
-0.000185229
-0.000180698
-0.000176015
-0.000171176
-0.000166177
-0.000161012
-0.000155677
-0.000150166
-0.000144475
-0.000138597
-0.000132527
-0.00012626
-0.000119789
-0.000113108
-0.00010621
-9.90898e-05
-9.17397e-05
-8.41528e-05
-7.63217e-05
-6.82391e-05
-5.98973e-05
-5.12884e-05
-4.24046e-05
-3.32376e-05
-2.37791e-05
-1.40206e-05
-3.95328e-06
6.43165e-06
1.71433e-05
2.81908e-05
3.95835e-05
5.13304e-05
6.34409e-05
7.59243e-05
8.87897e-05
0.000102046
0.000115703
0.000129769
0.000144253
0.000159162
0.000174504
0.000190287
0.000206515
0.000223195
0.000240331
0.000257927
0.000275983
0.000294501
0.00031348
0.000332916
0.000352802
0.000373132
0.000393895
0.000415075
0.000436656
0.000458616
0.00048093
0.000503567
0.000526492
0.000549665
0.00057304
-0.000290292
-0.000290681
-0.000290878
-0.000291009
-0.000291086
-0.000291104
-0.000291067
-0.000290976
-0.000290832
-0.000290635
-0.000290386
-0.000290085
-0.000289731
-0.000289324
-0.000288863
-0.000288348
-0.000287779
-0.000287154
-0.000286472
-0.000285734
-0.000284938
-0.000284084
-0.00028317
-0.000282196
-0.000281161
-0.000280064
-0.000278903
-0.000277678
-0.000276387
-0.000275029
-0.000273602
-0.000272106
-0.000270538
-0.000268897
-0.000267182
-0.000265391
-0.000263522
-0.000261574
-0.000259544
-0.000257431
-0.000255232
-0.000252945
-0.000250569
-0.000248101
-0.000245538
-0.000242879
-0.000240121
-0.00023726
-0.000234294
-0.000231221
-0.000228037
-0.000224738
-0.000221323
-0.000217787
-0.000214128
-0.000210341
-0.000206423
-0.00020237
-0.000198178
-0.000193843
-0.00018936
-0.000184725
-0.000179934
-0.000174982
-0.000169864
-0.000164574
-0.000159108
-0.00015346
-0.000147624
-0.000141594
-0.000135365
-0.00012893
-0.000122283
-0.000115416
-0.000108324
-0.000100999
-9.34334e-05
-8.56198e-05
-7.75503e-05
-6.92169e-05
-6.06113e-05
-5.1725e-05
-4.25494e-05
-3.30756e-05
-2.32944e-05
-1.31965e-05
-2.77221e-06
7.98823e-06
1.90948e-05
3.05575e-05
4.23865e-05
5.4592e-05
6.71843e-05
8.01738e-05
9.35707e-05
0.000107385
0.000121628
0.000136308
0.000151435
0.000167019
0.000183067
0.000199588
0.000216588
0.000234075
0.000252053
0.000270526
0.000289497
0.000308965
0.000328931
0.000349391
0.000370337
0.000391762
0.000413653
0.000435995
0.000458768
0.000481948
0.000505505
0.000529407
0.000553613
0.000578077
-0.000297251
-0.00029764
-0.000297839
-0.000297973
-0.000298053
-0.000298076
-0.000298044
-0.00029796
-0.000297824
-0.000297636
-0.000297398
-0.000297108
-0.000296767
-0.000296373
-0.000295927
-0.000295428
-0.000294876
-0.000294269
-0.000293607
-0.00029289
-0.000292115
-0.000291284
-0.000290394
-0.000289446
-0.000288437
-0.000287367
-0.000286235
-0.000285039
-0.000283778
-0.000282452
-0.000281058
-0.000279596
-0.000278063
-0.000276459
-0.000274781
-0.000273028
-0.000271198
-0.00026929
-0.000267301
-0.00026523
-0.000263074
-0.000260831
-0.0002585
-0.000256077
-0.000253561
-0.00025095
-0.000248239
-0.000245427
-0.000242511
-0.000239488
-0.000236355
-0.000233108
-0.000229745
-0.000226262
-0.000222655
-0.000218921
-0.000215057
-0.000211057
-0.000206919
-0.000202638
-0.000198209
-0.000193628
-0.00018889
-0.000183991
-0.000178925
-0.000173687
-0.000168271
-0.000162673
-0.000156885
-0.000150902
-0.000144719
-0.000138327
-0.000131721
-0.000124894
-0.000117838
-0.000110546
-0.000103011
-9.52236e-05
-8.71766e-05
-7.88613e-05
-7.02689e-05
-6.13904e-05
-5.22168e-05
-4.27385e-05
-3.29458e-05
-2.28286e-05
-1.23766e-05
-1.57935e-06
9.57403e-06
2.10944e-05
3.29929e-05
4.52806e-05
5.7969e-05
7.10695e-05
8.45937e-05
9.85529e-05
0.000112959
0.000127823
0.000143156
0.000158968
0.000175271
0.000192073
0.000209383
0.000227211
0.000245563
0.000264446
0.000283863
0.000303818
0.000324312
0.000345344
0.00036691
0.000389004
0.000411614
0.00043473
0.000458332
0.000482399
0.000506903
0.000531812
0.000557088
0.000582685
-0.000304284
-0.000304673
-0.000304873
-0.000305009
-0.000305093
-0.000305121
-0.000305095
-0.000305018
-0.00030489
-0.000304713
-0.000304485
-0.000304207
-0.000303879
-0.0003035
-0.000303069
-0.000302587
-0.000302052
-0.000301464
-0.000300822
-0.000300126
-0.000299375
-0.000298567
-0.000297703
-0.00029678
-0.000295799
-0.000294757
-0.000293655
-0.00029249
-0.000291261
-0.000289968
-0.000288609
-0.000287182
-0.000285686
-0.000284119
-0.000282481
-0.000280768
-0.000278979
-0.000277113
-0.000275167
-0.00027314
-0.00027103
-0.000268834
-0.00026655
-0.000264175
-0.000261709
-0.000259147
-0.000256488
-0.000253728
-0.000250865
-0.000247896
-0.000244817
-0.000241625
-0.000238317
-0.000234891
-0.000231341
-0.000227665
-0.000223858
-0.000219917
-0.000215837
-0.000211615
-0.000207245
-0.000202723
-0.000198044
-0.000193203
-0.000188195
-0.000183015
-0.000177656
-0.000172114
-0.000166382
-0.000160454
-0.000154323
-0.000147982
-0.000141426
-0.000134646
-0.000127635
-0.000120386
-0.000112889
-0.000105138
-9.71236e-05
-8.88365e-05
-8.02678e-05
-7.1408e-05
-6.22476e-05
-5.27763e-05
-4.29839e-05
-3.28597e-05
-2.23925e-05
-1.15712e-05
-3.84214e-07
1.11804e-05
2.31346e-05
3.54906e-05
4.8261e-05
6.14582e-05
7.5095e-05
8.91844e-05
0.000103739
0.000118772
0.000134296
0.000150324
0.000166867
0.000183937
0.000201545
0.000219702
0.000238418
0.000257699
0.000277555
0.00029799
0.000319008
0.00034061
0.000362795
0.00038556
0.000408897
0.000432795
0.000457241
0.000482213
0.000507688
0.000533634
0.000560015
0.000586786
-0.00031139
-0.000311779
-0.00031198
-0.000312119
-0.000312207
-0.000312239
-0.00031222
-0.00031215
-0.000312031
-0.000311863
-0.000311646
-0.000311381
-0.000311066
-0.000310702
-0.000310287
-0.000309822
-0.000309306
-0.000308738
-0.000308117
-0.000307443
-0.000306715
-0.000305933
-0.000305094
-0.000304199
-0.000303246
-0.000302234
-0.000301163
-0.00030003
-0.000298835
-0.000297576
-0.000296253
-0.000294863
-0.000293406
-0.000291879
-0.00029028
-0.00028861
-0.000286864
-0.000285042
-0.000283142
-0.000281162
-0.000279099
-0.000276952
-0.000274718
-0.000272395
-0.00026998
-0.000267472
-0.000264866
-0.000262162
-0.000259355
-0.000256442
-0.000253421
-0.000250289
-0.000247041
-0.000243674
-0.000240186
-0.000236571
-0.000232827
-0.000228949
-0.000224933
-0.000220774
-0.000216468
-0.00021201
-0.000207396
-0.00020262
-0.000197676
-0.00019256
-0.000187265
-0.000181786
-0.000176117
-0.00017025
-0.00016418
-0.000157899
-0.0001514
-0.000144676
-0.000137719
-0.000130521
-0.000123074
-0.000115369
-0.000107397
-9.91484e-05
-9.06144e-05
-8.17848e-05
-7.26493e-05
-6.31972e-05
-5.34177e-05
-4.32994e-05
-3.28305e-05
-2.1999e-05
-1.07924e-05
8.0187e-07
1.2797e-05
2.52061e-05
3.80429e-05
5.13211e-05
6.50546e-05
7.92579e-05
9.39454e-05
0.000109131
0.00012483
0.000141057
0.000157824
0.000175147
0.000193037
0.000211509
0.000230574
0.000250243
0.000270526
0.000291431
0.000312964
0.000335131
0.000357932
0.000381368
0.000405434
0.000430123
0.000455422
0.000481316
0.000507782
0.000534792
0.000562311
0.000590297
-0.000318566
-0.000318956
-0.000319159
-0.0003193
-0.000319392
-0.00031943
-0.000319417
-0.000319354
-0.000319244
-0.000319086
-0.000318881
-0.000318629
-0.000318328
-0.000317979
-0.000317581
-0.000317134
-0.000316636
-0.000316089
-0.00031549
-0.000314839
-0.000314136
-0.000313379
-0.000312568
-0.000311701
-0.000310777
-0.000309796
-0.000308757
-0.000307658
-0.000306498
-0.000305275
-0.000303989
-0.000302638
-0.000301221
-0.000299735
-0.000298179
-0.000296552
-0.000294852
-0.000293077
-0.000291224
-0.000289293
-0.00028728
-0.000285184
-0.000283003
-0.000280734
-0.000278374
-0.000275922
-0.000273374
-0.000270728
-0.00026798
-0.000265128
-0.000262169
-0.000259098
-0.000255914
-0.000252612
-0.000249189
-0.000245641
-0.000241964
-0.000238153
-0.000234206
-0.000230116
-0.000225879
-0.000221492
-0.000216947
-0.000212241
-0.000207369
-0.000202323
-0.000197099
-0.00019169
-0.00018609
-0.000180293
-0.000174291
-0.000168078
-0.000161645
-0.000154986
-0.000148092
-0.000140956
-0.000133568
-0.000125919
-0.000118
-0.000109802
-0.000101315
-9.25271e-05
-8.3429e-05
-7.40091e-05
-6.42558e-05
-5.41571e-05
-4.37007e-05
-3.28736e-05
-2.16627e-05
-1.00543e-05
1.96564e-06
1.44115e-05
2.72978e-05
4.06396e-05
5.44524e-05
6.87518e-05
8.35538e-05
9.88745e-05
0.00011473
0.000131137
0.00014811
0.000165667
0.000183823
0.000202592
0.00022199
0.000242031
0.000262726
0.000284088
0.000306126
0.000328848
0.000352259
0.000376361
0.000401156
0.000426638
0.000452799
0.000479626
0.000507101
0.000535198
0.000563886
0.000593126
-0.000325814
-0.000326203
-0.000326408
-0.000326552
-0.000326648
-0.000326691
-0.000326684
-0.00032663
-0.000326529
-0.000326382
-0.000326189
-0.000325949
-0.000325663
-0.000325329
-0.000324949
-0.00032452
-0.000324043
-0.000323516
-0.00032294
-0.000322313
-0.000321635
-0.000320905
-0.000320122
-0.000319284
-0.000318392
-0.000317443
-0.000316437
-0.000315372
-0.000314249
-0.000313064
-0.000311817
-0.000310506
-0.00030913
-0.000307688
-0.000306176
-0.000304595
-0.000302942
-0.000301215
-0.000299412
-0.000297532
-0.000295572
-0.00029353
-0.000291404
-0.000289192
-0.00028689
-0.000284497
-0.000282009
-0.000279424
-0.00027674
-0.000273952
-0.000271057
-0.000268053
-0.000264937
-0.000261703
-0.00025835
-0.000254873
-0.000251267
-0.000247529
-0.000243655
-0.00023964
-0.000235478
-0.000231166
-0.000226698
-0.000222069
-0.000217273
-0.000212304
-0.000207158
-0.000201827
-0.000196304
-0.000190584
-0.000184659
-0.000178522
-0.000172164
-0.000165579
-0.000158759
-0.000151693
-0.000144374
-0.000136793
-0.000128939
-0.000120803
-0.000112374
-0.000103641
-9.45935e-05
-8.52193e-05
-7.55063e-05
-6.54418e-05
-5.50129e-05
-4.4206e-05
-3.30069e-05
-2.1401e-05
-9.37345e-06
3.09123e-06
1.60088e-05
2.93957e-05
4.32685e-05
5.76445e-05
7.25411e-05
8.79762e-05
0.000103968
0.000120534
0.000137693
0.000155464
0.000173864
0.000192911
0.000212623
0.000233016
0.000254106
0.000275908
0.000298436
0.000321699
0.000345709
0.000370471
0.000395989
0.000422263
0.000449289
0.000477057
0.000505555
0.000534759
0.000564643
0.00059517
-0.00033313
-0.00033352
-0.000333726
-0.000333873
-0.000333973
-0.000334022
-0.000334022
-0.000333976
-0.000333884
-0.000333748
-0.000333567
-0.000333341
-0.000333069
-0.000332752
-0.000332389
-0.00033198
-0.000331523
-0.000331019
-0.000330466
-0.000329864
-0.000329212
-0.00032851
-0.000327755
-0.000326948
-0.000326087
-0.000325172
-0.000324201
-0.000323173
-0.000322086
-0.000320941
-0.000319734
-0.000318465
-0.000317133
-0.000315735
-0.00031427
-0.000312736
-0.000311132
-0.000309456
-0.000307706
-0.000305879
-0.000303974
-0.000301989
-0.000299921
-0.000297767
-0.000295526
-0.000293195
-0.000290771
-0.000288251
-0.000285633
-0.000282912
-0.000280087
-0.000277153
-0.000274108
-0.000270947
-0.000267668
-0.000264266
-0.000260737
-0.000257077
-0.000253281
-0.000249345
-0.000245264
-0.000241033
-0.000236647
-0.000232101
-0.000227389
-0.000222505
-0.000217443
-0.000212197
-0.000206759
-0.000201124
-0.000195284
-0.000189232
-0.000182959
-0.000176458
-0.00016972
-0.000162736
-0.000155497
-0.000147994
-0.000140217
-0.000132155
-0.000123797
-0.000115132
-0.000106149
-9.68345e-05
-8.71766e-05
-7.71618e-05
-6.67765e-05
-5.60063e-05
-4.48361e-05
-3.32507e-05
-2.12339e-05
-8.76942e-06
4.15983e-06
1.75714e-05
3.14835e-05
4.59147e-05
6.0884e-05
7.64111e-05
9.25161e-05
0.000109219
0.000126541
0.000144502
0.000163122
0.000182424
0.000202426
0.00022315
0.000244613
0.000266835
0.000289833
0.000313621
0.000338214
0.000363622
0.000389854
0.000416914
0.000444803
0.000473516
0.000503045
0.000533371
0.000564473
0.000596319
-0.000340515
-0.000340904
-0.000341112
-0.000341263
-0.000341367
-0.000341421
-0.000341428
-0.00034139
-0.000341309
-0.000341184
-0.000341015
-0.000340803
-0.000340547
-0.000340247
-0.000339902
-0.000339512
-0.000339077
-0.000338595
-0.000338067
-0.00033749
-0.000336866
-0.000336191
-0.000335467
-0.000334691
-0.000333864
-0.000332983
-0.000332047
-0.000331057
-0.00033001
-0.000328905
-0.00032774
-0.000326515
-0.000325227
-0.000323876
-0.000322459
-0.000320975
-0.000319422
-0.000317799
-0.000316103
-0.000314332
-0.000312485
-0.000310558
-0.000308551
-0.000306459
-0.000304282
-0.000302016
-0.000299659
-0.000297207
-0.000294658
-0.000292008
-0.000289255
-0.000286396
-0.000283426
-0.000280343
-0.000277142
-0.00027382
-0.000270372
-0.000266794
-0.000263082
-0.000259231
-0.000255237
-0.000251093
-0.000246796
-0.000242339
-0.000237717
-0.000232924
-0.000227954
-0.0002228
-0.000217456
-0.000211914
-0.000206168
-0.000200209
-0.00019403
-0.000187623
-0.000180978
-0.000174086
-0.000166939
-0.000159526
-0.000151837
-0.000143862
-0.000135588
-0.000127005
-0.000118101
-0.000108861
-9.92738e-05
-8.93249e-05
-7.9e-05
-6.8284e-05
-5.71611e-05
-4.56149e-05
-3.36287e-05
-2.11847e-05
-8.26488e-06
5.1497e-06
1.90785e-05
3.35416e-05
4.85598e-05
6.41545e-05
8.03477e-05
9.71618e-05
0.00011462
0.000132745
0.00015156
0.000171089
0.000191355
0.000212383
0.000234194
0.000256811
0.000280255
0.000304546
0.000329702
0.000355739
0.000382669
0.000410504
0.000439248
0.000468904
0.000499466
0.000530925
0.000563262
0.000596451
-0.000347966
-0.000348355
-0.000348565
-0.000348719
-0.000348827
-0.000348887
-0.000348902
-0.000348873
-0.000348801
-0.000348687
-0.000348532
-0.000348334
-0.000348094
-0.000347811
-0.000347486
-0.000347116
-0.000346703
-0.000346244
-0.000345741
-0.000345191
-0.000344594
-0.000343949
-0.000343255
-0.000342512
-0.000341719
-0.000340873
-0.000339975
-0.000339024
-0.000338017
-0.000336954
-0.000335833
-0.000334653
-0.000333412
-0.000332109
-0.000330742
-0.00032931
-0.00032781
-0.000326242
-0.000324602
-0.00032289
-0.000321102
-0.000319237
-0.000317293
-0.000315267
-0.000313156
-0.000310958
-0.00030867
-0.000306289
-0.000303813
-0.000301239
-0.000298562
-0.000295781
-0.000292891
-0.000289889
-0.000286771
-0.000283533
-0.000280171
-0.000276681
-0.000273058
-0.000269298
-0.000265395
-0.000261345
-0.000257142
-0.000252781
-0.000248256
-0.000243562
-0.000238691
-0.000233637
-0.000228394
-0.000222954
-0.000217311
-0.000211455
-0.000205379
-0.000199075
-0.000192534
-0.000185746
-0.000178701
-0.000171391
-0.000163803
-0.000155927
-0.000147752
-0.000139265
-0.000130454
-0.000121305
-0.000111804
-0.000101938
-9.16915e-05
-8.10482e-05
-6.99917e-05
-5.85049e-05
-4.65699e-05
-3.41682e-05
-2.12803e-05
-7.88614e-06
6.03511e-06
2.05051e-05
3.55462e-05
5.11817e-05
6.74357e-05
8.43328e-05
0.000101898
0.000120158
0.000139137
0.000158864
0.000179365
0.000200666
0.000222795
0.000245777
0.000269639
0.000294406
0.000320099
0.00034674
0.000374349
0.00040294
0.000432526
0.000463115
0.000494708
0.000527302
0.000560885
0.000595436
-0.000355483
-0.000355872
-0.000356084
-0.00035624
-0.000356353
-0.000356419
-0.000356441
-0.000356421
-0.00035636
-0.000356258
-0.000356115
-0.000355933
-0.000355709
-0.000355444
-0.000355138
-0.00035479
-0.000354399
-0.000353965
-0.000353486
-0.000352963
-0.000352395
-0.000351781
-0.000351119
-0.00035041
-0.000349651
-0.000348843
-0.000347983
-0.000347072
-0.000346107
-0.000345087
-0.000344011
-0.000342878
-0.000341685
-0.000340433
-0.000339118
-0.000337739
-0.000336295
-0.000334783
-0.000333202
-0.00033155
-0.000329825
-0.000328024
-0.000326146
-0.000324187
-0.000322146
-0.000320019
-0.000317804
-0.000315498
-0.000313099
-0.000310602
-0.000308006
-0.000305307
-0.000302501
-0.000299584
-0.000296553
-0.000293405
-0.000290133
-0.000286736
-0.000283207
-0.000279543
-0.000275738
-0.000271787
-0.000267686
-0.000263427
-0.000259006
-0.000254417
-0.000249653
-0.000244707
-0.000239574
-0.000234244
-0.000228712
-0.000222969
-0.000217007
-0.000210816
-0.000204389
-0.000197716
-0.000190786
-0.00018359
-0.000176116
-0.000168354
-0.000160291
-0.000151915
-0.000143212
-0.00013417
-0.000124773
-0.000115008
-0.000104858
-9.43068e-05
-8.3337e-05
-7.19307e-05
-6.00691e-05
-4.77326e-05
-3.49006e-05
-2.15519e-05
-7.66419e-06
6.78561e-06
2.18217e-05
3.74692e-05
5.37541e-05
7.07034e-05
8.83445e-05
0.000106706
0.000125817
0.000145708
0.000166408
0.000187948
0.00021036
0.000233674
0.00025792
0.000283128
0.000309327
0.000336543
0.000364802
0.000394125
0.000424532
0.000456037
0.00048865
0.000522374
0.000557206
0.000593132
-0.000363064
-0.000363453
-0.000363666
-0.000363826
-0.000363943
-0.000364016
-0.000364045
-0.000364034
-0.000363983
-0.000363893
-0.000363765
-0.000363597
-0.000363391
-0.000363145
-0.000362859
-0.000362532
-0.000362164
-0.000361754
-0.000361302
-0.000360807
-0.000360269
-0.000359685
-0.000359057
-0.000358382
-0.00035766
-0.000356889
-0.00035607
-0.0003552
-0.000354278
-0.000353303
-0.000352273
-0.000351188
-0.000350046
-0.000348845
-0.000347584
-0.000346261
-0.000344874
-0.000343421
-0.000341901
-0.000340312
-0.000338652
-0.000336918
-0.000335108
-0.000333219
-0.00033125
-0.000329197
-0.000327058
-0.000324831
-0.000322511
-0.000320097
-0.000317585
-0.000314971
-0.000312253
-0.000309426
-0.000306487
-0.000303432
-0.000300257
-0.000296957
-0.000293528
-0.000289965
-0.000286264
-0.000282419
-0.000278425
-0.000274275
-0.000269966
-0.000265489
-0.000260839
-0.00025601
-0.000250994
-0.000245784
-0.000240372
-0.000234751
-0.000228912
-0.000222846
-0.000216544
-0.000209997
-0.000203194
-0.000196125
-0.000188779
-0.000181144
-0.000173207
-0.000164957
-0.00015638
-0.000147461
-0.000138186
-0.00012854
-0.000118506
-0.000108067
-9.72051e-05
-8.59015e-05
-7.41366e-05
-6.18896e-05
-4.9139e-05
-3.58623e-05
-2.20359e-05
-7.63511e-06
7.36591e-06
2.29941e-05
3.92776e-05
5.62453e-05
7.39275e-05
9.23553e-05
0.000111561
0.000131578
0.000152439
0.00017418
0.000196835
0.00022044
0.000245031
0.000270642
0.000297308
0.000325062
0.000353936
0.000383959
0.000415158
0.000447555
0.000481168
0.000516009
0.000552082
0.000589386
-0.000370707
-0.000371096
-0.000371312
-0.000371474
-0.000371596
-0.000371675
-0.000371712
-0.00037171
-0.00037167
-0.000371593
-0.000371479
-0.000371327
-0.000371138
-0.000370911
-0.000370645
-0.000370341
-0.000369997
-0.000369612
-0.000369187
-0.000368721
-0.000368213
-0.000367662
-0.000367067
-0.000366428
-0.000365743
-0.000365012
-0.000364233
-0.000363405
-0.000362528
-0.000361599
-0.000360618
-0.000359583
-0.000358492
-0.000357345
-0.000356139
-0.000354873
-0.000353546
-0.000352155
-0.000350698
-0.000349174
-0.000347581
-0.000345916
-0.000344177
-0.000342361
-0.000340467
-0.000338491
-0.000336432
-0.000334286
-0.00033205
-0.000329721
-0.000327297
-0.000324773
-0.000322147
-0.000319414
-0.000316572
-0.000313615
-0.00031054
-0.000307343
-0.000304019
-0.000300564
-0.000296972
-0.000293238
-0.000289358
-0.000285325
-0.000281133
-0.000276776
-0.000272249
-0.000267544
-0.000262654
-0.000257572
-0.000252291
-0.000246801
-0.000241095
-0.000235165
-0.000228999
-0.00022259
-0.000215926
-0.000208997
-0.000201792
-0.000194298
-0.000186504
-0.000178395
-0.000169959
-0.000161182
-0.000152047
-0.000142539
-0.000132641
-0.000122335
-0.000111603
-0.000100426
-8.87818e-05
-7.665e-05
-6.40077e-05
-5.08311e-05
-3.70953e-05
-2.27743e-05
-7.84049e-06
7.73489e-06
2.39818e-05
4.09317e-05
5.86171e-05
7.70721e-05
9.63318e-05
0.000116433
0.000137412
0.00015931
0.000182164
0.000206015
0.000230905
0.000256873
0.000283961
0.000312209
0.000341655
0.000372337
0.000404289
0.000437543
0.000472127
0.000508061
0.00054536
0.000584033
-0.000378412
-0.000378801
-0.000379018
-0.000379184
-0.000379311
-0.000379396
-0.000379441
-0.000379448
-0.00037942
-0.000379355
-0.000379255
-0.00037912
-0.000378948
-0.000378741
-0.000378496
-0.000378214
-0.000377895
-0.000377537
-0.00037714
-0.000376703
-0.000376226
-0.000375708
-0.000375148
-0.000374545
-0.000373899
-0.000373208
-0.000372471
-0.000371688
-0.000370856
-0.000369975
-0.000369043
-0.000368059
-0.000367022
-0.00036593
-0.000364782
-0.000363575
-0.000362309
-0.000360981
-0.00035959
-0.000358133
-0.000356609
-0.000355016
-0.00035335
-0.000351611
-0.000349794
-0.000347899
-0.000345922
-0.000343861
-0.000341712
-0.000339472
-0.00033714
-0.00033471
-0.000332179
-0.000329545
-0.000326804
-0.00032395
-0.000320981
-0.000317892
-0.000314678
-0.000311336
-0.000307859
-0.000304244
-0.000300483
-0.000296573
-0.000292506
-0.000288277
-0.00028388
-0.000279307
-0.000274552
-0.000269607
-0.000264465
-0.000259117
-0.000253556
-0.000247771
-0.000241753
-0.000235494
-0.000228981
-0.000222206
-0.000215155
-0.000207818
-0.00020018
-0.00019223
-0.000183953
-0.000175334
-0.000166358
-0.000157008
-0.000147267
-0.000137116
-0.000126538
-0.00011551
-0.000104013
-9.20232e-05
-7.95173e-05
-6.64704e-05
-5.28565e-05
-3.86479e-05
-2.38155e-05
-8.32883e-06
7.84411e-06
2.47369e-05
4.23847e-05
6.08243e-05
8.00939e-05
0.000100233
0.000121284
0.000143289
0.000166292
0.000190338
0.000215474
0.000241747
0.000269205
0.000297893
0.00032786
0.00035915
0.000391808
0.000425875
0.000461388
0.00049838
0.000536877
0.000576899
-0.000386177
-0.000386566
-0.000386785
-0.000386954
-0.000387085
-0.000387176
-0.00038723
-0.000387247
-0.00038723
-0.000387178
-0.000387093
-0.000386974
-0.000386821
-0.000386633
-0.00038641
-0.000386152
-0.000385857
-0.000385526
-0.000385158
-0.000384752
-0.000384307
-0.000383823
-0.000383298
-0.000382733
-0.000382126
-0.000381476
-0.000380783
-0.000380044
-0.000379259
-0.000378427
-0.000377546
-0.000376616
-0.000375634
-0.000374599
-0.000373509
-0.000372364
-0.000371161
-0.000369898
-0.000368575
-0.000367188
-0.000365735
-0.000364216
-0.000362627
-0.000360966
-0.000359231
-0.000357419
-0.000355527
-0.000353554
-0.000351495
-0.000349349
-0.000347111
-0.000344779
-0.000342349
-0.000339818
-0.000337181
-0.000334436
-0.000331577
-0.000328601
-0.000325503
-0.000322279
-0.000318924
-0.000315432
-0.000311799
-0.000308018
-0.000304083
-0.00029999
-0.00029573
-0.000291298
-0.000286687
-0.000281888
-0.000276895
-0.000271698
-0.000266291
-0.000260663
-0.000254805
-0.000248707
-0.00024236
-0.000235751
-0.000228869
-0.000221703
-0.000214238
-0.000206463
-0.000198362
-0.00018992
-0.000181121
-0.00017195
-0.000162387
-0.000152415
-0.000142013
-0.000131161
-0.000119837
-0.000108017
-9.56772e-05
-8.27913e-05
-6.9332e-05
-5.52702e-05
-4.05755e-05
-2.52157e-05
-9.15675e-06
7.637e-06
2.52032e-05
4.35814e-05
6.28128e-05
8.29407e-05
0.00010401
0.000126069
0.000149164
0.000173348
0.000198673
0.00022519
0.000252956
0.000282024
0.00031245
0.000344289
0.000377594
0.000412417
0.000448807
0.000486808
0.000526461
0.000567797
-0.000394
-0.000394389
-0.000394609
-0.000394782
-0.000394918
-0.000395016
-0.000395077
-0.000395105
-0.000395099
-0.000395061
-0.000394991
-0.000394889
-0.000394754
-0.000394587
-0.000394386
-0.000394151
-0.000393882
-0.000393579
-0.00039324
-0.000392865
-0.000392453
-0.000392003
-0.000391516
-0.000390989
-0.000390423
-0.000389815
-0.000389166
-0.000388474
-0.000387737
-0.000386955
-0.000386127
-0.00038525
-0.000384325
-0.000383349
-0.00038232
-0.000381238
-0.0003801
-0.000378905
-0.000377651
-0.000376336
-0.000374957
-0.000373514
-0.000372004
-0.000370424
-0.000368773
-0.000367047
-0.000365244
-0.000363362
-0.000361397
-0.000359347
-0.000357209
-0.000354978
-0.000352653
-0.000350229
-0.000347702
-0.000345069
-0.000342325
-0.000339468
-0.000336491
-0.000333392
-0.000330163
-0.000326802
-0.000323301
-0.000319657
-0.000315862
-0.000311911
-0.000307797
-0.000303514
-0.000299055
-0.000294411
-0.000289576
-0.000284542
-0.000279299
-0.000273839
-0.000268152
-0.000262229
-0.000256059
-0.00024963
-0.000242932
-0.000235952
-0.000228677
-0.000221092
-0.000213185
-0.000204939
-0.000196338
-0.000187366
-0.000178004
-0.000168233
-0.000158033
-0.000147383
-0.000136259
-0.000124639
-0.000112495
-9.98029e-05
-8.65324e-05
-7.26538e-05
-5.8135e-05
-4.29423e-05
-2.70399e-05
-1.039e-05
7.04753e-06
2.53148e-05
4.44561e-05
6.45181e-05
8.55498e-05
0.000107602
0.00013073
0.000154987
0.000180434
0.000207128
0.000235133
0.00026451
0.000295325
0.00032764
0.000361521
0.000397031
0.000434232
0.000473181
0.000513931
0.000556531
-0.00040188
-0.000402268
-0.00040249
-0.000402666
-0.000402808
-0.000402912
-0.000402982
-0.00040302
-0.000403026
-0.000403002
-0.000402947
-0.000402862
-0.000402746
-0.0004026
-0.000402421
-0.000402211
-0.000401968
-0.000401693
-0.000401384
-0.00040104
-0.000400662
-0.000400249
-0.000399799
-0.000399312
-0.000398787
-0.000398223
-0.000397619
-0.000396974
-0.000396287
-0.000395556
-0.000394782
-0.000393961
-0.000393094
-0.000392178
-0.000391212
-0.000390195
-0.000389124
-0.000387998
-0.000386816
-0.000385574
-0.000384273
-0.000382909
-0.00038148
-0.000379984
-0.000378419
-0.000376782
-0.000375072
-0.000373284
-0.000371416
-0.000369466
-0.00036743
-0.000365305
-0.000363088
-0.000360775
-0.000358363
-0.000355847
-0.000353224
-0.00035049
-0.00034764
-0.00034467
-0.000341575
-0.000338349
-0.000334989
-0.000331487
-0.000327839
-0.000324038
-0.000320078
-0.000315952
-0.000311653
-0.000307174
-0.000302508
-0.000297645
-0.000292578
-0.000287297
-0.000281793
-0.000276057
-0.000270077
-0.000263843
-0.000257343
-0.000250564
-0.000243494
-0.000236118
-0.000228423
-0.000220392
-0.000212009
-0.000203257
-0.000194118
-0.000184573
-0.0001746
-0.000164178
-0.000153284
-0.000141892
-0.000129978
-0.000117513
-0.000104467
-9.08092e-05
-7.65065e-05
-6.15234e-05
-4.58225e-05
-2.93638e-05
-1.21051e-05
5.99832e-06
2.49938e-05
4.49314e-05
6.58636e-05
8.78461e-05
0.000110937
0.000135198
0.000160693
0.000187489
0.000215654
0.00024526
0.000276381
0.00030909
0.000343464
0.000379579
0.000417508
0.000457325
0.0004991
0.000542895
-0.000409814
-0.000410203
-0.000410427
-0.000410606
-0.000410753
-0.000410864
-0.000410943
-0.00041099
-0.000411009
-0.000410999
-0.00041096
-0.000410892
-0.000410796
-0.00041067
-0.000410515
-0.000410329
-0.000410113
-0.000409867
-0.000409588
-0.000409277
-0.000408934
-0.000408556
-0.000408145
-0.000407698
-0.000407216
-0.000406696
-0.000406139
-0.000405542
-0.000404906
-0.000404229
-0.000403509
-0.000402747
-0.000401939
-0.000401085
-0.000400183
-0.000399232
-0.00039823
-0.000397176
-0.000396067
-0.000394902
-0.000393679
-0.000392396
-0.000391051
-0.000389642
-0.000388166
-0.000386622
-0.000385006
-0.000383315
-0.000381548
-0.000379702
-0.000377772
-0.000375757
-0.000373652
-0.000371454
-0.000369161
-0.000366767
-0.000364269
-0.000361663
-0.000358945
-0.000356111
-0.000353154
-0.000350072
-0.000346857
-0.000343505
-0.000340011
-0.000336368
-0.000332569
-0.000328609
-0.000324479
-0.000320174
-0.000315685
-0.000311004
-0.000306123
-0.000301033
-0.000295724
-0.000290187
-0.000284411
-0.000278385
-0.000272098
-0.000265536
-0.000258687
-0.000251538
-0.000244072
-0.000236276
-0.000228132
-0.000219623
-0.00021073
-0.000201434
-0.000191715
-0.000181549
-0.000170913
-0.000159782
-0.000148129
-0.000135926
-0.000123142
-0.000109745
-9.57001e-05
-8.09712e-05
-6.5519e-05
-4.93017e-05
-3.22749e-05
-1.43914e-05
4.39887e-06
2.4149e-05
4.49154e-05
6.67577e-05
8.97391e-05
0.000113926
0.000139389
0.000166202
0.00019444
0.000224185
0.000255518
0.000288526
0.000323296
0.000359917
0.000398477
0.000439067
0.000481771
0.000526674
-0.000417802
-0.00041819
-0.000418416
-0.000418599
-0.000418751
-0.00041887
-0.000418957
-0.000419016
-0.000419046
-0.00041905
-0.000419027
-0.000418978
-0.000418901
-0.000418796
-0.000418664
-0.000418504
-0.000418316
-0.000418098
-0.000417851
-0.000417573
-0.000417265
-0.000416925
-0.000416553
-0.000416148
-0.000415708
-0.000415234
-0.000414724
-0.000414178
-0.000413593
-0.00041297
-0.000412307
-0.000411603
-0.000410857
-0.000410066
-0.00040923
-0.000408347
-0.000407416
-0.000406435
-0.000405402
-0.000404315
-0.000403174
-0.000401974
-0.000400716
-0.000399396
-0.000398012
-0.000396562
-0.000395044
-0.000393455
-0.000391791
-0.000390051
-0.000388232
-0.000386329
-0.000384341
-0.000382263
-0.000380092
-0.000377825
-0.000375457
-0.000372985
-0.000370405
-0.000367711
-0.000364899
-0.000361965
-0.000358903
-0.000355708
-0.000352374
-0.000348896
-0.000345267
-0.00034148
-0.000337529
-0.000333406
-0.000329105
-0.000324616
-0.000319932
-0.000315043
-0.000309941
-0.000304616
-0.000299057
-0.000293253
-0.000287193
-0.000280864
-0.000274254
-0.000267347
-0.000260131
-0.000252589
-0.000244704
-0.00023646
-0.000227837
-0.000218816
-0.000209376
-0.000199494
-0.000189147
-0.000178308
-0.000166951
-0.000155046
-0.000142562
-0.000129467
-0.000115724
-0.000101295
-8.61411e-05
-7.02177e-05
-5.34786e-05
-3.58745e-05
-1.73527e-05
2.143e-06
2.26724e-05
4.42993e-05
6.70915e-05
9.11209e-05
0.000116464
0.0001432
0.000171414
0.000201196
0.000232637
0.000265835
0.000300889
0.000337902
0.000376979
0.000418225
0.000461746
0.000507644
-0.000425842
-0.00042623
-0.000426457
-0.000426644
-0.000426802
-0.000426927
-0.000427024
-0.000427093
-0.000427136
-0.000427155
-0.000427148
-0.000427116
-0.000427059
-0.000426977
-0.000426869
-0.000426735
-0.000426574
-0.000426386
-0.000426171
-0.000425927
-0.000425654
-0.000425352
-0.00042502
-0.000424657
-0.000424262
-0.000423834
-0.000423373
-0.000422877
-0.000422346
-0.000421779
-0.000421174
-0.00042053
-0.000419846
-0.00041912
-0.000418351
-0.000417538
-0.00041668
-0.000415773
-0.000414818
-0.000413812
-0.000412754
-0.00041164
-0.000410471
-0.000409242
-0.000407953
-0.000406601
-0.000405184
-0.000403698
-0.000402142
-0.000400512
-0.000398806
-0.00039702
-0.000395152
-0.000393198
-0.000391155
-0.000389018
-0.000386785
-0.000384452
-0.000382014
-0.000379466
-0.000376805
-0.000374026
-0.000371123
-0.000368091
-0.000364925
-0.000361619
-0.000358167
-0.000354562
-0.000350797
-0.000346867
-0.000342762
-0.000338475
-0.000333999
-0.000329324
-0.00032444
-0.000319339
-0.00031401
-0.000308443
-0.000302625
-0.000296544
-0.000290188
-0.000283543
-0.000276594
-0.000269326
-0.000261722
-0.000253765
-0.000245436
-0.000236715
-0.000227582
-0.000218013
-0.000207984
-0.000197471
-0.000186444
-0.000174874
-0.00016273
-0.000149978
-0.000136582
-0.000122502
-0.000107697
-9.21226e-05
-7.57299e-05
-5.84677e-05
-4.0281e-05
-2.11109e-05
-8.94042e-07
2.0437e-05
4.29546e-05
6.67355e-05
9.18618e-05
0.000118421
0.000146505
0.000176211
0.000207643
0.000240908
0.000276119
0.000313394
0.000352853
0.00039462
0.000438819
0.000485578
-0.000433931
-0.000434319
-0.000434549
-0.000434739
-0.000434903
-0.000435035
-0.000435141
-0.000435221
-0.000435277
-0.00043531
-0.00043532
-0.000435306
-0.00043527
-0.00043521
-0.000435126
-0.000435018
-0.000434886
-0.000434728
-0.000434545
-0.000434336
-0.0004341
-0.000433836
-0.000433545
-0.000433225
-0.000432875
-0.000432494
-0.000432083
-0.000431639
-0.000431162
-0.000430652
-0.000430106
-0.000429523
-0.000428903
-0.000428243
-0.000427544
-0.000426802
-0.000426018
-0.000425189
-0.000424313
-0.00042339
-0.000422416
-0.000421391
-0.000420313
-0.000419179
-0.000417987
-0.000416735
-0.000415421
-0.000414042
-0.000412596
-0.00041108
-0.000409491
-0.000407826
-0.000406082
-0.000404255
-0.000402343
-0.000400343
-0.000398249
-0.000396059
-0.000393769
-0.000391373
-0.000388868
-0.00038625
-0.000383512
-0.00038065
-0.000377659
-0.000374532
-0.000371265
-0.00036785
-0.000364281
-0.000360551
-0.000356652
-0.000352578
-0.000348319
-0.000343868
-0.000339215
-0.000334351
-0.000329266
-0.000323948
-0.000318387
-0.000312571
-0.000306486
-0.00030012
-0.000293457
-0.000286482
-0.00027918
-0.000271533
-0.000263521
-0.000255126
-0.000246327
-0.0002371
-0.000227422
-0.000217266
-0.000206604
-0.000195408
-0.000183644
-0.000171279
-0.000158276
-0.000144595
-0.000130193
-0.000115024
-9.90383e-05
-8.21835e-05
-6.44019e-05
-4.56322e-05
-2.58079e-05
-4.85812e-06
1.72935e-05
4.07287e-05
6.55351e-05
9.18066e-05
0.000119643
0.000149151
0.000180443
0.000213639
0.000248865
0.000286253
0.00032594
0.000368069
0.000412787
0.000460242
-0.000442069
-0.000442457
-0.000442689
-0.000442883
-0.000443052
-0.000443192
-0.000443307
-0.000443398
-0.000443467
-0.000443514
-0.000443541
-0.000443546
-0.00044353
-0.000443493
-0.000443434
-0.000443353
-0.000443249
-0.000443122
-0.000442972
-0.000442798
-0.000442599
-0.000442375
-0.000442125
-0.000441848
-0.000441544
-0.000441212
-0.000440852
-0.000440461
-0.00044004
-0.000439587
-0.000439101
-0.000438581
-0.000438026
-0.000437434
-0.000436805
-0.000436137
-0.000435428
-0.000434678
-0.000433884
-0.000433045
-0.000432159
-0.000431224
-0.000430239
-0.000429202
-0.00042811
-0.000426961
-0.000425753
-0.000424484
-0.000423151
-0.000421752
-0.000420283
-0.000418742
-0.000417125
-0.000415431
-0.000413655
-0.000411794
-0.000409845
-0.000407803
-0.000405665
-0.000403427
-0.000401084
-0.000398632
-0.000396065
-0.00039338
-0.00039057
-0.00038763
-0.000384555
-0.000381338
-0.000377973
-0.000374452
-0.00037077
-0.000366917
-0.000362888
-0.000358672
-0.000354261
-0.000349646
-0.000344817
-0.000339763
-0.000334474
-0.000328937
-0.00032314
-0.00031707
-0.000310712
-0.000304052
-0.000297072
-0.000289757
-0.000282087
-0.000274044
-0.000265605
-0.00025675
-0.000247453
-0.000237688
-0.000227429
-0.000216644
-0.000205302
-0.000193368
-0.000180805
-0.000167573
-0.000153629
-0.000138924
-0.000123409
-0.00010703
-8.97263e-05
-7.14352e-05
-5.20877e-05
-3.16095e-05
-9.92063e-06
1.30651e-05
3.74408e-05
6.33064e-05
9.07692e-05
0.000119944
0.000150954
0.00018393
0.000219011
0.000256345
0.000296085
0.000338396
0.000383444
0.000431405
-0.000450254
-0.000450641
-0.000450875
-0.000451074
-0.000451248
-0.000451396
-0.000451519
-0.000451621
-0.000451704
-0.000451766
-0.00045181
-0.000451834
-0.000451839
-0.000451825
-0.000451791
-0.000451737
-0.000451662
-0.000451567
-0.00045145
-0.000451311
-0.00045115
-0.000450966
-0.000450758
-0.000450526
-0.000450269
-0.000449986
-0.000449677
-0.00044934
-0.000448975
-0.000448581
-0.000448157
-0.000447701
-0.000447212
-0.00044669
-0.000446133
-0.000445539
-0.000444908
-0.000444238
-0.000443527
-0.000442775
-0.000441978
-0.000441136
-0.000440247
-0.000439308
-0.000438319
-0.000437275
-0.000436177
-0.00043502
-0.000433803
-0.000432524
-0.000431178
-0.000429765
-0.00042828
-0.000426721
-0.000425085
-0.000423368
-0.000421567
-0.000419679
-0.000417698
-0.000415622
-0.000413447
-0.000411167
-0.000408778
-0.000406276
-0.000403654
-0.000400908
-0.000398033
-0.000395022
-0.000391868
-0.000388566
-0.000385108
-0.000381488
-0.000377697
-0.000373727
-0.00036957
-0.000365216
-0.000360657
-0.000355881
-0.000350878
-0.000345636
-0.000340143
-0.000334387
-0.000328352
-0.000322025
-0.00031539
-0.000308429
-0.000301125
-0.000293459
-0.000285409
-0.000276954
-0.00026807
-0.000258731
-0.000248909
-0.000238575
-0.000227696
-0.000216238
-0.000204165
-0.000191434
-0.000178002
-0.000163823
-0.000148844
-0.00013301
-0.00011626
-9.85287e-05
-7.97457e-05
-5.98338e-05
-3.87098e-05
-1.62833e-05
7.54358e-06
3.28766e-05
5.98299e-05
8.85266e-05
0.000119099
0.00015169
0.00018645
0.000223543
0.000263141
0.000305426
0.000350591
0.000398835
-0.000458483
-0.000458871
-0.000459107
-0.000459309
-0.000459489
-0.000459644
-0.000459777
-0.00045989
-0.000459986
-0.000460064
-0.000460124
-0.000460168
-0.000460194
-0.000460203
-0.000460195
-0.000460168
-0.000460123
-0.000460059
-0.000459976
-0.000459873
-0.000459751
-0.000459607
-0.000459442
-0.000459255
-0.000459046
-0.000458813
-0.000458556
-0.000458274
-0.000457967
-0.000457632
-0.00045727
-0.00045688
-0.000456459
-0.000456007
-0.000455523
-0.000455006
-0.000454454
-0.000453866
-0.000453241
-0.000452576
-0.000451871
-0.000451123
-0.000450332
-0.000449494
-0.000448609
-0.000447674
-0.000446687
-0.000445646
-0.000444548
-0.000443391
-0.000442173
-0.00044089
-0.00043954
-0.000438121
-0.000436629
-0.00043506
-0.000433412
-0.000431681
-0.000429864
-0.000427955
-0.000425952
-0.00042385
-0.000421645
-0.000419331
-0.000416905
-0.00041436
-0.000411692
-0.000408894
-0.00040596
-0.000402885
-0.000399662
-0.000396282
-0.00039274
-0.000389027
-0.000385135
-0.000381055
-0.000376777
-0.000372293
-0.00036759
-0.000362659
-0.000357486
-0.000352061
-0.000346368
-0.000340394
-0.000334123
-0.00032754
-0.000320625
-0.000313362
-0.000305728
-0.000297703
-0.000289263
-0.000280383
-0.000271035
-0.00026119
-0.000250817
-0.000239881
-0.000228345
-0.000216168
-0.000203307
-0.000189714
-0.000175337
-0.00016012
-0.000144002
-0.000126915
-0.000108788
-8.9541e-05
-6.90884e-05
-4.73364e-05
-2.41828e-05
4.83163e-07
2.67819e-05
5.48441e-05
8.48112e-05
0.000116836
0.000151083
0.00018773
0.000226967
0.000268997
0.000314034
0.000362307
-0.000466756
-0.000467143
-0.000467381
-0.000467587
-0.000467773
-0.000467936
-0.000468078
-0.000468203
-0.000468312
-0.000468405
-0.000468483
-0.000468546
-0.000468594
-0.000468626
-0.000468643
-0.000468644
-0.000468629
-0.000468598
-0.000468549
-0.000468483
-0.000468399
-0.000468296
-0.000468175
-0.000468034
-0.000467873
-0.000467691
-0.000467487
-0.000467261
-0.000467012
-0.000466738
-0.00046644
-0.000466115
-0.000465763
-0.000465384
-0.000464974
-0.000464535
-0.000464063
-0.000463559
-0.00046302
-0.000462445
-0.000461833
-0.000461182
-0.000460491
-0.000459757
-0.000458979
-0.000458154
-0.000457281
-0.000456358
-0.000455382
-0.000454351
-0.000453263
-0.000452114
-0.000450903
-0.000449627
-0.000448282
-0.000446866
-0.000445375
-0.000443806
-0.000442155
-0.000440419
-0.000438594
-0.000436676
-0.00043466
-0.000432541
-0.000430316
-0.000427979
-0.000425525
-0.000422948
-0.000420242
-0.000417403
-0.000414422
-0.000411293
-0.00040801
-0.000404565
-0.000400948
-0.000397153
-0.00039317
-0.00038899
-0.000384602
-0.000379996
-0.00037516
-0.000370082
-0.000364749
-0.000359147
-0.000353262
-0.000347077
-0.000340576
-0.00033374
-0.00032655
-0.000318984
-0.000311019
-0.000302631
-0.000293793
-0.000284477
-0.000274652
-0.000264282
-0.000253333
-0.000241763
-0.00022953
-0.000216586
-0.000202879
-0.000188353
-0.000172945
-0.00015659
-0.000139212
-0.000120732
-0.000101062
-8.01047e-05
-5.77549e-05
-3.38977e-05
-8.407e-06
1.88545e-05
4.80364e-05
7.93015e-05
0.000112827
0.000148803
0.000187439
0.000228956
0.000273594
0.000321606
-0.00047507
-0.000475457
-0.000475697
-0.000475907
-0.000476098
-0.000476269
-0.000476421
-0.000476557
-0.000476679
-0.000476788
-0.000476883
-0.000476966
-0.000477035
-0.000477092
-0.000477135
-0.000477164
-0.000477179
-0.00047718
-0.000477166
-0.000477137
-0.000477092
-0.000477031
-0.000476954
-0.00047686
-0.000476747
-0.000476617
-0.000476467
-0.000476297
-0.000476107
-0.000475895
-0.000475661
-0.000475404
-0.000475123
-0.000474816
-0.000474483
-0.000474122
-0.000473733
-0.000473313
-0.000472863
-0.00047238
-0.000471863
-0.00047131
-0.000470721
-0.000470092
-0.000469423
-0.000468711
-0.000467955
-0.000467152
-0.000466301
-0.000465399
-0.000464443
-0.000463432
-0.000462363
-0.000461233
-0.000460039
-0.000458779
-0.00045745
-0.000456047
-0.000454568
-0.00045301
-0.000451368
-0.000449638
-0.000447817
-0.000445899
-0.000443882
-0.000441759
-0.000439525
-0.000437177
-0.000434707
-0.000432111
-0.000429382
-0.000426513
-0.000423498
-0.00042033
-0.000417001
-0.000413502
-0.000409826
-0.000405963
-0.000401903
-0.000397636
-0.000393152
-0.000388439
-0.000383483
-0.000378273
-0.000372793
-0.000367029
-0.000360964
-0.000354581
-0.00034786
-0.000340781
-0.000333323
-0.000325461
-0.000317169
-0.00030842
-0.000299184
-0.000289427
-0.000279113
-0.000268204
-0.000256656
-0.000244423
-0.000231454
-0.000217693
-0.000203077
-0.000187541
-0.000171009
-0.000153401
-0.000134627
-0.000114588
-9.31784e-05
-7.02779e-05
-4.57566e-05
-1.94714e-05
8.73441e-06
3.90325e-05
7.16108e-05
0.000106674
0.000144446
0.000185169
0.000229103
0.000276533
-0.000483423
-0.00048381
-0.000484052
-0.000484266
-0.000484463
-0.000484641
-0.000484803
-0.000484951
-0.000485086
-0.00048521
-0.000485324
-0.000485426
-0.000485517
-0.000485598
-0.000485667
-0.000485725
-0.000485771
-0.000485804
-0.000485825
-0.000485834
-0.000485829
-0.00048581
-0.000485777
-0.00048573
-0.000485667
-0.000485588
-0.000485493
-0.000485381
-0.000485251
-0.000485102
-0.000484933
-0.000484744
-0.000484534
-0.000484301
-0.000484045
-0.000483765
-0.000483458
-0.000483126
-0.000482765
-0.000482375
-0.000481955
-0.000481503
-0.000481017
-0.000480496
-0.000479938
-0.000479341
-0.000478704
-0.000478024
-0.0004773
-0.000476529
-0.000475709
-0.000474839
-0.000473915
-0.000472935
-0.000471896
-0.000470796
-0.000469632
-0.0004684
-0.000467097
-0.00046572
-0.000464266
-0.00046273
-0.000461109
-0.000459398
-0.000457594
-0.000455692
-0.000453686
-0.000451573
-0.000449347
-0.000447002
-0.000444532
-0.000441932
-0.000439195
-0.000436315
-0.000433283
-0.000430092
-0.000426734
-0.0004232
-0.000419482
-0.00041557
-0.000411452
-0.000407119
-0.000402559
-0.000397758
-0.000392704
-0.000387381
-0.000381774
-0.000375868
-0.000369642
-0.000363079
-0.000356157
-0.000348853
-0.000341143
-0.000332999
-0.000324393
-0.000315293
-0.000305663
-0.000295467
-0.000284662
-0.000273204
-0.000261041
-0.000248119
-0.000234377
-0.000219748
-0.000204159
-0.000187529
-0.000169768
-0.000150777
-0.000130446
-0.000108656
-8.5272e-05
-6.0147e-05
-3.31183e-05
-4.00674e-06
2.73851e-05
6.12742e-05
9.78986e-05
0.000137519
0.000180418
0.000226906
-0.000491814
-0.0004922
-0.000492445
-0.000492663
-0.000492866
-0.000493051
-0.000493223
-0.000493382
-0.000493531
-0.000493671
-0.000493802
-0.000493924
-0.000494038
-0.000494143
-0.000494238
-0.000494325
-0.000494401
-0.000494468
-0.000494525
-0.000494571
-0.000494606
-0.00049463
-0.000494642
-0.000494642
-0.000494629
-0.000494603
-0.000494563
-0.000494509
-0.00049444
-0.000494354
-0.000494252
-0.000494132
-0.000493994
-0.000493836
-0.000493658
-0.000493459
-0.000493238
-0.000492993
-0.000492724
-0.000492428
-0.000492106
-0.000491756
-0.000491376
-0.000490964
-0.000490519
-0.000490039
-0.000489523
-0.000488969
-0.000488375
-0.000487738
-0.000487057
-0.00048633
-0.000485554
-0.000484727
-0.000483847
-0.000482911
-0.000481915
-0.000480857
-0.000479735
-0.000478545
-0.000477283
-0.000475946
-0.00047453
-0.000473032
-0.000471447
-0.000469771
-0.000468
-0.000466129
-0.000464153
-0.000462067
-0.000459865
-0.000457542
-0.000455092
-0.000452508
-0.000449783
-0.000446911
-0.000443883
-0.000440691
-0.000437328
-0.000433783
-0.000430047
-0.00042611
-0.000421961
-0.000417587
-0.000412977
-0.000408116
-0.00040299
-0.000397583
-0.000391879
-0.000385859
-0.000379502
-0.000372788
-0.000365694
-0.000358192
-0.000350257
-0.000341857
-0.00033296
-0.000323528
-0.000313523
-0.0003029
-0.000291611
-0.000279603
-0.000266815
-0.000253183
-0.000238635
-0.00022309
-0.00020646
-0.000188646
-0.000169539
-0.000149016
-0.000126943
-0.000103168
-7.75265e-05
-4.9832e-05
-1.98797e-05
1.25576e-05
4.77308e-05
8.59167e-05
0.00012742
0.000172575
-0.00050024
-0.000500626
-0.000500873
-0.000501095
-0.000501304
-0.000501497
-0.000501678
-0.000501849
-0.000502012
-0.000502168
-0.000502317
-0.000502459
-0.000502595
-0.000502724
-0.000502846
-0.000502961
-0.000503069
-0.000503169
-0.000503262
-0.000503346
-0.000503422
-0.000503488
-0.000503546
-0.000503594
-0.000503632
-0.000503659
-0.000503675
-0.000503679
-0.000503671
-0.00050365
-0.000503614
-0.000503565
-0.000503499
-0.000503418
-0.000503319
-0.000503203
-0.000503067
-0.000502911
-0.000502735
-0.000502536
-0.000502313
-0.000502066
-0.000501793
-0.000501492
-0.000501163
-0.000500802
-0.00050041
-0.000499983
-0.000499521
-0.000499021
-0.000498481
-0.0004979
-0.000497276
-0.000496605
-0.000495886
-0.000495117
-0.000494294
-0.000493414
-0.000492476
-0.000491476
-0.000490411
-0.000489278
-0.000488072
-0.000486791
-0.000485431
-0.000483988
-0.000482457
-0.000480835
-0.000479116
-0.000477297
-0.000475371
-0.000473333
-0.000471178
-0.0004689
-0.000466493
-0.000463949
-0.000461262
-0.000458424
-0.000455427
-0.000452263
-0.000448922
-0.000445396
-0.000441674
-0.000437745
-0.000433597
-0.000429217
-0.000424593
-0.000419709
-0.00041455
-0.000409098
-0.000403336
-0.000397242
-0.000390796
-0.000383973
-0.000376748
-0.000369091
-0.000360972
-0.000352356
-0.000343206
-0.00033348
-0.000323131
-0.000312109
-0.000300355
-0.000287809
-0.000274399
-0.000260047
-0.000244667
-0.000228161
-0.000210421
-0.000191326
-0.00017074
-0.000148512
-0.000124474
-9.84363e-05
-7.01881e-05
-3.94946e-05
-6.0944e-06
3.03035e-05
7.00219e-05
0.000113418
-0.0005087
-0.000509086
-0.000509335
-0.000509561
-0.000509776
-0.000509977
-0.000510168
-0.000510351
-0.000510527
-0.000510699
-0.000510866
-0.000511028
-0.000511186
-0.000511339
-0.000511488
-0.000511632
-0.000511771
-0.000511905
-0.000512034
-0.000512156
-0.000512273
-0.000512383
-0.000512486
-0.000512583
-0.000512671
-0.000512752
-0.000512825
-0.000512888
-0.000512942
-0.000512985
-0.000513018
-0.000513039
-0.000513047
-0.000513043
-0.000513025
-0.000512991
-0.000512943
-0.000512877
-0.000512794
-0.000512693
-0.000512572
-0.00051243
-0.000512265
-0.000512077
-0.000511864
-0.000511625
-0.000511357
-0.000511061
-0.000510733
-0.000510372
-0.000509976
-0.000509544
-0.000509073
-0.000508562
-0.000508008
-0.000507408
-0.000506761
-0.000506064
-0.000505314
-0.000504509
-0.000503645
-0.000502719
-0.000501729
-0.00050067
-0.00049954
-0.000498335
-0.000497051
-0.000495683
-0.000494228
-0.000492682
-0.000491039
-0.000489294
-0.000487443
-0.00048548
-0.000483398
-0.000481193
-0.000478857
-0.000476383
-0.000473765
-0.000470994
-0.000468063
-0.000464962
-0.000461682
-0.000458213
-0.000454545
-0.000450665
-0.000446563
-0.000442223
-0.000437632
-0.000432774
-0.000427633
-0.000422189
-0.000416424
-0.000410313
-0.000403835
-0.000396963
-0.000389667
-0.000381916
-0.000373674
-0.000364903
-0.000355559
-0.000345594
-0.000334954
-0.00032358
-0.000311403
-0.000298351
-0.000284338
-0.00026927
-0.000253043
-0.000235536
-0.000216617
-0.000196136
-0.000173922
-0.000149787
-0.000123517
-9.48713e-05
-6.35814e-05
-2.93452e-05
8.17503e-06
4.93558e-05
-0.000517191
-0.000517578
-0.000517829
-0.000518059
-0.00051828
-0.000518489
-0.000518689
-0.000518884
-0.000519075
-0.000519262
-0.000519447
-0.000519629
-0.000519809
-0.000519987
-0.000520163
-0.000520336
-0.000520507
-0.000520674
-0.000520839
-0.000521
-0.000521158
-0.000521311
-0.000521461
-0.000521606
-0.000521746
-0.000521881
-0.00052201
-0.000522133
-0.000522249
-0.000522358
-0.000522459
-0.000522551
-0.000522635
-0.000522708
-0.000522771
-0.000522822
-0.000522861
-0.000522887
-0.000522899
-0.000522896
-0.000522878
-0.000522842
-0.000522787
-0.000522714
-0.000522619
-0.000522502
-0.000522362
-0.000522197
-0.000522006
-0.000521786
-0.000521537
-0.000521256
-0.000520942
-0.000520593
-0.000520206
-0.00051978
-0.000519312
-0.0005188
-0.000518242
-0.000517635
-0.000516976
-0.000516262
-0.000515491
-0.00051466
-0.000513765
-0.000512804
-0.000511771
-0.000510664
-0.00050948
-0.000508213
-0.000506859
-0.000505415
-0.000503875
-0.000502235
-0.000500489
-0.000498631
-0.000496656
-0.000494557
-0.000492328
-0.000489963
-0.000487452
-0.00048479
-0.000481967
-0.000478974
-0.000475802
-0.00047244
-0.000468877
-0.000465102
-0.000461102
-0.000456862
-0.000452367
-0.000447601
-0.000442545
-0.000437181
-0.000431486
-0.000425436
-0.000419006
-0.000412166
-0.000404884
-0.000397125
-0.000388848
-0.000380009
-0.000370558
-0.00036044
-0.000349591
-0.000337941
-0.00032541
-0.00031191
-0.000297338
-0.00028158
-0.000264507
-0.000245971
-0.000225807
-0.000203825
-0.000179812
-0.000153527
-0.000124697
-9.3013e-05
-5.8126e-05
-1.96442e-05
-0.000525713
-0.000526099
-0.000526353
-0.000526587
-0.000526814
-0.000527031
-0.000527241
-0.000527447
-0.000527652
-0.000527855
-0.000528058
-0.00052826
-0.000528463
-0.000528665
-0.000528868
-0.00052907
-0.000529272
-0.000529474
-0.000529675
-0.000529875
-0.000530073
-0.000530271
-0.000530466
-0.00053066
-0.000530852
-0.000531042
-0.000531228
-0.000531411
-0.00053159
-0.000531765
-0.000531935
-0.000532099
-0.000532258
-0.00053241
-0.000532554
-0.000532691
-0.000532819
-0.000532937
-0.000533045
-0.000533142
-0.000533227
-0.000533298
-0.000533355
-0.000533397
-0.000533423
-0.000533431
-0.00053342
-0.000533388
-0.000533335
-0.000533259
-0.000533158
-0.000533031
-0.000532876
-0.000532691
-0.000532474
-0.000532224
-0.000531939
-0.000531616
-0.000531252
-0.000530847
-0.000530397
-0.0005299
-0.000529353
-0.000528753
-0.000528098
-0.000527384
-0.000526609
-0.000525769
-0.00052486
-0.000523879
-0.000522822
-0.000521685
-0.000520464
-0.000519154
-0.00051775
-0.000516249
-0.000514644
-0.00051293
-0.000511101
-0.000509151
-0.000507074
-0.000504863
-0.00050251
-0.000500007
-0.000497346
-0.000494519
-0.000491514
-0.000488323
-0.000484933
-0.000481332
-0.000477508
-0.000473446
-0.000469129
-0.000464541
-0.000459662
-0.000454472
-0.000448948
-0.000443063
-0.000436789
-0.000430095
-0.000422944
-0.000415296
-0.000407107
-0.000398325
-0.000388892
-0.000378745
-0.000367808
-0.000356
-0.000343224
-0.000329372
-0.000314321
-0.000297929
-0.000280036
-0.000260458
-0.000238986
-0.000215381
-0.000189368
-0.000160638
-0.000128836
-9.35596e-05
-0.000534262
-0.000534649
-0.000534905
-0.000535144
-0.000535376
-0.000535601
-0.000535821
-0.000536039
-0.000536257
-0.000536476
-0.000536697
-0.00053692
-0.000537144
-0.000537372
-0.000537601
-0.000537833
-0.000538066
-0.000538302
-0.000538539
-0.000538777
-0.000539017
-0.000539259
-0.000539501
-0.000539744
-0.000539988
-0.000540232
-0.000540476
-0.000540719
-0.000540962
-0.000541203
-0.000541442
-0.000541679
-0.000541913
-0.000542144
-0.000542372
-0.000542594
-0.000542811
-0.000543023
-0.000543228
-0.000543425
-0.000543615
-0.000543795
-0.000543965
-0.000544124
-0.000544271
-0.000544404
-0.000544524
-0.000544628
-0.000544715
-0.000544784
-0.000544833
-0.000544862
-0.000544868
-0.00054485
-0.000544807
-0.000544735
-0.000544635
-0.000544503
-0.000544338
-0.000544138
-0.0005439
-0.000543623
-0.000543304
-0.00054294
-0.000542529
-0.000542068
-0.000541555
-0.000540986
-0.000540358
-0.000539669
-0.000538914
-0.000538091
-0.000537195
-0.000536223
-0.00053517
-0.000534033
-0.000532807
-0.000531486
-0.000530067
-0.000528544
-0.000526911
-0.000525162
-0.000523291
-0.000521292
-0.000519157
-0.000516878
-0.000514448
-0.000511858
-0.000509098
-0.000506157
-0.000503026
-0.000499691
-0.000496139
-0.000492355
-0.000488324
-0.000484028
-0.000479446
-0.000474557
-0.000469337
-0.000463757
-0.000457787
-0.000451392
-0.000444531
-0.000437161
-0.00042923
-0.000420679
-0.000411443
-0.000401446
-0.0003906
-0.000378806
-0.000365948
-0.000351894
-0.000336492
-0.000319567
-0.000300916
-0.000280308
-0.000257474
-0.000232107
-0.000203853
-0.000172306
-0.000542838
-0.000543225
-0.000543484
-0.000543726
-0.000543965
-0.000544198
-0.000544427
-0.000544657
-0.000544889
-0.000545123
-0.000545362
-0.000545605
-0.000545852
-0.000546104
-0.00054636
-0.000546621
-0.000546886
-0.000547155
-0.000547429
-0.000547706
-0.000547988
-0.000548273
-0.000548562
-0.000548854
-0.00054915
-0.000549449
-0.00054975
-0.000550054
-0.00055036
-0.000550668
-0.000550977
-0.000551287
-0.000551598
-0.000551909
-0.000552219
-0.000552528
-0.000552836
-0.000553141
-0.000553444
-0.000553743
-0.000554037
-0.000554327
-0.000554611
-0.000554888
-0.000555158
-0.000555419
-0.00055567
-0.000555911
-0.00055614
-0.000556356
-0.000556558
-0.000556744
-0.000556914
-0.000557065
-0.000557196
-0.000557306
-0.000557393
-0.000557456
-0.000557492
-0.0005575
-0.000557478
-0.000557425
-0.000557337
-0.000557212
-0.00055705
-0.000556846
-0.000556599
-0.000556306
-0.000555965
-0.000555573
-0.000555126
-0.000554622
-0.000554058
-0.00055343
-0.000552735
-0.000551969
-0.000551129
-0.000550211
-0.00054921
-0.000548122
-0.000546943
-0.000545668
-0.000544291
-0.000542807
-0.00054121
-0.000539495
-0.000537654
-0.000535681
-0.000533567
-0.000531306
-0.000528887
-0.000526301
-0.000523537
-0.000520584
-0.000517428
-0.000514056
-0.000510451
-0.000506595
-0.000502469
-0.000498049
-0.00049331
-0.000488223
-0.000482754
-0.000476866
-0.000470514
-0.000463649
-0.000456213
-0.000448139
-0.00043935
-0.000429757
-0.000419256
-0.000407725
-0.000395026
-0.000380994
-0.00036544
-0.000348144
-0.000328848
-0.000307253
-0.000283015
-0.000255729
-0.000551437
-0.000551825
-0.000552086
-0.000552333
-0.000552578
-0.000552818
-0.000553058
-0.000553299
-0.000553544
-0.000553795
-0.000554051
-0.000554314
-0.000554584
-0.00055486
-0.000555143
-0.000555433
-0.000555729
-0.000556032
-0.000556342
-0.000556658
-0.000556981
-0.000557311
-0.000557646
-0.000557988
-0.000558336
-0.00055869
-0.000559049
-0.000559414
-0.000559783
-0.000560158
-0.000560537
-0.000560921
-0.000561308
-0.000561699
-0.000562093
-0.000562489
-0.000562887
-0.000563287
-0.000563688
-0.000564089
-0.00056449
-0.000564891
-0.000565289
-0.000565686
-0.000566079
-0.000566469
-0.000566853
-0.000567232
-0.000567604
-0.000567969
-0.000568325
-0.00056867
-0.000569005
-0.000569327
-0.000569636
-0.00056993
-0.000570207
-0.000570466
-0.000570707
-0.000570926
-0.000571123
-0.000571295
-0.000571442
-0.000571561
-0.00057165
-0.000571707
-0.000571731
-0.000571719
-0.000571669
-0.000571578
-0.000571444
-0.000571265
-0.000571038
-0.00057076
-0.000570429
-0.000570042
-0.000569595
-0.000569087
-0.000568512
-0.000567868
-0.000567152
-0.000566359
-0.000565486
-0.000564528
-0.000563482
-0.000562342
-0.000561104
-0.000559762
-0.000558311
-0.000556744
-0.000555056
-0.000553238
-0.000551284
-0.000549183
-0.000546928
-0.000544507
-0.000541909
-0.000539119
-0.000536124
-0.000532904
-0.000529441
-0.000525713
-0.000521692
-0.000517348
-0.000512647
-0.000507547
-0.000502001
-0.000495953
-0.000489339
-0.00048208
-0.000474088
-0.000465256
-0.000455459
-0.00044455
-0.000432357
-0.000418676
-0.000403268
-0.000385849
-0.000366089
-0.000343598
-0.00056006
-0.000560448
-0.000560712
-0.000560963
-0.000561214
-0.000561462
-0.000561711
-0.000561963
-0.000562222
-0.000562488
-0.000562763
-0.000563046
-0.000563337
-0.000563638
-0.000563947
-0.000564266
-0.000564594
-0.00056493
-0.000565277
-0.000565632
-0.000565996
-0.000566369
-0.000566751
-0.000567143
-0.000567543
-0.000567951
-0.000568368
-0.000568794
-0.000569228
-0.000569669
-0.000570119
-0.000570576
-0.00057104
-0.000571511
-0.000571989
-0.000572472
-0.000572962
-0.000573457
-0.000573957
-0.000574461
-0.000574969
-0.000575481
-0.000575995
-0.000576512
-0.00057703
-0.000577549
-0.000578068
-0.000578586
-0.000579103
-0.000579617
-0.000580128
-0.000580635
-0.000581137
-0.000581632
-0.000582119
-0.000582599
-0.000583068
-0.000583527
-0.000583973
-0.000584406
-0.000584824
-0.000585226
-0.000585611
-0.000585976
-0.000586321
-0.000586643
-0.000586941
-0.000587213
-0.000587457
-0.000587673
-0.000587856
-0.000588007
-0.000588122
-0.0005882
-0.000588239
-0.000588236
-0.00058819
-0.000588097
-0.000587956
-0.000587764
-0.000587518
-0.000587216
-0.000586856
-0.000586434
-0.000585948
-0.000585394
-0.00058477
-0.000584072
-0.000583296
-0.000582439
-0.000581496
-0.000580464
-0.000579337
-0.000578109
-0.000576776
-0.00057533
-0.000573764
-0.000572069
-0.000570235
-0.000568251
-0.000566104
-0.000563777
-0.000561252
-0.000558509
-0.00055552
-0.000552256
-0.000548681
-0.000544751
-0.000540415
-0.000535612
-0.000530267
-0.000524293
-0.000517583
-0.000510011
-0.000501427
-0.000491649
-0.000480461
-0.000467605
-0.000452774
-0.000435601
-0.000568702
-0.000569091
-0.000569358
-0.000569614
-0.00056987
-0.000570126
-0.000570384
-0.000570648
-0.00057092
-0.000571202
-0.000571494
-0.000571797
-0.00057211
-0.000572435
-0.000572771
-0.000573118
-0.000573477
-0.000573848
-0.00057423
-0.000574623
-0.000575029
-0.000575446
-0.000575875
-0.000576315
-0.000576767
-0.000577231
-0.000577706
-0.000578192
-0.00057869
-0.000579199
-0.000579718
-0.000580249
-0.00058079
-0.000581342
-0.000581904
-0.000582475
-0.000583056
-0.000583646
-0.000584245
-0.000584853
-0.000585469
-0.000586092
-0.000586723
-0.00058736
-0.000588004
-0.000588653
-0.000589308
-0.000589966
-0.000590629
-0.000591294
-0.000591962
-0.000592631
-0.000593301
-0.000593971
-0.000594639
-0.000595306
-0.00059597
-0.000596629
-0.000597284
-0.000597933
-0.000598575
-0.000599209
-0.000599834
-0.000600448
-0.000601051
-0.000601641
-0.000602216
-0.000602777
-0.00060332
-0.000603845
-0.00060435
-0.000604835
-0.000605297
-0.000605736
-0.000606149
-0.000606536
-0.000606895
-0.000607224
-0.000607522
-0.000607788
-0.00060802
-0.000608217
-0.000608377
-0.000608499
-0.000608582
-0.000608624
-0.000608624
-0.000608579
-0.00060849
-0.000608355
-0.000608171
-0.000607938
-0.000607653
-0.000607315
-0.000606922
-0.00060647
-0.000605958
-0.000605381
-0.000604735
-0.000604015
-0.000603215
-0.000602327
-0.00060134
-0.000600242
-0.000599018
-0.00059765
-0.000596114
-0.000594381
-0.000592414
-0.00059017
-0.000587594
-0.000584619
-0.000581161
-0.000577118
-0.000572367
-0.000566756
-0.000560098
-0.000552169
-0.000542693
-0.00053134
-0.000577364
-0.000577754
-0.000578023
-0.000578283
-0.000578546
-0.000578809
-0.000579076
-0.000579352
-0.000579637
-0.000579934
-0.000580243
-0.000580566
-0.000580901
-0.000581249
-0.000581611
-0.000581987
-0.000582377
-0.000582781
-0.000583199
-0.000583631
-0.000584078
-0.000584538
-0.000585013
-0.000585503
-0.000586007
-0.000586525
-0.000587058
-0.000587605
-0.000588167
-0.000588742
-0.000589333
-0.000589937
-0.000590555
-0.000591187
-0.000591833
-0.000592493
-0.000593165
-0.000593851
-0.00059455
-0.000595261
-0.000595985
-0.000596721
-0.000597468
-0.000598227
-0.000598997
-0.000599778
-0.000600568
-0.000601368
-0.000602177
-0.000602995
-0.00060382
-0.000604653
-0.000605492
-0.000606338
-0.000607188
-0.000608044
-0.000608903
-0.000609766
-0.000610631
-0.000611498
-0.000612366
-0.000613235
-0.000614102
-0.000614968
-0.000615832
-0.000616692
-0.000617548
-0.000618399
-0.000619244
-0.000620083
-0.000620913
-0.000621735
-0.000622549
-0.000623352
-0.000624144
-0.000624925
-0.000625694
-0.00062645
-0.000627193
-0.000627923
-0.000628639
-0.00062934
-0.000630027
-0.0006307
-0.000631359
-0.000632004
-0.000632635
-0.000633253
-0.00063386
-0.000634455
-0.000635041
-0.000635618
-0.000636188
-0.000636752
-0.000637312
-0.00063787
-0.000638428
-0.000638988
-0.00063955
-0.000640118
-0.00064069
-0.000641268
-0.000641851
-0.000642435
-0.000643018
-0.000643594
-0.000644151
-0.000644678
-0.000645155
-0.000645557
-0.000645851
-0.000645994
-0.000645928
-0.00064558
-0.000644859
-0.000643647
-0.000641796
-0.000639122
-0.000635394
-0.000630325
-0.000586043
-0.000586434
-0.000586705
-0.00058697
-0.000587238
-0.000587509
-0.000587786
-0.000588072
-0.000588371
-0.000588683
-0.000589009
-0.00058935
-0.000589707
-0.000590079
-0.000590467
-0.000590871
-0.000591292
-0.000591729
-0.000592182
-0.000592653
-0.00059314
-0.000593644
-0.000594165
-0.000594703
-0.000595258
-0.000595831
-0.000596422
-0.000597029
-0.000597655
-0.000598297
-0.000598958
-0.000599635
-0.000600331
-0.000601043
-0.000601773
-0.000602521
-0.000603285
-0.000604067
-0.000604866
-0.000605681
-0.000606513
-0.000607361
-0.000608226
-0.000609107
-0.000610004
-0.000610916
-0.000611843
-0.000612785
-0.000613741
-0.000614712
-0.000615696
-0.000616693
-0.000617703
-0.000618725
-0.00061976
-0.000620805
-0.000621862
-0.000622929
-0.000624006
-0.000625093
-0.000626189
-0.000627293
-0.000628405
-0.000629525
-0.000630652
-0.000631785
-0.000632924
-0.000634068
-0.000635218
-0.000636373
-0.000637532
-0.000638695
-0.000639862
-0.000641033
-0.000642208
-0.000643387
-0.00064457
-0.000645758
-0.00064695
-0.000648147
-0.000649351
-0.000650562
-0.000651781
-0.00065301
-0.000654251
-0.000655504
-0.000656774
-0.000658062
-0.000659371
-0.000660705
-0.000662067
-0.000663462
-0.000664895
-0.00066637
-0.000667894
-0.000669473
-0.000671113
-0.000672822
-0.000674607
-0.000676477
-0.00067844
-0.000680504
-0.000682679
-0.000684972
-0.000687391
-0.000689944
-0.000692635
-0.000695469
-0.000698445
-0.000701559
-0.000704802
-0.000708155
-0.000711593
-0.000715075
-0.000718545
-0.000721927
-0.000725118
-0.000727984
-0.000730347
-0.000731979
-0.000594736
-0.000595129
-0.000595403
-0.000595672
-0.000595946
-0.000596224
-0.00059651
-0.000596808
-0.000597119
-0.000597446
-0.000597789
-0.000598149
-0.000598527
-0.000598922
-0.000599336
-0.000599768
-0.000600219
-0.000600689
-0.000601177
-0.000601685
-0.000602212
-0.000602759
-0.000603326
-0.000603912
-0.000604519
-0.000605146
-0.000605794
-0.000606462
-0.000607151
-0.00060786
-0.00060859
-0.000609341
-0.000610113
-0.000610906
-0.00061172
-0.000612556
-0.000613412
-0.000614289
-0.000615188
-0.000616107
-0.000617048
-0.000618009
-0.000618991
-0.000619995
-0.000621018
-0.000622062
-0.000623127
-0.000624211
-0.000625315
-0.000626439
-0.000627582
-0.000628745
-0.000629926
-0.000631126
-0.000632345
-0.000633582
-0.000634837
-0.00063611
-0.0006374
-0.000638708
-0.000640033
-0.000641375
-0.000642734
-0.000644109
-0.0006455
-0.000646908
-0.000648332
-0.000649773
-0.000651229
-0.000652702
-0.000654192
-0.000655699
-0.000657223
-0.000658765
-0.000660326
-0.000661905
-0.000663506
-0.000665127
-0.000666772
-0.000668441
-0.000670137
-0.000671861
-0.000673616
-0.000675405
-0.000677231
-0.000679098
-0.00068101
-0.000682971
-0.000684988
-0.000687065
-0.000689209
-0.000691427
-0.000693728
-0.000696121
-0.000698614
-0.000701219
-0.000703948
-0.000706814
-0.000709829
-0.000713011
-0.000716373
-0.000719935
-0.000723714
-0.00072773
-0.000732002
-0.000736553
-0.000741402
-0.000746572
-0.000752082
-0.000757951
-0.000764194
-0.000770823
-0.000777844
-0.000785253
-0.000793035
-0.000801161
-0.00080958
-0.000818215
-0.000826953
-0.000835636
-0.000603444
-0.000603838
-0.000604115
-0.000604388
-0.000604668
-0.000604954
-0.000605248
-0.000605557
-0.00060588
-0.000606221
-0.000606581
-0.00060696
-0.000607358
-0.000607776
-0.000608215
-0.000608675
-0.000609156
-0.000609658
-0.000610181
-0.000610726
-0.000611293
-0.000611882
-0.000612494
-0.000613129
-0.000613786
-0.000614467
-0.000615172
-0.000615899
-0.000616651
-0.000617427
-0.000618226
-0.000619051
-0.000619899
-0.000620772
-0.00062167
-0.000622593
-0.000623541
-0.000624514
-0.000625512
-0.000626535
-0.000627584
-0.000628658
-0.000629758
-0.000630884
-0.000632035
-0.000633211
-0.000634413
-0.00063564
-0.000636892
-0.00063817
-0.000639473
-0.000640802
-0.000642155
-0.000643534
-0.000644938
-0.000646367
-0.000647821
-0.000649301
-0.000650805
-0.000652335
-0.000653891
-0.000655472
-0.000657078
-0.00065871
-0.000660368
-0.000662052
-0.000663763
-0.0006655
-0.000667266
-0.000669059
-0.000670881
-0.000672733
-0.000674617
-0.000676532
-0.00067848
-0.000680463
-0.000682483
-0.000684541
-0.000686641
-0.000688784
-0.000690974
-0.000693214
-0.000695507
-0.000697859
-0.000700273
-0.000702756
-0.000705312
-0.00070795
-0.000710676
-0.000713498
-0.000716426
-0.00071947
-0.000722641
-0.000725952
-0.000729417
-0.000733051
-0.00073687
-0.000740893
-0.00074514
-0.000749634
-0.000754398
-0.000759459
-0.000764845
-0.000770586
-0.000776716
-0.000783269
-0.000790284
-0.000797799
-0.000805857
-0.000814498
-0.000823767
-0.000833704
-0.000844351
-0.000855744
-0.000867913
-0.00088088
-0.000894653
-0.00090922
-0.000924542
-0.000940546
-0.000612164
-0.000612559
-0.00061284
-0.000613117
-0.000613403
-0.000613695
-0.000613999
-0.000614317
-0.000614653
-0.000615008
-0.000615384
-0.00061578
-0.000616199
-0.00061664
-0.000617104
-0.00061759
-0.0006181
-0.000618634
-0.000619191
-0.000619773
-0.000620379
-0.000621011
-0.000621667
-0.000622349
-0.000623057
-0.000623791
-0.000624551
-0.000625339
-0.000626153
-0.000626994
-0.000627863
-0.00062876
-0.000629684
-0.000630637
-0.000631618
-0.000632629
-0.000633668
-0.000634736
-0.000635834
-0.000636961
-0.000638118
-0.000639305
-0.000640522
-0.00064177
-0.000643048
-0.000644357
-0.000645696
-0.000647066
-0.000648467
-0.000649899
-0.000651362
-0.000652856
-0.000654382
-0.00065594
-0.00065753
-0.000659152
-0.000660806
-0.000662493
-0.000664212
-0.000665965
-0.000667752
-0.000669572
-0.000671427
-0.000673317
-0.000675242
-0.000677204
-0.000679203
-0.000681239
-0.000683314
-0.000685429
-0.000687586
-0.000689785
-0.000692028
-0.000694318
-0.000696655
-0.000699043
-0.000701484
-0.000703981
-0.000706537
-0.000709155
-0.000711841
-0.000714597
-0.00071743
-0.000720346
-0.000723349
-0.000726448
-0.00072965
-0.000732964
-0.000736399
-0.000739967
-0.000743678
-0.000747547
-0.000751587
-0.000755815
-0.000760249
-0.000764907
-0.000769813
-0.00077499
-0.000780464
-0.000786264
-0.000792423
-0.000798975
-0.000805959
-0.000813417
-0.000821394
-0.00082994
-0.000839109
-0.000848961
-0.000859556
-0.000870961
-0.000883249
-0.000896493
-0.000910769
-0.000926158
-0.000942738
-0.000960586
-0.000979772
-0.00100036
-0.00102239
-0.00104589
-0.000620894
-0.000621291
-0.000621575
-0.000621857
-0.000622148
-0.000622447
-0.000622759
-0.000623087
-0.000623435
-0.000623804
-0.000624195
-0.00062461
-0.000625048
-0.000625511
-0.000625999
-0.000626512
-0.00062705
-0.000627615
-0.000628206
-0.000628824
-0.000629469
-0.000630141
-0.000630841
-0.00063157
-0.000632328
-0.000633114
-0.00063393
-0.000634776
-0.000635652
-0.000636559
-0.000637496
-0.000638465
-0.000639465
-0.000640497
-0.000641561
-0.000642658
-0.000643788
-0.000644951
-0.000646148
-0.000647378
-0.000648643
-0.000649943
-0.000651277
-0.000652647
-0.000654052
-0.000655493
-0.000656969
-0.000658482
-0.000660032
-0.000661618
-0.000663241
-0.000664902
-0.000666601
-0.000668338
-0.000670113
-0.000671928
-0.000673783
-0.000675677
-0.000677612
-0.000679589
-0.000681607
-0.000683668
-0.000685772
-0.00068792
-0.000690114
-0.000692354
-0.000694641
-0.000696977
-0.000699363
-0.0007018
-0.000704291
-0.000706838
-0.000709443
-0.000712107
-0.000714835
-0.000717628
-0.000720491
-0.000723427
-0.00072644
-0.000729534
-0.000732715
-0.000735989
-0.000739362
-0.00074284
-0.000746432
-0.000750147
-0.000753993
-0.000757982
-0.000762124
-0.000766434
-0.000770926
-0.000775615
-0.000780519
-0.000785659
-0.000791055
-0.000796731
-0.000802715
-0.000809035
-0.000815724
-0.000822818
-0.000830356
-0.000838383
-0.000846947
-0.000856099
-0.0008659
-0.000876413
-0.000887708
-0.000899864
-0.000912964
-0.000927099
-0.000942369
-0.000958881
-0.00097675
-0.000996099
-0.00101706
-0.00103976
-0.00106435
-0.00109096
-0.00111972
-0.00115078
-0.000629634
-0.000630033
-0.00063032
-0.000630606
-0.000630902
-0.000631208
-0.000631528
-0.000631866
-0.000632225
-0.000632607
-0.000633014
-0.000633445
-0.000633903
-0.000634387
-0.000634898
-0.000635437
-0.000636004
-0.000636599
-0.000637223
-0.000637876
-0.000638558
-0.000639271
-0.000640015
-0.000640789
-0.000641596
-0.000642434
-0.000643305
-0.000644208
-0.000645146
-0.000646117
-0.000647122
-0.000648162
-0.000649237
-0.000650347
-0.000651494
-0.000652677
-0.000653897
-0.000655155
-0.00065645
-0.000657783
-0.000659156
-0.000660567
-0.000662018
-0.00066351
-0.000665041
-0.000666614
-0.000668227
-0.000669883
-0.00067158
-0.000673321
-0.000675104
-0.000676931
-0.000678803
-0.000680719
-0.000682681
-0.000684689
-0.000686743
-0.000688846
-0.000690996
-0.000693196
-0.000695447
-0.000697748
-0.000700102
-0.000702509
-0.000704971
-0.00070749
-0.000710066
-0.000712701
-0.000715398
-0.000718158
-0.000720985
-0.00072388
-0.000726846
-0.000729886
-0.000733003
-0.000736202
-0.000739487
-0.000742861
-0.00074633
-0.0007499
-0.000753576
-0.000757366
-0.000761277
-0.000765317
-0.000769496
-0.000773823
-0.00077831
-0.00078297
-0.000787816
-0.000792864
-0.00079813
-0.000803633
-0.000809393
-0.000815435
-0.000821783
-0.000828465
-0.000835512
-0.00084296
-0.000850847
-0.000859214
-0.000868109
-0.000877585
-0.000887698
-0.000898513
-0.0009101
-0.000922538
-0.000935913
-0.000950322
-0.000965869
-0.000982671
-0.00100085
-0.00102056
-0.00104194
-0.00106516
-0.00109041
-0.00111788
-0.00114777
-0.00118032
-0.00121574
-0.00125428
-0.000638382
-0.000638783
-0.000639073
-0.000639363
-0.000639665
-0.000639977
-0.000640305
-0.000640652
-0.000641022
-0.000641417
-0.000641837
-0.000642286
-0.000642762
-0.000643267
-0.000643801
-0.000644364
-0.000644958
-0.000645583
-0.000646239
-0.000646926
-0.000647646
-0.000648398
-0.000649184
-0.000650004
-0.000650858
-0.000651747
-0.000652672
-0.000653633
-0.00065463
-0.000655665
-0.000656737
-0.000657847
-0.000658996
-0.000660184
-0.000661412
-0.000662681
-0.000663991
-0.000665342
-0.000666735
-0.000668171
-0.00066965
-0.000671173
-0.00067274
-0.000674352
-0.00067601
-0.000677714
-0.000679464
-0.000681261
-0.000683107
-0.000685001
-0.000686944
-0.000688937
-0.000690981
-0.000693076
-0.000695224
-0.000697425
-0.00069968
-0.00070199
-0.000704356
-0.000706779
-0.000709262
-0.000711804
-0.000714407
-0.000717073
-0.000719803
-0.0007226
-0.000725465
-0.0007284
-0.000731408
-0.000734491
-0.000737652
-0.000740895
-0.000744222
-0.000747637
-0.000751144
-0.000754747
-0.000758453
-0.000762264
-0.000766189
-0.000770232
-0.000774402
-0.000778706
-0.000783152
-0.000787751
-0.000792513
-0.000797449
-0.000802573
-0.000807899
-0.000813442
-0.000819219
-0.000825251
-0.000831558
-0.000838165
-0.000845096
-0.000852382
-0.000860053
-0.000868146
-0.000876701
-0.00088576
-0.000895374
-0.000905595
-0.000916484
-0.000928108
-0.00094054
-0.000953864
-0.000968171
-0.000983563
-0.00100015
-0.00101807
-0.00103745
-0.00105844
-0.00108123
-0.001106
-0.00113296
-0.00116235
-0.00119441
-0.00122944
-0.00126773
-0.00130962
-0.00135546
-0.000647136
-0.00064754
-0.000647833
-0.000648127
-0.000648434
-0.000648753
-0.000649088
-0.000649444
-0.000649824
-0.000650231
-0.000650665
-0.000651129
-0.000651623
-0.000652148
-0.000652704
-0.000653292
-0.000653912
-0.000654565
-0.000655252
-0.000655973
-0.000656729
-0.00065752
-0.000658347
-0.000659211
-0.000660112
-0.000661051
-0.000662028
-0.000663045
-0.000664102
-0.000665199
-0.000666337
-0.000667517
-0.000668739
-0.000670004
-0.000671313
-0.000672666
-0.000674064
-0.000675508
-0.000676998
-0.000678535
-0.00068012
-0.000681754
-0.000683437
-0.000685169
-0.000686952
-0.000688786
-0.000690673
-0.000692612
-0.000694604
-0.000696651
-0.000698753
-0.000700912
-0.000703128
-0.000705402
-0.000707735
-0.000710128
-0.000712583
-0.0007151
-0.000717681
-0.000720328
-0.000723042
-0.000725824
-0.000728676
-0.000731601
-0.000734599
-0.000737674
-0.000740827
-0.000744061
-0.000747379
-0.000750785
-0.00075428
-0.000757869
-0.000761556
-0.000765345
-0.00076924
-0.000773247
-0.000777372
-0.000781619
-0.000785996
-0.000790511
-0.000795171
-0.000799986
-0.000804964
-0.000810117
-0.000815457
-0.000820997
-0.000826751
-0.000832736
-0.000838967
-0.000845466
-0.000852254
-0.000859353
-0.000866791
-0.000874597
-0.000882802
-0.000891443
-0.000900559
-0.000910194
-0.000920397
-0.000931223
-0.000942733
-0.000954993
-0.000968078
-0.000982073
-0.000997071
-0.00101318
-0.0010305
-0.00104918
-0.00106936
-0.0010912
-0.00111488
-0.0011406
-0.0011686
-0.00119911
-0.00123243
-0.00126886
-0.00130877
-0.00135252
-0.00140057
-0.00145337
-0.000655895
-0.000656302
-0.000656599
-0.000656897
-0.000657209
-0.000657533
-0.000657875
-0.00065824
-0.00065863
-0.000659048
-0.000659496
-0.000659975
-0.000660486
-0.000661029
-0.000661606
-0.000662217
-0.000662863
-0.000663544
-0.000664261
-0.000665014
-0.000665805
-0.000666633
-0.000667501
-0.000668408
-0.000669354
-0.000670342
-0.000671371
-0.000672443
-0.000673558
-0.000674716
-0.000675919
-0.000677167
-0.000678461
-0.000679802
-0.00068119
-0.000682627
-0.000684113
-0.000685648
-0.000687234
-0.000688872
-0.000690562
-0.000692305
-0.000694103
-0.000695954
-0.000697862
-0.000699826
-0.000701847
-0.000703927
-0.000706066
-0.000708265
-0.000710526
-0.000712849
-0.000715236
-0.000717688
-0.000720206
-0.000722791
-0.000725444
-0.000728168
-0.000730964
-0.000733834
-0.000736778
-0.000739799
-0.0007429
-0.000746082
-0.000749347
-0.000752699
-0.00075614
-0.000759672
-0.0007633
-0.000767026
-0.000770854
-0.000774789
-0.000778835
-0.000782995
-0.000787277
-0.000791686
-0.000796226
-0.000800907
-0.000805734
-0.000810717
-0.000815864
-0.000821185
-0.00082669
-0.000832393
-0.000838305
-0.000844442
-0.000850818
-0.000857452
-0.000864363
-0.000871571
-0.000879101
-0.000886978
-0.000895232
-0.000903893
-0.000912997
-0.000922583
-0.000932695
-0.00094338
-0.000954693
-0.000966692
-0.000979445
-0.000993025
-0.00100752
-0.00102301
-0.00103961
-0.00105742
-0.00107659
-0.00109726
-0.00111958
-0.00114374
-0.00116994
-0.00119842
-0.00122943
-0.00126326
-0.00130025
-0.00134075
-0.00138519
-0.00143403
-0.0014878
-0.00154708
-0.000664658
-0.000665069
-0.000665369
-0.000665671
-0.000665988
-0.000666318
-0.000666667
-0.000667039
-0.000667438
-0.000667867
-0.000668327
-0.00066882
-0.000669347
-0.000669909
-0.000670506
-0.000671139
-0.000671809
-0.000672517
-0.000673262
-0.000674047
-0.000674871
-0.000675736
-0.000676643
-0.000677591
-0.000678582
-0.000679617
-0.000680697
-0.000681822
-0.000682994
-0.000684213
-0.000685479
-0.000686794
-0.000688159
-0.000689574
-0.000691041
-0.00069256
-0.000694132
-0.000695758
-0.000697439
-0.000699176
-0.00070097
-0.000702822
-0.000704732
-0.000706702
-0.000708733
-0.000710826
-0.000712981
-0.000715201
-0.000717485
-0.000719836
-0.000722254
-0.000724741
-0.000727298
-0.000729927
-0.000732628
-0.000735404
-0.000738256
-0.000741186
-0.000744195
-0.000747286
-0.00075046
-0.00075372
-0.000757068
-0.000760506
-0.000764038
-0.000767665
-0.000771392
-0.000775221
-0.000779157
-0.000783202
-0.000787362
-0.00079164
-0.000796042
-0.000800573
-0.000805239
-0.000810045
-0.000815
-0.00082011
-0.000825384
-0.000830831
-0.00083646
-0.000842282
-0.000848309
-0.000854554
-0.000861031
-0.000867756
-0.000874746
-0.000882019
-0.000889597
-0.000897502
-0.00090576
-0.000914398
-0.000923448
-0.000932944
-0.000942923
-0.000953428
-0.000964504
-0.000976205
-0.000988588
-0.00100172
-0.00101566
-0.00103051
-0.00104634
-0.00106325
-0.00108137
-0.0011008
-0.0011217
-0.00114422
-0.00116854
-0.00119486
-0.00122341
-0.00125443
-0.00128821
-0.00132509
-0.00136543
-0.00140964
-0.0014582
-0.00151165
-0.00157061
-0.00163575
-0.000673425
-0.000673839
-0.000674143
-0.000674449
-0.00067477
-0.000675106
-0.00067546
-0.00067584
-0.000676247
-0.000676686
-0.000677158
-0.000677664
-0.000678207
-0.000678785
-0.000679401
-0.000680056
-0.000680749
-0.000681481
-0.000682254
-0.000683069
-0.000683926
-0.000684826
-0.00068577
-0.000686758
-0.000687793
-0.000688874
-0.000690003
-0.00069118
-0.000692407
-0.000693685
-0.000695013
-0.000696394
-0.000697828
-0.000699317
-0.00070086
-0.00070246
-0.000704117
-0.000705832
-0.000707607
-0.000709442
-0.000711339
-0.000713298
-0.00071532
-0.000717407
-0.00071956
-0.00072178
-0.000724069
-0.000726427
-0.000728855
-0.000731356
-0.000733931
-0.00073658
-0.000739306
-0.000742111
-0.000744995
-0.00074796
-0.000751009
-0.000754143
-0.000757365
-0.000760676
-0.000764078
-0.000767575
-0.000771169
-0.000774862
-0.000778659
-0.000782561
-0.000786572
-0.000790696
-0.000794938
-0.0007993
-0.000803789
-0.000808408
-0.000813164
-0.000818062
-0.000823109
-0.000828311
-0.000833676
-0.000839212
-0.000844927
-0.000850833
-0.000856938
-0.000863256
-0.000869798
-0.000876578
-0.000883611
-0.000890915
-0.000898508
-0.000906409
-0.000914641
-0.000923228
-0.000932198
-0.000941579
-0.000951404
-0.000961711
-0.000972539
-0.000983932
-0.00099594
-0.00100862
-0.00102203
-0.00103624
-0.00105132
-0.00106737
-0.00108446
-0.00110272
-0.00112226
-0.00114321
-0.00116572
-0.00118996
-0.00121613
-0.00124443
-0.0012751
-0.00130843
-0.00134472
-0.00138432
-0.00142765
-0.00147515
-0.00152736
-0.00158487
-0.00164837
-0.00171864
-0.000682193
-0.000682612
-0.000682919
-0.000683229
-0.000683555
-0.000683895
-0.000684256
-0.000684642
-0.000685057
-0.000685505
-0.000685988
-0.000686506
-0.000687062
-0.000687657
-0.000688291
-0.000688965
-0.000689679
-0.000690436
-0.000691235
-0.000692078
-0.000692966
-0.0006939
-0.00069488
-0.000695907
-0.000696983
-0.000698109
-0.000699285
-0.000700513
-0.000701794
-0.000703129
-0.000704518
-0.000705963
-0.000707465
-0.000709025
-0.000710644
-0.000712323
-0.000714063
-0.000715866
-0.000717733
-0.000719665
-0.000721662
-0.000723727
-0.00072586
-0.000728063
-0.000730337
-0.000732683
-0.000735103
-0.000737598
-0.00074017
-0.00074282
-0.000745549
-0.00074836
-0.000751253
-0.000754232
-0.000757297
-0.000760451
-0.000763695
-0.000767032
-0.000770464
-0.000773994
-0.000777624
-0.000781356
-0.000785194
-0.000789141
-0.000793199
-0.000797374
-0.000801668
-0.000806085
-0.00081063
-0.000815307
-0.000820122
-0.00082508
-0.000830187
-0.000835449
-0.000840873
-0.000846466
-0.000852237
-0.000858194
-0.000864346
-0.000870705
-0.000877281
-0.000884087
-0.000891136
-0.000898443
-0.000906024
-0.000913897
-0.00092208
-0.000930597
-0.000939468
-0.000948722
-0.000958385
-0.000968488
-0.000979067
-0.00099016
-0.00100181
-0.00101406
-0.00102696
-0.00104058
-0.00105497
-0.0010702
-0.00108637
-0.00110354
-0.00112183
-0.00114135
-0.00116221
-0.00118456
-0.00120856
-0.00123437
-0.00126221
-0.00129229
-0.00132488
-0.00136025
-0.00139875
-0.00144074
-0.00148666
-0.00153699
-0.00159231
-0.00165325
-0.00172056
-0.00179511
-0.000690963
-0.000691386
-0.000691697
-0.000692012
-0.000692342
-0.000692687
-0.000693052
-0.000693444
-0.000693866
-0.000694322
-0.000694814
-0.000695344
-0.000695913
-0.000696522
-0.000697172
-0.000697865
-0.0006986
-0.000699379
-0.000700203
-0.000701073
-0.00070199
-0.000702955
-0.00070397
-0.000705034
-0.00070615
-0.000707319
-0.000708541
-0.000709818
-0.000711151
-0.000712542
-0.00071399
-0.000715497
-0.000717065
-0.000718695
-0.000720387
-0.000722144
-0.000723966
-0.000725856
-0.000727813
-0.000729839
-0.000731936
-0.000734105
-0.000736347
-0.000738664
-0.000741057
-0.000743528
-0.000746078
-0.000748709
-0.000751422
-0.000754219
-0.000757102
-0.000760072
-0.000763132
-0.000766283
-0.000769527
-0.000772867
-0.000776306
-0.000779844
-0.000783485
-0.000787231
-0.000791086
-0.000795052
-0.000799132
-0.00080333
-0.000807649
-0.000812094
-0.000816668
-0.000821375
-0.000826221
-0.000831211
-0.000836349
-0.000841642
-0.000847096
-0.000852718
-0.000858515
-0.000864496
-0.000870667
-0.00087704
-0.000883624
-0.00089043
-0.000897469
-0.000904756
-0.000912304
-0.000920128
-0.000928247
-0.000936677
-0.00094544
-0.000954557
-0.000964053
-0.000973956
-0.000984293
-0.000995098
-0.00100641
-0.00101826
-0.0010307
-0.00104377
-0.00105753
-0.00107204
-0.00108736
-0.00110357
-0.00112075
-0.00113899
-0.00115839
-0.00117907
-0.00120116
-0.00122479
-0.00125013
-0.00127737
-0.0013067
-0.00133836
-0.00137262
-0.00140977
-0.00145016
-0.00149418
-0.00154226
-0.00159494
-0.00165278
-0.00171648
-0.00178682
-0.00186472
-0.000699734
-0.000700162
-0.000700478
-0.000700796
-0.00070113
-0.000701479
-0.000701849
-0.000702245
-0.000702674
-0.000703137
-0.000703638
-0.000704177
-0.000704758
-0.00070538
-0.000706045
-0.000706754
-0.000707508
-0.000708308
-0.000709155
-0.00071005
-0.000710995
-0.00071199
-0.000713038
-0.000714138
-0.000715292
-0.000716501
-0.000717768
-0.000719092
-0.000720475
-0.000721919
-0.000723424
-0.000724992
-0.000726624
-0.000728322
-0.000730086
-0.000731919
-0.000733822
-0.000735795
-0.000737841
-0.00073996
-0.000742155
-0.000744426
-0.000746775
-0.000749205
-0.000751715
-0.000754309
-0.000756987
-0.000759752
-0.000762604
-0.000765547
-0.000768581
-0.000771709
-0.000774933
-0.000778255
-0.000781677
-0.000785202
-0.000788832
-0.000792569
-0.000796417
-0.000800378
-0.000804456
-0.000808653
-0.000812973
-0.00081742
-0.000821997
-0.000826709
-0.00083156
-0.000836556
-0.0008417
-0.000846998
-0.000852456
-0.000858081
-0.000863878
-0.000869856
-0.000876022
-0.000882384
-0.000888952
-0.000895734
-0.000902743
-0.000909989
-0.000917485
-0.000925245
-0.000933282
-0.000941615
-0.000950259
-0.000959235
-0.000968564
-0.000978268
-0.000988372
-0.000998905
-0.0010099
-0.00102138
-0.00103339
-0.00104598
-0.00105917
-0.00107303
-0.00108761
-0.00110297
-0.00111918
-0.0011363
-0.00115443
-0.00117367
-0.0011941
-0.00121585
-0.00123905
-0.00126384
-0.00129039
-0.00131889
-0.00134953
-0.00138257
-0.00141826
-0.00145691
-0.00149887
-0.00154453
-0.00159435
-0.00164884
-0.00170862
-0.00177437
-0.00184691
-0.00192718
-0.000708505
-0.00070894
-0.000709259
-0.000709581
-0.000709919
-0.000710271
-0.000710645
-0.000711046
-0.000711479
-0.000711948
-0.000712456
-0.000713005
-0.000713595
-0.000714229
-0.000714907
-0.000715632
-0.000716403
-0.000717222
-0.00071809
-0.000719009
-0.000719979
-0.000721003
-0.000722081
-0.000723214
-0.000724405
-0.000725653
-0.000726962
-0.000728331
-0.000729762
-0.000731258
-0.000732818
-0.000734444
-0.000736139
-0.000737902
-0.000739737
-0.000741644
-0.000743624
-0.00074568
-0.000747812
-0.000750022
-0.000752313
-0.000754684
-0.000757139
-0.000759679
-0.000762305
-0.00076502
-0.000767824
-0.000770721
-0.000773711
-0.000776797
-0.000779981
-0.000783264
-0.000786651
-0.000790141
-0.000793739
-0.000797446
-0.000801266
-0.0008052
-0.000809253
-0.000813426
-0.000817724
-0.00082215
-0.000826708
-0.000831401
-0.000836233
-0.00084121
-0.000846335
-0.000851614
-0.000857053
-0.000862656
-0.000868431
-0.000874383
-0.00088052
-0.000886849
-0.000893378
-0.000900117
-0.000907075
-0.000914261
-0.000921688
-0.000929367
-0.000937311
-0.000945535
-0.000954053
-0.000962883
-0.000972042
-0.000981552
-0.000991432
-0.00100171
-0.0010124
-0.00102355
-0.00103517
-0.00104731
-0.00106
-0.00107329
-0.00108721
-0.00110182
-0.00111718
-0.00113334
-0.00115038
-0.00116837
-0.00118739
-0.00120754
-0.00122892
-0.00125165
-0.00127585
-0.00130169
-0.00132931
-0.0013589
-0.00139068
-0.00142488
-0.00146176
-0.00150163
-0.00154483
-0.00159176
-0.00164287
-0.00169868
-0.00175979
-0.00182689
-0.00190078
-0.00198242
-0.000717277
-0.000717718
-0.000718041
-0.000718367
-0.000718708
-0.000719064
-0.00071944
-0.000719845
-0.000720282
-0.000720756
-0.00072127
-0.000721825
-0.000722424
-0.000723068
-0.000723758
-0.000724496
-0.000725282
-0.000726118
-0.000727006
-0.000727946
-0.000728941
-0.00072999
-0.000731097
-0.000732262
-0.000733486
-0.000734772
-0.00073612
-0.000737532
-0.000739009
-0.000740554
-0.000742167
-0.00074385
-0.000745604
-0.000747432
-0.000749334
-0.000751313
-0.000753369
-0.000755505
-0.000757721
-0.000760021
-0.000762405
-0.000764875
-0.000767433
-0.000770081
-0.000772821
-0.000775654
-0.000778582
-0.000781609
-0.000784734
-0.000787962
-0.000791293
-0.00079473
-0.000798276
-0.000801933
-0.000805704
-0.000809592
-0.000813598
-0.000817727
-0.000821982
-0.000826365
-0.000830881
-0.000835533
-0.000840325
-0.000845261
-0.000850346
-0.000855584
-0.00086098
-0.000866541
-0.00087227
-0.000878174
-0.000884261
-0.000890536
-0.000897007
-0.000903682
-0.00091057
-0.00091768
-0.000925021
-0.000932605
-0.000940443
-0.000948547
-0.000956931
-0.00096561
-0.000974598
-0.000983915
-0.000993578
-0.00100361
-0.00101402
-0.00102486
-0.00103613
-0.00104786
-0.0010601
-0.00107287
-0.00108622
-0.00110018
-0.00111479
-0.00113012
-0.00114622
-0.00116314
-0.00118096
-0.00119975
-0.00121959
-0.00124058
-0.00126283
-0.00128644
-0.00131156
-0.00133831
-0.00136686
-0.00139741
-0.00143014
-0.00146529
-0.00150313
-0.00154395
-0.00158808
-0.00163591
-0.00168789
-0.00174451
-0.00180636
-0.00187411
-0.00194855
-0.00203058
-0.000726049
-0.000726497
-0.000726825
-0.000727155
-0.000727498
-0.000727856
-0.000728235
-0.000728642
-0.000729082
-0.000729559
-0.000730077
-0.000730638
-0.000731244
-0.000731896
-0.000732596
-0.000733346
-0.000734145
-0.000734997
-0.000735902
-0.000736861
-0.000737877
-0.000738951
-0.000740084
-0.000741278
-0.000742534
-0.000743854
-0.000745239
-0.000746692
-0.000748213
-0.000749805
-0.000751468
-0.000753205
-0.000755018
-0.000756907
-0.000758874
-0.000760922
-0.000763052
-0.000765265
-0.000767564
-0.00076995
-0.000772426
-0.000774992
-0.000777651
-0.000780405
-0.000783255
-0.000786205
-0.000789256
-0.000792409
-0.000795668
-0.000799034
-0.000802511
-0.000806099
-0.000809803
-0.000813624
-0.000817566
-0.00082163
-0.000825822
-0.000830143
-0.000834597
-0.000839187
-0.000843918
-0.000848793
-0.000853816
-0.000858992
-0.000864326
-0.000869822
-0.000875485
-0.000881322
-0.000887338
-0.00089354
-0.000899934
-0.000906527
-0.000913328
-0.000920344
-0.000927584
-0.000935059
-0.000942777
-0.000950751
-0.000958993
-0.000967514
-0.000976329
-0.000985453
-0.000994902
-0.00100469
-0.00101485
-0.00102538
-0.00103632
-0.00104769
-0.00105952
-0.00107183
-0.00108466
-0.00109804
-0.00111201
-0.00112662
-0.0011419
-0.0011579
-0.0011747
-0.00119233
-0.00121088
-0.00123042
-0.00125103
-0.0012728
-0.00129583
-0.00132024
-0.00134615
-0.00137371
-0.00140307
-0.00143441
-0.00146792
-0.00150384
-0.00154241
-0.00158391
-0.00162868
-0.00167707
-0.00172951
-0.00178647
-0.00184851
-0.00191627
-0.00199048
-0.00207201
-0.000734821
-0.000735277
-0.00073561
-0.000735943
-0.000736289
-0.000736649
-0.000737029
-0.000737437
-0.000737878
-0.000738357
-0.000738878
-0.000739443
-0.000740054
-0.000740713
-0.000741421
-0.00074218
-0.000742991
-0.000743855
-0.000744775
-0.000745752
-0.000746787
-0.000747882
-0.000749039
-0.000750259
-0.000751545
-0.000752897
-0.000754317
-0.000755808
-0.00075737
-0.000759006
-0.000760718
-0.000762506
-0.000764374
-0.000766322
-0.000768352
-0.000770467
-0.000772668
-0.000774956
-0.000777335
-0.000779806
-0.00078237
-0.00078503
-0.000787787
-0.000790645
-0.000793604
-0.000796667
-0.000799837
-0.000803116
-0.000806505
-0.000810008
-0.000813627
-0.000817364
-0.000821223
-0.000825205
-0.000829315
-0.000833554
-0.000837928
-0.000842437
-0.000847088
-0.000851882
-0.000856824
-0.000861919
-0.000867171
-0.000872583
-0.000878162
-0.000883912
-0.000889839
-0.000895949
-0.000902247
-0.000908741
-0.000915438
-0.000922344
-0.000929469
-0.00093682
-0.000944407
-0.00095224
-0.000960329
-0.000968686
-0.000977323
-0.000986253
-0.00099549
-0.00100505
-0.00101495
-0.0010252
-0.00103584
-0.00104687
-0.00105831
-0.00107021
-0.00108257
-0.00109544
-0.00110884
-0.0011228
-0.00113738
-0.00115259
-0.00116851
-0.00118516
-0.00120261
-0.00122092
-0.00124015
-0.00126038
-0.00128169
-0.00130417
-0.00132791
-0.00135304
-0.00137966
-0.00140791
-0.00143795
-0.00146995
-0.00150409
-0.00154058
-0.00157968
-0.00162163
-0.00166676
-0.00171539
-0.00176793
-0.00182481
-0.00188655
-0.00195373
-0.00202704
-0.00210725
-0.000743594
-0.000744059
-0.000744397
-0.000744733
-0.000745082
-0.000745442
-0.000745822
-0.00074623
-0.000746671
-0.000747151
-0.000747673
-0.00074824
-0.000748854
-0.000749518
-0.000750231
-0.000750997
-0.000751817
-0.000752692
-0.000753625
-0.000754616
-0.000755668
-0.000756782
-0.00075796
-0.000759205
-0.000760517
-0.000761898
-0.000763351
-0.000764876
-0.000766477
-0.000768155
-0.000769912
-0.00077175
-0.000773669
-0.000775674
-0.000777764
-0.000779943
-0.000782212
-0.000784574
-0.000787029
-0.000789582
-0.000792232
-0.000794983
-0.000797836
-0.000800795
-0.00080386
-0.000807035
-0.000810322
-0.000813722
-0.00081724
-0.000820876
-0.000824634
-0.000828517
-0.000832528
-0.000836669
-0.000840944
-0.000845355
-0.000849907
-0.000854603
-0.000859447
-0.000864442
-0.000869593
-0.000874904
-0.00088038
-0.000886025
-0.000891845
-0.000897845
-0.000904031
-0.000910409
-0.000916986
-0.000923767
-0.000930761
-0.000937976
-0.000945419
-0.000953099
-0.000961027
-0.000969211
-0.000977664
-0.000986396
-0.000995421
-0.00100475
-0.0010144
-0.00102439
-0.00103472
-0.00104543
-0.00105653
-0.00106804
-0.00107998
-0.00109238
-0.00110527
-0.00111867
-0.00113262
-0.00114715
-0.00116229
-0.0011781
-0.00119461
-0.00121188
-0.00122995
-0.00124889
-0.00126876
-0.00128964
-0.00131159
-0.00133471
-0.0013591
-0.00138485
-0.00141209
-0.00144094
-0.00147155
-0.00150408
-0.0015387
-0.00157562
-0.00161505
-0.00165725
-0.00170249
-0.00175109
-0.0018034
-0.00185983
-0.00192084
-0.00198696
-0.00205877
-0.00213698
-0.000752369
-0.000752843
-0.000753186
-0.000753526
-0.000753876
-0.000754237
-0.000754616
-0.000755022
-0.000755462
-0.000755941
-0.000756462
-0.000757029
-0.000757644
-0.000758309
-0.000759027
-0.000759797
-0.000760624
-0.000761507
-0.000762449
-0.000763452
-0.000764518
-0.000765648
-0.000766845
-0.000768111
-0.000769446
-0.000770854
-0.000772336
-0.000773895
-0.000775531
-0.000777248
-0.000779047
-0.000780931
-0.0007829
-0.000784958
-0.000787106
-0.000789346
-0.000791681
-0.000794112
-0.000796642
-0.000799273
-0.000802007
-0.000804846
-0.000807793
-0.000810849
-0.000814018
-0.000817301
-0.000820702
-0.000824222
-0.000827864
-0.000831631
-0.000835527
-0.000839552
-0.000843712
-0.000848008
-0.000852445
-0.000857026
-0.000861753
-0.000866632
-0.000871665
-0.000876857
-0.000882213
-0.000887737
-0.000893433
-0.000899308
-0.000905365
-0.000911611
-0.000918052
-0.000924693
-0.000931543
-0.000938607
-0.000945893
-0.00095341
-0.000961166
-0.000969169
-0.00097743
-0.00098596
-0.000994769
-0.00100387
-0.00101327
-0.00102299
-0.00103305
-0.00104345
-0.00105421
-0.00106536
-0.00107691
-0.00108889
-0.00110131
-0.0011142
-0.00112759
-0.00114151
-0.00115599
-0.00117105
-0.00118675
-0.00120312
-0.00122021
-0.00123805
-0.00125671
-0.00127624
-0.00129671
-0.00131818
-0.00134073
-0.00136444
-0.0013894
-0.00141571
-0.00144349
-0.00147285
-0.00150393
-0.00153688
-0.00157185
-0.00160905
-0.00164866
-0.00169092
-0.00173607
-0.00178441
-0.00183624
-0.00189192
-0.00195185
-0.0020165
-0.00208637
-0.00216206
-0.000761147
-0.000761631
-0.000761979
-0.000762322
-0.000762673
-0.000763033
-0.00076341
-0.000763814
-0.00076425
-0.000764726
-0.000765244
-0.000765809
-0.000766423
-0.000767088
-0.000767807
-0.00076858
-0.000769409
-0.000770298
-0.000771247
-0.000772259
-0.000773336
-0.00077448
-0.000775692
-0.000776975
-0.000778332
-0.000779763
-0.000781272
-0.00078286
-0.000784529
-0.000786282
-0.00078812
-0.000790046
-0.000792062
-0.00079417
-0.000796373
-0.000798671
-0.000801069
-0.000803567
-0.000806168
-0.000808875
-0.00081169
-0.000814614
-0.000817651
-0.000820802
-0.000824071
-0.00082746
-0.000830971
-0.000834608
-0.000838372
-0.000842267
-0.000846296
-0.000850462
-0.000854767
-0.000859216
-0.000863811
-0.000868557
-0.000873457
-0.000878514
-0.000883734
-0.00088912
-0.000894677
-0.000900409
-0.000906322
-0.000912421
-0.000918711
-0.000925199
-0.00093189
-0.00093879
-0.000945908
-0.000953249
-0.000960822
-0.000968635
-0.000976698
-0.000985018
-0.000993606
-0.00100247
-0.00101163
-0.00102109
-0.00103086
-0.00104097
-0.00105141
-0.00106222
-0.0010734
-0.00108498
-0.00109697
-0.0011094
-0.00112228
-0.00113565
-0.00114953
-0.00116395
-0.00117893
-0.00119452
-0.00121075
-0.00122765
-0.00124528
-0.00126368
-0.00128289
-0.00130298
-0.001324
-0.00134603
-0.00136912
-0.00139337
-0.00141885
-0.00144566
-0.0014739
-0.00150369
-0.00153516
-0.00156843
-0.00160366
-0.00164101
-0.00168067
-0.00172284
-0.00176775
-0.00181563
-0.00186678
-0.00192148
-0.00198009
-0.00204298
-0.00211059
-0.00218339
-0.000769928
-0.000770424
-0.000770778
-0.000771123
-0.000771475
-0.000771833
-0.000772207
-0.000772606
-0.000773037
-0.000773508
-0.000774021
-0.000774582
-0.000775192
-0.000775854
-0.000776571
-0.000777343
-0.000778174
-0.000779064
-0.000780018
-0.000781036
-0.00078212
-0.000783274
-0.000784499
-0.000785797
-0.00078717
-0.000788622
-0.000790154
-0.000791768
-0.000793467
-0.000795252
-0.000797126
-0.000799092
-0.000801152
-0.000803307
-0.000805561
-0.000807914
-0.000810371
-0.000812933
-0.000815603
-0.000818382
-0.000821274
-0.000824281
-0.000827405
-0.000830648
-0.000834014
-0.000837506
-0.000841125
-0.000844874
-0.000848758
-0.000852777
-0.000856936
-0.000861238
-0.000865686
-0.000870284
-0.000875034
-0.000879942
-0.00088501
-0.000890243
-0.000895645
-0.000901221
-0.000906975
-0.000912912
-0.000919038
-0.000925357
-0.000931876
-0.0009386
-0.000945536
-0.00095269
-0.00096007
-0.000967683
-0.000975538
-0.000983641
-0.000992004
-0.00100063
-0.00100954
-0.00101874
-0.00102824
-0.00103805
-0.00104819
-0.00105866
-0.00106949
-0.00108069
-0.00109228
-0.00110428
-0.0011167
-0.00112956
-0.0011429
-0.00115673
-0.00117108
-0.00118597
-0.00120145
-0.00121754
-0.00123427
-0.00125169
-0.00126984
-0.00128876
-0.00130849
-0.00132911
-0.00135065
-0.00137319
-0.00139679
-0.00142152
-0.00144747
-0.00147473
-0.00150338
-0.00153354
-0.00156531
-0.00159883
-0.00163422
-0.00167164
-0.00171125
-0.00175323
-0.00179777
-0.00184507
-0.00189539
-0.00194896
-0.00200608
-0.00206705
-0.00213221
-0.00220193
-0.000778715
-0.000779223
-0.000779583
-0.000779931
-0.000780283
-0.000780638
-0.000781007
-0.0007814
-0.000781824
-0.000782287
-0.000782794
-0.000783347
-0.000783951
-0.000784607
-0.000785319
-0.000786088
-0.000786916
-0.000787806
-0.00078876
-0.00078978
-0.000790869
-0.000792029
-0.000793263
-0.000794572
-0.00079596
-0.000797429
-0.00079898
-0.000800617
-0.000802341
-0.000804156
-0.000806063
-0.000808065
-0.000810165
-0.000812364
-0.000814665
-0.000817071
-0.000819584
-0.000822206
-0.000824941
-0.00082779
-0.000830756
-0.000833841
-0.000837049
-0.000840381
-0.000843841
-0.000847432
-0.000851155
-0.000855015
-0.000859013
-0.000863154
-0.00086744
-0.000871875
-0.000876462
-0.000881205
-0.000886107
-0.000891173
-0.000896406
-0.000901811
-0.000907391
-0.000913153
-0.0009191
-0.000925237
-0.000931571
-0.000938105
-0.000944848
-0.000951804
-0.00095898
-0.000966383
-0.00097402
-0.000981899
-0.000990029
-0.000998417
-0.00100707
-0.00101601
-0.00102523
-0.00103475
-0.00104458
-0.00105473
-0.00106522
-0.00107606
-0.00108727
-0.00109886
-0.00111084
-0.00112324
-0.00113608
-0.00114937
-0.00116314
-0.00117742
-0.00119222
-0.00120758
-0.00122353
-0.0012401
-0.00125732
-0.00127523
-0.00129387
-0.00131329
-0.00133352
-0.00135463
-0.00137666
-0.00139968
-0.00142375
-0.00144893
-0.00147531
-0.00150296
-0.00153198
-0.00156245
-0.00159448
-0.00162818
-0.00166368
-0.0017011
-0.00174059
-0.0017823
-0.00182639
-0.00187304
-0.00192245
-0.00197482
-0.00203037
-0.00208935
-0.00215202
-0.00221865
-0.00078751
-0.000788031
-0.000788397
-0.000788748
-0.000789098
-0.00078945
-0.000789812
-0.000790197
-0.000790612
-0.000791066
-0.000791562
-0.000792106
-0.0007927
-0.000793348
-0.000794051
-0.000794813
-0.000795636
-0.000796521
-0.000797473
-0.000798492
-0.000799582
-0.000800744
-0.000801983
-0.0008033
-0.000804698
-0.00080618
-0.000807747
-0.000809403
-0.000811149
-0.00081299
-0.000814926
-0.000816961
-0.000819097
-0.000821337
-0.000823682
-0.000826136
-0.000828702
-0.000831381
-0.000834177
-0.000837092
-0.000840129
-0.00084329
-0.000846578
-0.000849996
-0.000853547
-0.000857232
-0.000861057
-0.000865023
-0.000869133
-0.000873392
-0.000877801
-0.000882365
-0.000887087
-0.000891972
-0.000897022
-0.000902242
-0.000907636
-0.000913208
-0.000918963
-0.000924906
-0.000931042
-0.000937375
-0.000943912
-0.000950658
-0.000957619
-0.000964802
-0.000972213
-0.000979859
-0.000987748
-0.000995888
-0.00100429
-0.00101295
-0.0010219
-0.00103113
-0.00104065
-0.00105049
-0.00106065
-0.00107113
-0.00108197
-0.00109316
-0.00110473
-0.0011167
-0.00112906
-0.00114186
-0.0011551
-0.00116881
-0.001183
-0.00119771
-0.00121296
-0.00122877
-0.00124517
-0.0012622
-0.00127989
-0.00129827
-0.00131739
-0.00133728
-0.00135798
-0.00137956
-0.00140206
-0.00142553
-0.00145003
-0.00147564
-0.00150241
-0.00153042
-0.00155976
-0.00159051
-0.00162275
-0.0016566
-0.00169216
-0.00172954
-0.00176887
-0.00181027
-0.00185388
-0.00189985
-0.00194833
-0.00199949
-0.0020535
-0.00211054
-0.00217079
-0.00223445
-0.000796314
-0.00079685
-0.000797222
-0.000797575
-0.000797925
-0.000798271
-0.000798625
-0.000799
-0.000799404
-0.000799845
-0.000800328
-0.000800859
-0.000801441
-0.000802076
-0.000802768
-0.00080352
-0.000804333
-0.00080521
-0.000806155
-0.000807169
-0.000808256
-0.000809418
-0.000810658
-0.000811978
-0.000813383
-0.000814873
-0.000816453
-0.000818123
-0.000819888
-0.00082175
-0.000823712
-0.000825776
-0.000827945
-0.000830221
-0.000832607
-0.000835106
-0.000837721
-0.000840454
-0.000843308
-0.000846285
-0.000849389
-0.000852622
-0.000855987
-0.000859486
-0.000863124
-0.000866902
-0.000870823
-0.000874892
-0.000879111
-0.000883484
-0.000888013
-0.000892702
-0.000897556
-0.000902578
-0.000907772
-0.000913142
-0.000918693
-0.000924429
-0.000930354
-0.000936474
-0.000942793
-0.000949318
-0.000956054
-0.000963006
-0.000970181
-0.000977585
-0.000985225
-0.000993109
-0.00100124
-0.00100964
-0.0010183
-0.00102724
-0.00103646
-0.00104598
-0.00105581
-0.00106595
-0.00107642
-0.00108724
-0.00109841
-0.00110995
-0.00112188
-0.0011342
-0.00114695
-0.00116012
-0.00117376
-0.00118787
-0.00120247
-0.0012176
-0.00123327
-0.00124952
-0.00126636
-0.00128384
-0.00130197
-0.00132081
-0.00134038
-0.00136073
-0.00138189
-0.00140391
-0.00142685
-0.00145075
-0.00147566
-0.00150166
-0.0015288
-0.00155715
-0.00158679
-0.00161778
-0.00165022
-0.0016842
-0.00171979
-0.00175712
-0.00179627
-0.00183735
-0.00188049
-0.0019258
-0.00197339
-0.0020234
-0.00207596
-0.00213118
-0.00218921
-0.00225016
-0.000805131
-0.000805684
-0.000806062
-0.000806417
-0.000806764
-0.000807104
-0.000807449
-0.000807811
-0.0008082
-0.000808626
-0.000809094
-0.000809608
-0.000810174
-0.000810794
-0.00081147
-0.000812207
-0.000813007
-0.000813872
-0.000814806
-0.000815811
-0.00081689
-0.000818047
-0.000819284
-0.000820605
-0.000822011
-0.000823507
-0.000825094
-0.000826776
-0.000828555
-0.000830435
-0.000832418
-0.000834507
-0.000836704
-0.000839013
-0.000841436
-0.000843976
-0.000846636
-0.000849419
-0.000852327
-0.000855363
-0.00085853
-0.000861831
-0.000865269
-0.000868847
-0.000872567
-0.000876434
-0.000880449
-0.000884617
-0.00088894
-0.000893423
-0.000898068
-0.000902879
-0.00090786
-0.000913016
-0.00091835
-0.000923866
-0.000929569
-0.000935464
-0.000941555
-0.000947848
-0.000954347
-0.000961058
-0.000967987
-0.00097514
-0.000982524
-0.000990144
-0.000998008
-0.00100612
-0.0010145
-0.00102314
-0.00103206
-0.00104126
-0.00105076
-0.00106056
-0.00107068
-0.00108112
-0.00109191
-0.00110304
-0.00111454
-0.00112642
-0.00113869
-0.00115137
-0.00116448
-0.00117803
-0.00119204
-0.00120654
-0.00122155
-0.00123708
-0.00125317
-0.00126983
-0.0012871
-0.00130501
-0.00132358
-0.00134285
-0.00136286
-0.00138364
-0.00140524
-0.00142769
-0.00145105
-0.00147536
-0.00150067
-0.00152704
-0.00155453
-0.0015832
-0.00161312
-0.00164435
-0.00167697
-0.00171106
-0.0017467
-0.00178397
-0.00182295
-0.00186375
-0.00190646
-0.00195116
-0.00199795
-0.00204693
-0.00209819
-0.00215181
-0.00220789
-0.00226649
-0.000813964
-0.000814535
-0.00081492
-0.000815277
-0.00081562
-0.000815952
-0.000816285
-0.000816632
-0.000817005
-0.000817412
-0.00081786
-0.000818355
-0.000818901
-0.000819501
-0.000820159
-0.000820877
-0.000821659
-0.000822507
-0.000823426
-0.000824417
-0.000825485
-0.000826632
-0.000827862
-0.000829178
-0.000830582
-0.000832078
-0.000833668
-0.000835357
-0.000837146
-0.000839039
-0.000841039
-0.000843149
-0.000845371
-0.000847709
-0.000850165
-0.000852742
-0.000855443
-0.000858271
-0.000861229
-0.00086432
-0.000867547
-0.000870913
-0.00087442
-0.000878072
-0.000881872
-0.000885823
-0.000889928
-0.000894191
-0.000898615
-0.000903204
-0.00090796
-0.000912889
-0.000917994
-0.000923279
-0.000928749
-0.000934407
-0.000940258
-0.000946307
-0.00095256
-0.00095902
-0.000965693
-0.000972586
-0.000979704
-0.000987053
-0.00099464
-0.00100247
-0.00101055
-0.0010189
-0.0010275
-0.00103639
-0.00104556
-0.00105502
-0.00106478
-0.00107486
-0.00108526
-0.001096
-0.00110708
-0.00111853
-0.00113034
-0.00114255
-0.00115516
-0.00116818
-0.00118164
-0.00119556
-0.00120995
-0.00122482
-0.00124022
-0.00125614
-0.00127263
-0.0012897
-0.00130738
-0.00132571
-0.0013447
-0.0013644
-0.00138483
-0.00140604
-0.00142805
-0.00145092
-0.00147469
-0.00149939
-0.00152509
-0.00155182
-0.00157965
-0.00160863
-0.00163882
-0.00167028
-0.00170309
-0.0017373
-0.00177299
-0.00181023
-0.00184909
-0.00188966
-0.001932
-0.00197619
-0.00202231
-0.00207042
-0.00212058
-0.00217287
-0.00222734
-0.00228403
-0.000822817
-0.000823407
-0.0008238
-0.000824158
-0.000824498
-0.00082482
-0.000825138
-0.000825468
-0.00082582
-0.000826206
-0.000826631
-0.000827102
-0.000827624
-0.0008282
-0.000828834
-0.000829529
-0.000830288
-0.000831115
-0.000832014
-0.000832987
-0.000834039
-0.000835171
-0.000836389
-0.000837695
-0.000839092
-0.000840584
-0.000842173
-0.000843864
-0.000845659
-0.000847561
-0.000849574
-0.0008517
-0.000853942
-0.000856304
-0.000858789
-0.000861399
-0.000864137
-0.000867007
-0.000870011
-0.000873153
-0.000876436
-0.000879862
-0.000883434
-0.000887156
-0.000891031
-0.000895063
-0.000899254
-0.000903608
-0.000908129
-0.000912819
-0.000917684
-0.000922726
-0.000927951
-0.000933361
-0.000938961
-0.000944757
-0.000950752
-0.000956951
-0.00096336
-0.000969983
-0.000976826
-0.000983895
-0.000991197
-0.000998736
-0.00100652
-0.00101456
-0.00102285
-0.00103141
-0.00104025
-0.00104937
-0.00105878
-0.00106849
-0.00107852
-0.00108886
-0.00109954
-0.00111056
-0.00112194
-0.00113369
-0.00114582
-0.00115834
-0.00117128
-0.00118464
-0.00119844
-0.00121271
-0.00122746
-0.00124271
-0.00125847
-0.00127478
-0.00129166
-0.00130913
-0.00132721
-0.00134594
-0.00136534
-0.00138545
-0.00140629
-0.00142791
-0.00145034
-0.00147361
-0.00149777
-0.00152286
-0.00154893
-0.00157602
-0.00160418
-0.00163347
-0.00166394
-0.00169564
-0.00172864
-0.001763
-0.00179877
-0.00183602
-0.00187482
-0.00191522
-0.0019573
-0.0020011
-0.00204669
-0.00209413
-0.00214346
-0.00219473
-0.00224797
-0.00230322
-0.000831695
-0.000832306
-0.000832707
-0.000833066
-0.0008334
-0.000833711
-0.000834012
-0.000834321
-0.00083465
-0.00083501
-0.000835408
-0.000835852
-0.000836345
-0.000836892
-0.000837497
-0.000838164
-0.000838896
-0.000839697
-0.000840571
-0.000841521
-0.00084255
-0.000843663
-0.000844864
-0.000846155
-0.00084754
-0.000849022
-0.000850606
-0.000852294
-0.00085409
-0.000855996
-0.000858017
-0.000860155
-0.000862413
-0.000864795
-0.000867304
-0.000869942
-0.000872714
-0.000875621
-0.000878668
-0.000881856
-0.00088519
-0.000888672
-0.000892306
-0.000896094
-0.00090004
-0.000904148
-0.000908421
-0.000912862
-0.000917475
-0.000922264
-0.000927232
-0.000932384
-0.000937723
-0.000943254
-0.000948981
-0.00095491
-0.000961044
-0.000967388
-0.000973948
-0.000980729
-0.000987737
-0.000994978
-0.00100246
-0.00101018
-0.00101816
-0.00102639
-0.0010349
-0.00104367
-0.00105273
-0.00106208
-0.00107173
-0.00108169
-0.00109196
-0.00110257
-0.00111352
-0.00112481
-0.00113648
-0.00114852
-0.00116095
-0.00117378
-0.00118704
-0.00120072
-0.00121487
-0.00122948
-0.00124457
-0.00126018
-0.00127631
-0.001293
-0.00131025
-0.0013281
-0.00134658
-0.0013657
-0.0013855
-0.00140601
-0.00142725
-0.00144927
-0.0014721
-0.00149576
-0.00152031
-0.00154579
-0.00157222
-0.00159967
-0.00162817
-0.00165777
-0.00168853
-0.00172049
-0.00175371
-0.00178824
-0.00182414
-0.00186146
-0.00190026
-0.00194059
-0.00198251
-0.00202607
-0.00207132
-0.0021183
-0.00216706
-0.00221763
-0.00227006
-0.00232438
-0.000840602
-0.000841237
-0.000841646
-0.000842005
-0.000842332
-0.000842629
-0.000842912
-0.000843197
-0.000843498
-0.000843828
-0.000844195
-0.000844606
-0.000845066
-0.000845579
-0.00084615
-0.000846784
-0.000847483
-0.000848252
-0.000849096
-0.000850017
-0.000851019
-0.000852107
-0.000853285
-0.000854556
-0.000855924
-0.000857392
-0.000858964
-0.000860644
-0.000862436
-0.000864342
-0.000866366
-0.000868511
-0.00087078
-0.000873178
-0.000875706
-0.000878369
-0.000881169
-0.000884109
-0.000887193
-0.000890424
-0.000893805
-0.000897339
-0.00090103
-0.00090488
-0.000908894
-0.000913074
-0.000917424
-0.000921948
-0.000926649
-0.000931532
-0.000936599
-0.000941855
-0.000947305
-0.000952952
-0.000958802
-0.000964858
-0.000971127
-0.000977611
-0.000984318
-0.000991252
-0.000998419
-0.00100583
-0.00101348
-0.00102138
-0.00102955
-0.00103797
-0.00104668
-0.00105566
-0.00106493
-0.00107451
-0.00108438
-0.00109458
-0.0011051
-0.00111596
-0.00112717
-0.00113874
-0.00115068
-0.001163
-0.00117573
-0.00118886
-0.00120243
-0.00121644
-0.0012309
-0.00124585
-0.00126129
-0.00127724
-0.00129373
-0.00131077
-0.0013284
-0.00134663
-0.00136548
-0.00138499
-0.00140518
-0.00142608
-0.00144771
-0.00147013
-0.00149334
-0.0015174
-0.00154234
-0.00156819
-0.001595
-0.0016228
-0.00165164
-0.00168157
-0.00171264
-0.00174488
-0.00177834
-0.00181309
-0.00184916
-0.00188662
-0.0019255
-0.00196587
-0.00200776
-0.00205123
-0.00209632
-0.00214308
-0.00219155
-0.00224178
-0.0022938
-0.00234768
-0.000849545
-0.000850205
-0.000850623
-0.000850982
-0.000851301
-0.000851582
-0.000851842
-0.000852099
-0.000852369
-0.000852665
-0.000852996
-0.000853369
-0.00085379
-0.000854264
-0.000854796
-0.00085539
-0.000856051
-0.000856782
-0.000857589
-0.000858475
-0.000859445
-0.000860502
-0.000861651
-0.000862896
-0.000864241
-0.00086569
-0.000867246
-0.000868913
-0.000870694
-0.000872594
-0.000874617
-0.000876764
-0.00087904
-0.000881448
-0.000883991
-0.000886673
-0.000889497
-0.000892466
-0.000895583
-0.000898852
-0.000902276
-0.000905858
-0.000909601
-0.000913509
-0.000917585
-0.000921833
-0.000926257
-0.000930859
-0.000935644
-0.000940616
-0.000945778
-0.000951135
-0.000956691
-0.00096245
-0.000968417
-0.000974597
-0.000980994
-0.000987614
-0.000994462
-0.00100154
-0.00100887
-0.00101643
-0.00102425
-0.00103233
-0.00104067
-0.00104929
-0.00105819
-0.00106737
-0.00107685
-0.00108664
-0.00109674
-0.00110717
-0.00111793
-0.00112904
-0.0011405
-0.00115233
-0.00116454
-0.00117714
-0.00119015
-0.00120358
-0.00121745
-0.00123176
-0.00124655
-0.00126181
-0.00127759
-0.00129388
-0.00131071
-0.00132811
-0.0013461
-0.00136469
-0.00138392
-0.0014038
-0.00142437
-0.00144565
-0.00146768
-0.00149048
-0.00151408
-0.00153853
-0.00156385
-0.00159008
-0.00161726
-0.00164543
-0.00167463
-0.0017049
-0.00173629
-0.00176884
-0.00180259
-0.0018376
-0.00187391
-0.00191157
-0.00195063
-0.00199113
-0.00203313
-0.00207668
-0.00212181
-0.00216858
-0.00221704
-0.00226725
-0.00231927
-0.00237317
-0.000858531
-0.000859218
-0.000859645
-0.000860004
-0.000860313
-0.000860575
-0.000860809
-0.000861034
-0.000861269
-0.000861525
-0.000861814
-0.000862144
-0.00086252
-0.000862949
-0.000863435
-0.000863984
-0.0008646
-0.000865288
-0.000866052
-0.000866897
-0.000867827
-0.000868847
-0.000869962
-0.000871175
-0.000872491
-0.000873914
-0.000875447
-0.000877096
-0.000878862
-0.000880751
-0.000882766
-0.000884911
-0.000887188
-0.000889601
-0.000892155
-0.000894851
-0.000897694
-0.000900687
-0.000903833
-0.000907135
-0.000910598
-0.000914223
-0.000918014
-0.000921975
-0.00092611
-0.000930422
-0.000934914
-0.000939591
-0.000944455
-0.000949511
-0.000954764
-0.000960216
-0.000965874
-0.00097174
-0.000977819
-0.000984118
-0.000990639
-0.00099739
-0.00100437
-0.0010116
-0.00101907
-0.00102679
-0.00103477
-0.00104302
-0.00105154
-0.00106034
-0.00106942
-0.0010788
-0.00108849
-0.00109848
-0.0011088
-0.00111945
-0.00113044
-0.00114179
-0.0011535
-0.00116558
-0.00117805
-0.00119092
-0.00120421
-0.00121792
-0.00123208
-0.0012467
-0.00126179
-0.00127737
-0.00129347
-0.00131009
-0.00132727
-0.00134501
-0.00136334
-0.00138229
-0.00140188
-0.00142214
-0.00144308
-0.00146474
-0.00148715
-0.00151033
-0.00153432
-0.00155915
-0.00158486
-0.00161147
-0.00163903
-0.00166758
-0.00169715
-0.00172778
-0.00175952
-0.00179241
-0.00182649
-0.00186182
-0.00189843
-0.00193637
-0.0019757
-0.00201645
-0.00205869
-0.00210247
-0.00214783
-0.00219484
-0.00224356
-0.00229407
-0.00234645
-0.00240082
-0.000867566
-0.000868284
-0.000868721
-0.000869078
-0.000869374
-0.000869615
-0.000869819
-0.000870009
-0.000870202
-0.000870414
-0.000870655
-0.000870935
-0.00087126
-0.000871637
-0.000872071
-0.000872568
-0.000873132
-0.000873769
-0.000874484
-0.000875281
-0.000876165
-0.000877142
-0.000878215
-0.00087939
-0.000880671
-0.000882062
-0.000883567
-0.000885191
-0.000886937
-0.000888809
-0.000890811
-0.000892947
-0.00089522
-0.000897634
-0.000900193
-0.000902899
-0.000905757
-0.000908768
-0.000911938
-0.000915269
-0.000918765
-0.000922429
-0.000926264
-0.000930274
-0.000934463
-0.000938834
-0.00094339
-0.000948136
-0.000953075
-0.000958212
-0.00096355
-0.000969094
-0.000974848
-0.000980816
-0.000987004
-0.000993415
-0.00100006
-0.00100693
-0.00101405
-0.00102141
-0.00102902
-0.0010369
-0.00104503
-0.00105344
-0.00106213
-0.0010711
-0.00108037
-0.00108994
-0.00109982
-0.00111002
-0.00112055
-0.00113141
-0.00114263
-0.00115421
-0.00116615
-0.00117848
-0.00119121
-0.00120434
-0.0012179
-0.00123189
-0.00124633
-0.00126124
-0.00127663
-0.00129252
-0.00130893
-0.00132587
-0.00134338
-0.00136146
-0.00138013
-0.00139943
-0.00141938
-0.00143999
-0.0014613
-0.00148334
-0.00150612
-0.00152968
-0.00155406
-0.00157928
-0.00160537
-0.00163237
-0.00166032
-0.00168926
-0.00171921
-0.00175023
-0.00178235
-0.00181562
-0.00185007
-0.00188576
-0.00192274
-0.00196104
-0.00200073
-0.00204185
-0.00208446
-0.00212863
-0.0021744
-0.00222187
-0.0022711
-0.0023222
-0.00237527
-0.00243048
-0.00087666
-0.000877411
-0.000877858
-0.000878212
-0.000878495
-0.000878711
-0.000878881
-0.00087903
-0.000879176
-0.000879337
-0.000879524
-0.000879747
-0.000880015
-0.000880333
-0.000880707
-0.000881145
-0.00088165
-0.000882229
-0.000882886
-0.000883628
-0.000884459
-0.000885385
-0.000886411
-0.000887541
-0.000888779
-0.000890132
-0.000891602
-0.000893195
-0.000894914
-0.000896764
-0.000898748
-0.00090087
-0.000903134
-0.000905543
-0.000908101
-0.000910812
-0.000913679
-0.000916705
-0.000919894
-0.000923249
-0.000926774
-0.000930472
-0.000934346
-0.0009384
-0.000942638
-0.000947064
-0.00095168
-0.000956491
-0.0009615
-0.000966713
-0.000972132
-0.000977762
-0.000983608
-0.000989673
-0.000995964
-0.00100248
-0.00100924
-0.00101624
-0.00102348
-0.00103097
-0.00103872
-0.00104674
-0.00105503
-0.00106359
-0.00107244
-0.00108158
-0.00109103
-0.00110078
-0.00111085
-0.00112124
-0.00113197
-0.00114305
-0.00115448
-0.00116628
-0.00117846
-0.00119103
-0.001204
-0.00121739
-0.0012312
-0.00124546
-0.00126018
-0.00127537
-0.00129105
-0.00130724
-0.00132396
-0.00134122
-0.00135904
-0.00137745
-0.00139646
-0.0014161
-0.0014364
-0.00145737
-0.00147904
-0.00150144
-0.0015246
-0.00154854
-0.0015733
-0.00159891
-0.00162539
-0.00165279
-0.00168114
-0.00171048
-0.00174084
-0.00177226
-0.00180479
-0.00183847
-0.00187334
-0.00190946
-0.00194686
-0.0019856
-0.00202574
-0.00206733
-0.00211044
-0.00215514
-0.0022015
-0.00224961
-0.00229958
-0.00235152
-0.00240558
-0.00246195
-0.000885822
-0.00088661
-0.000887067
-0.000887418
-0.000887685
-0.000887872
-0.000888004
-0.000888106
-0.000888199
-0.000888302
-0.000888427
-0.000888587
-0.000888788
-0.00088904
-0.000889347
-0.000889716
-0.000890155
-0.000890667
-0.00089126
-0.000891939
-0.000892709
-0.000893577
-0.000894547
-0.000895624
-0.000896814
-0.000898122
-0.000899551
-0.000901106
-0.000902792
-0.000904613
-0.000906573
-0.000908675
-0.000910924
-0.000913323
-0.000915875
-0.000918586
-0.000921457
-0.000924492
-0.000927695
-0.000931069
-0.000934618
-0.000938346
-0.000942255
-0.000946349
-0.000950631
-0.000955107
-0.000959778
-0.000964649
-0.000969724
-0.000975008
-0.000980503
-0.000986215
-0.000992147
-0.000998305
-0.00100469
-0.00101132
-0.00101818
-0.00102529
-0.00103266
-0.00104028
-0.00104816
-0.00105631
-0.00106474
-0.00107346
-0.00108247
-0.00109177
-0.00110138
-0.00111131
-0.00112156
-0.00113215
-0.00114307
-0.00115435
-0.001166
-0.00117801
-0.00119041
-0.00120321
-0.00121642
-0.00123005
-0.00124412
-0.00125864
-0.00127363
-0.00128909
-0.00130506
-0.00132154
-0.00133855
-0.00135611
-0.00137425
-0.00139298
-0.00141232
-0.0014323
-0.00145294
-0.00147426
-0.00149629
-0.00151905
-0.00154258
-0.0015669
-0.00159204
-0.00161804
-0.00164492
-0.00167273
-0.00170149
-0.00173124
-0.00176202
-0.00179388
-0.00182685
-0.00186098
-0.00189631
-0.0019329
-0.00197079
-0.00201004
-0.00205072
-0.00209288
-0.00213661
-0.00218197
-0.00222907
-0.002278
-0.0023289
-0.0023819
-0.00243719
-0.00249498
-0.000895063
-0.000895891
-0.000896359
-0.000896706
-0.000896954
-0.000897109
-0.000897196
-0.000897245
-0.000897278
-0.000897315
-0.000897372
-0.000897459
-0.000897587
-0.000897762
-0.000897993
-0.000898287
-0.000898649
-0.000899087
-0.000899606
-0.000900213
-0.000900915
-0.000901716
-0.000902623
-0.00090364
-0.000904774
-0.000906029
-0.00090741
-0.000908921
-0.000910567
-0.000912353
-0.000914282
-0.000916359
-0.000918587
-0.00092097
-0.000923511
-0.000926216
-0.000929086
-0.000932125
-0.000935337
-0.000938726
-0.000942295
-0.000946047
-0.000949985
-0.000954114
-0.000958437
-0.000962957
-0.000967679
-0.000972606
-0.000977742
-0.000983092
-0.000988659
-0.000994447
-0.00100046
-0.00100671
-0.00101319
-0.00101991
-0.00102688
-0.0010341
-0.00104158
-0.00104932
-0.00105733
-0.00106562
-0.00107418
-0.00108304
-0.0010922
-0.00110166
-0.00111144
-0.00112153
-0.00113196
-0.00114273
-0.00115384
-0.00116532
-0.00117716
-0.00118939
-0.001202
-0.00121503
-0.00122847
-0.00124233
-0.00125665
-0.00127142
-0.00128666
-0.0013024
-0.00131863
-0.0013354
-0.0013527
-0.00137056
-0.001389
-0.00140805
-0.00142771
-0.00144802
-0.00146899
-0.00149066
-0.00151304
-0.00153617
-0.00156006
-0.00158476
-0.00161029
-0.00163668
-0.00166396
-0.00169218
-0.00172136
-0.00175154
-0.00178277
-0.00181508
-0.00184852
-0.00188313
-0.00191896
-0.00195607
-0.00199452
-0.00203435
-0.00207564
-0.00211847
-0.00216291
-0.00220907
-0.00225702
-0.00230693
-0.00235892
-0.00241316
-0.00246986
-0.00252929
-0.000904396
-0.000905267
-0.000905747
-0.000906088
-0.000906314
-0.000906432
-0.00090647
-0.000906458
-0.000906423
-0.000906387
-0.000906366
-0.000906372
-0.000906416
-0.000906506
-0.000906651
-0.000906859
-0.000907135
-0.000907489
-0.000907926
-0.000908453
-0.000909076
-0.000909802
-0.000910637
-0.000911587
-0.000912656
-0.000913851
-0.000915176
-0.000916636
-0.000918236
-0.00091998
-0.000921873
-0.000923917
-0.000926118
-0.00092848
-0.000931005
-0.000933698
-0.000936561
-0.000939599
-0.000942816
-0.000946214
-0.000949797
-0.000953569
-0.000957533
-0.000961692
-0.00096605
-0.000970611
-0.000975379
-0.000980356
-0.000985549
-0.00099096
-0.000996593
-0.00100245
-0.00100855
-0.00101487
-0.00102144
-0.00102826
-0.00103533
-0.00104265
-0.00105024
-0.00105809
-0.00106622
-0.00107464
-0.00108334
-0.00109234
-0.00110164
-0.00111125
-0.00112118
-0.00113144
-0.00114204
-0.00115298
-0.00116427
-0.00117594
-0.00118798
-0.0012004
-0.00121323
-0.00122646
-0.00124013
-0.00125422
-0.00126877
-0.00128379
-0.00129928
-0.00131527
-0.00133178
-0.00134882
-0.0013664
-0.00138455
-0.00140329
-0.00142264
-0.00144262
-0.00146325
-0.00148455
-0.00150656
-0.00152929
-0.00155278
-0.00157704
-0.00160211
-0.00162803
-0.00165481
-0.00168251
-0.00171114
-0.00174075
-0.00177138
-0.00180307
-0.00183586
-0.00186979
-0.00190492
-0.00194129
-0.00197897
-0.00201802
-0.00205851
-0.00210045
-0.00214403
-0.00218929
-0.00223633
-0.00228527
-0.00233627
-0.00238948
-0.0024451
-0.00250336
-0.00256457
-0.000913833
-0.000914753
-0.000915245
-0.000915579
-0.00091578
-0.000915855
-0.000915836
-0.000915756
-0.000915645
-0.000915526
-0.000915417
-0.000915331
-0.000915281
-0.000915276
-0.000915325
-0.000915436
-0.000915617
-0.000915876
-0.000916221
-0.000916657
-0.000917193
-0.000917835
-0.00091859
-0.000919463
-0.00092046
-0.000921586
-0.000922848
-0.00092425
-0.000925796
-0.000927492
-0.00092934
-0.000931347
-0.000933515
-0.000935849
-0.000938352
-0.000941027
-0.000943879
-0.000946911
-0.000950127
-0.000953529
-0.000957122
-0.000960908
-0.000964892
-0.000969077
-0.000973466
-0.000978063
-0.000982871
-0.000987895
-0.000993139
-0.000998606
-0.0010043
-0.00101023
-0.00101639
-0.0010228
-0.00102945
-0.00103635
-0.00104351
-0.00105094
-0.00105863
-0.00106659
-0.00107484
-0.00108338
-0.0010922
-0.00110133
-0.00111077
-0.00112053
-0.00113061
-0.00114102
-0.00115178
-0.00116289
-0.00117436
-0.0011862
-0.00119843
-0.00121105
-0.00122408
-0.00123752
-0.00125139
-0.00126571
-0.00128049
-0.00129574
-0.00131148
-0.00132772
-0.00134449
-0.00136179
-0.00137965
-0.00139808
-0.00141711
-0.00143676
-0.00145705
-0.00147799
-0.00149962
-0.00152196
-0.00154504
-0.00156888
-0.00159351
-0.00161896
-0.00164526
-0.00167244
-0.00170055
-0.00172961
-0.00175966
-0.00179075
-0.00182291
-0.0018562
-0.00189065
-0.00192632
-0.00196327
-0.00200156
-0.00204126
-0.00208243
-0.00212515
-0.00216953
-0.00221567
-0.00226367
-0.00231369
-0.00236587
-0.0024204
-0.0024775
-0.00253744
-0.00260052
-0.000923392
-0.000924364
-0.00092487
-0.000925195
-0.000925366
-0.000925392
-0.000925309
-0.000925152
-0.000924955
-0.000924742
-0.000924534
-0.000924347
-0.000924191
-0.000924079
-0.00092402
-0.000924024
-0.000924098
-0.000924251
-0.000924492
-0.000924828
-0.000925266
-0.000925814
-0.000926479
-0.000927266
-0.000928182
-0.000929232
-0.000930422
-0.000931758
-0.000933243
-0.000934883
-0.000936682
-0.000938643
-0.000940772
-0.000943072
-0.000945547
-0.0009482
-0.000951035
-0.000954055
-0.000957265
-0.000960666
-0.000964264
-0.00096806
-0.000972059
-0.000976265
-0.00098068
-0.000985308
-0.000990152
-0.000995218
-0.00100051
-0.00100603
-0.00101178
-0.00101777
-0.001024
-0.00103048
-0.00103721
-0.00104419
-0.00105144
-0.00105896
-0.00106675
-0.00107482
-0.00108317
-0.00109182
-0.00110077
-0.00111003
-0.0011196
-0.00112949
-0.00113971
-0.00115028
-0.00116119
-0.00117246
-0.0011841
-0.00119611
-0.00120852
-0.00122133
-0.00123454
-0.00124819
-0.00126227
-0.0012768
-0.0012918
-0.00130728
-0.00132325
-0.00133973
-0.00135675
-0.00137431
-0.00139243
-0.00141114
-0.00143046
-0.00145039
-0.00147098
-0.00149224
-0.00151419
-0.00153686
-0.00156027
-0.00158446
-0.00160945
-0.00163528
-0.00166197
-0.00168955
-0.00171808
-0.00174757
-0.00177807
-0.00180963
-0.00184229
-0.00187609
-0.00191107
-0.00194732
-0.00198488
-0.00202381
-0.00206419
-0.0021061
-0.00214963
-0.00219488
-0.00224195
-0.00229099
-0.00234215
-0.00239558
-0.00245151
-0.00251016
-0.00257182
-0.00263683
-0.000933089
-0.00093412
-0.00093464
-0.000934953
-0.00093509
-0.000935061
-0.000934904
-0.000934661
-0.000934366
-0.000934049
-0.00093373
-0.000933427
-0.000933153
-0.000932922
-0.000932742
-0.000932625
-0.00093258
-0.000932616
-0.000932742
-0.000932966
-0.000933296
-0.000933739
-0.000934303
-0.000934995
-0.00093582
-0.000936785
-0.000937896
-0.000939157
-0.000940574
-0.000942151
-0.000943892
-0.000945803
-0.000947886
-0.000950146
-0.000952587
-0.000955212
-0.000958024
-0.000961028
-0.000964226
-0.000967621
-0.000971218
-0.00097502
-0.00097903
-0.000983251
-0.000987687
-0.000992341
-0.000997217
-0.00100232
-0.00100765
-0.00101322
-0.00101902
-0.00102507
-0.00103136
-0.00103791
-0.00104471
-0.00105177
-0.0010591
-0.00106671
-0.00107459
-0.00108276
-0.00109122
-0.00109998
-0.00110904
-0.00111841
-0.00112811
-0.00113813
-0.00114849
-0.0011592
-0.00117026
-0.00118168
-0.00119348
-0.00120566
-0.00121824
-0.00123122
-0.00124463
-0.00125846
-0.00127274
-0.00128748
-0.00130269
-0.00131838
-0.00133458
-0.0013513
-0.00136856
-0.00138637
-0.00140475
-0.00142373
-0.00144331
-0.00146354
-0.00148442
-0.00150598
-0.00152824
-0.00155123
-0.00157499
-0.00159952
-0.00162487
-0.00165107
-0.00167815
-0.00170614
-0.00173508
-0.00176501
-0.00179597
-0.00182801
-0.00186116
-0.00189549
-0.00193104
-0.00196788
-0.00200607
-0.00204568
-0.00208678
-0.00212947
-0.00217383
-0.00221999
-0.00226806
-0.00231818
-0.00237051
-0.00242525
-0.00248261
-0.00254285
-0.00260627
-0.00267321
-0.000942945
-0.00094404
-0.000944574
-0.000944873
-0.000944971
-0.000944879
-0.000944639
-0.000944298
-0.000943893
-0.000943457
-0.000943014
-0.000942582
-0.000942176
-0.000941811
-0.000941497
-0.000941246
-0.000941068
-0.000940974
-0.000940972
-0.000941071
-0.000941281
-0.000941609
-0.000942062
-0.000942648
-0.000943373
-0.000944244
-0.000945266
-0.000946445
-0.000947785
-0.000949291
-0.000950969
-0.000952821
-0.000954852
-0.000957066
-0.000959467
-0.000962058
-0.000964842
-0.000967823
-0.000971005
-0.000974389
-0.000977981
-0.000981783
-0.000985798
-0.00099003
-0.000994483
-0.000999159
-0.00100406
-0.0010092
-0.00101457
-0.00102017
-0.00102603
-0.00103212
-0.00103847
-0.00104508
-0.00105195
-0.00105909
-0.0010665
-0.00107418
-0.00108215
-0.00109041
-0.00109897
-0.00110783
-0.001117
-0.00112649
-0.0011363
-0.00114645
-0.00115694
-0.00116778
-0.00117898
-0.00119055
-0.0012025
-0.00121484
-0.00122758
-0.00124074
-0.00125432
-0.00126834
-0.00128281
-0.00129774
-0.00131315
-0.00132906
-0.00134548
-0.00136242
-0.00137991
-0.00139796
-0.00141659
-0.00143583
-0.00145568
-0.00147618
-0.00149735
-0.0015192
-0.00154178
-0.00156509
-0.00158917
-0.00161405
-0.00163976
-0.00166633
-0.00169379
-0.00172218
-0.00175154
-0.00178192
-0.00181334
-0.00184586
-0.00187953
-0.0019144
-0.00195053
-0.00198798
-0.00202682
-0.00206712
-0.00210897
-0.00215246
-0.00219769
-0.00224479
-0.00229387
-0.00234511
-0.00239866
-0.00245473
-0.00251354
-0.00257537
-0.00264053
-0.00270939
-0.000952982
-0.000954148
-0.000954697
-0.00095498
-0.000955031
-0.000954867
-0.000954533
-0.000954081
-0.000953552
-0.000952983
-0.000952399
-0.000951823
-0.00095127
-0.000950755
-0.000950291
-0.000949891
-0.000949566
-0.000949327
-0.000949183
-0.000949146
-0.000949222
-0.000949422
-0.000949754
-0.000950223
-0.000950838
-0.000951605
-0.000952529
-0.000953617
-0.000954872
-0.000956301
-0.000957906
-0.000959693
-0.000961666
-0.000963828
-0.000966183
-0.000968734
-0.000971484
-0.000974438
-0.000977597
-0.000980966
-0.000984548
-0.000988345
-0.000992361
-0.000996599
-0.00100106
-0.00100576
-0.00101068
-0.00101584
-0.00102124
-0.00102689
-0.00103278
-0.00103893
-0.00104533
-0.001052
-0.00105893
-0.00106613
-0.00107361
-0.00108138
-0.00108943
-0.00109778
-0.00110643
-0.00111538
-0.00112466
-0.00113425
-0.00114418
-0.00115444
-0.00116505
-0.00117602
-0.00118736
-0.00119907
-0.00121116
-0.00122365
-0.00123655
-0.00124987
-0.00126361
-0.00127781
-0.00129246
-0.00130758
-0.00132319
-0.0013393
-0.00135592
-0.00137309
-0.0013908
-0.00140908
-0.00142796
-0.00144744
-0.00146756
-0.00148832
-0.00150977
-0.00153191
-0.00155479
-0.00157841
-0.00160282
-0.00162803
-0.00165409
-0.00168103
-0.00170888
-0.00173767
-0.00176746
-0.00179827
-0.00183016
-0.00186317
-0.00189736
-0.00193278
-0.00196949
-0.00200756
-0.00204707
-0.00208808
-0.00213069
-0.002175
-0.00222113
-0.00226918
-0.00231931
-0.00237167
-0.00242645
-0.00248385
-0.00254412
-0.00260753
-0.0026744
-0.00274511
-0.000963226
-0.00096447
-0.000965035
-0.000965297
-0.000965296
-0.000965049
-0.000964608
-0.000964029
-0.000963361
-0.000962642
-0.000961901
-0.000961162
-0.000960444
-0.000959762
-0.000959132
-0.000958566
-0.000958078
-0.000957678
-0.000957379
-0.000957189
-0.00095712
-0.000957179
-0.000957376
-0.000957718
-0.000958212
-0.000958865
-0.000959682
-0.00096067
-0.000961832
-0.000963174
-0.000964701
-0.000966416
-0.000968324
-0.000970427
-0.00097273
-0.000975235
-0.000977946
-0.000980867
-0.000983999
-0.000987347
-0.000990914
-0.000994701
-0.000998713
-0.00100295
-0.00100742
-0.00101213
-0.00101707
-0.00102226
-0.00102769
-0.00103336
-0.00103929
-0.00104548
-0.00105193
-0.00105865
-0.00106564
-0.0010729
-0.00108045
-0.00108829
-0.00109642
-0.00110484
-0.00111358
-0.00112263
-0.00113199
-0.00114169
-0.00115172
-0.0011621
-0.00117283
-0.00118392
-0.00119538
-0.00120722
-0.00121945
-0.00123208
-0.00124513
-0.0012586
-0.00127251
-0.00128687
-0.00130169
-0.00131699
-0.00133279
-0.00134909
-0.00136592
-0.00138329
-0.00140122
-0.00141973
-0.00143883
-0.00145856
-0.00147893
-0.00149995
-0.00152167
-0.0015441
-0.00156726
-0.00159119
-0.00161592
-0.00164147
-0.00166787
-0.00169517
-0.0017234
-0.00175259
-0.0017828
-0.00181405
-0.00184641
-0.00187992
-0.00191463
-0.0019506
-0.0019879
-0.0020266
-0.00206678
-0.00210851
-0.0021519
-0.00219704
-0.00224406
-0.00229308
-0.00234426
-0.00239775
-0.00245375
-0.00251247
-0.00257417
-0.00263913
-0.00270766
-0.00278016
-0.000973706
-0.000975037
-0.000975618
-0.000975855
-0.000975793
-0.000975451
-0.000974888
-0.000974166
-0.00097334
-0.000972451
-0.000971534
-0.000970613
-0.00096971
-0.000968842
-0.000968026
-0.000967277
-0.000966607
-0.000966031
-0.000965559
-0.000965203
-0.000964973
-0.000964879
-0.000964929
-0.000965131
-0.000965493
-0.000966021
-0.000966721
-0.000967599
-0.00096866
-0.000969908
-0.000971349
-0.000972984
-0.00097482
-0.000976858
-0.000979103
-0.000981557
-0.000984224
-0.000987106
-0.000990206
-0.000993528
-0.000997074
-0.00100085
-0.00100485
-0.00100909
-0.00101356
-0.00101827
-0.00102323
-0.00102843
-0.00103388
-0.00103959
-0.00104555
-0.00105178
-0.00105827
-0.00106504
-0.00107208
-0.0010794
-0.00108701
-0.00109491
-0.00110311
-0.00111161
-0.00112043
-0.00112956
-0.00113902
-0.00114881
-0.00115894
-0.00116942
-0.00118025
-0.00119146
-0.00120304
-0.001215
-0.00122736
-0.00124013
-0.00125332
-0.00126694
-0.001281
-0.00129552
-0.00131051
-0.00132598
-0.00134195
-0.00135844
-0.00137546
-0.00139303
-0.00141117
-0.00142989
-0.00144922
-0.00146918
-0.00148978
-0.00151106
-0.00153304
-0.00155574
-0.00157919
-0.00160342
-0.00162846
-0.00165433
-0.00168108
-0.00170873
-0.00173734
-0.00176693
-0.00179755
-0.00182925
-0.00186207
-0.00189607
-0.0019313
-0.00196783
-0.00200573
-0.00204506
-0.00208591
-0.00212837
-0.00217253
-0.00221851
-0.00226642
-0.00231641
-0.00236862
-0.00242323
-0.00248044
-0.00254046
-0.00260356
-0.00267
-0.00274013
-0.00281432
-0.000984454
-0.000985883
-0.00098648
-0.000986687
-0.000986553
-0.000986102
-0.0009854
-0.000984516
-0.000983511
-0.000982431
-0.000981314
-0.00098019
-0.00097908
-0.000978005
-0.000976982
-0.000976029
-0.000975159
-0.000974387
-0.000973726
-0.000973187
-0.000972781
-0.000972519
-0.000972408
-0.000972458
-0.000972676
-0.000973069
-0.000973642
-0.000974402
-0.000975352
-0.000976498
-0.000977844
-0.000979394
-0.000981151
-0.000983118
-0.000985298
-0.000987695
-0.000990312
-0.00099315
-0.000996214
-0.000999505
-0.00100303
-0.00100678
-0.00101077
-0.001015
-0.00101947
-0.00102419
-0.00102915
-0.00103437
-0.00103984
-0.00104557
-0.00105156
-0.00105782
-0.00106435
-0.00107115
-0.00107824
-0.00108561
-0.00109328
-0.00110124
-0.0011095
-0.00111808
-0.00112697
-0.00113618
-0.00114572
-0.0011556
-0.00116582
-0.0011764
-0.00118733
-0.00119865
-0.00121034
-0.00122242
-0.0012349
-0.0012478
-0.00126112
-0.00127488
-0.00128908
-0.00130375
-0.00131889
-0.00133453
-0.00135067
-0.00136733
-0.00138454
-0.0014023
-0.00142063
-0.00143956
-0.0014591
-0.00147929
-0.00150013
-0.00152165
-0.00154388
-0.00156685
-0.00159057
-0.00161509
-0.00164043
-0.00166662
-0.0016937
-0.00172171
-0.00175069
-0.00178067
-0.0018117
-0.00184383
-0.00187711
-0.0019116
-0.00194735
-0.00198444
-0.00202292
-0.00206288
-0.00210441
-0.00214758
-0.00219252
-0.00223933
-0.00228813
-0.00233907
-0.00239231
-0.00244802
-0.00250641
-0.00256769
-0.00263213
-0.00270001
-0.00277165
-0.00284743
-0.00099551
-0.000997047
-0.00099766
-0.000997831
-0.000997614
-0.000997037
-0.000996175
-0.000995106
-0.000993898
-0.000992602
-0.000991262
-0.000989908
-0.000988567
-0.00098726
-0.000986008
-0.000984829
-0.000983738
-0.000982751
-0.000981881
-0.000981141
-0.000980543
-0.000980097
-0.000979812
-0.000979697
-0.000979759
-0.000980005
-0.000980441
-0.000981072
-0.000981903
-0.000982939
-0.000984183
-0.000985639
-0.000987311
-0.0009892
-0.000991311
-0.000993645
-0.000996206
-0.000998996
-0.00100202
-0.00100527
-0.00100876
-0.00101249
-0.00101647
-0.00102068
-0.00102515
-0.00102986
-0.00103483
-0.00104005
-0.00104554
-0.00105129
-0.0010573
-0.00106359
-0.00107015
-0.001077
-0.00108413
-0.00109154
-0.00109926
-0.00110728
-0.0011156
-0.00112424
-0.00113319
-0.00114248
-0.00115209
-0.00116205
-0.00117236
-0.00118303
-0.00119406
-0.00120548
-0.00121727
-0.00122946
-0.00124206
-0.00125508
-0.00126852
-0.00128241
-0.00129675
-0.00131156
-0.00132685
-0.00134264
-0.00135894
-0.00137577
-0.00139315
-0.00141109
-0.00142961
-0.00144874
-0.00146849
-0.00148888
-0.00150994
-0.0015317
-0.00155418
-0.0015774
-0.00160139
-0.00162619
-0.00165182
-0.00167832
-0.00170573
-0.00173408
-0.00176342
-0.00179378
-0.00182522
-0.00185778
-0.00189152
-0.00192649
-0.00196275
-0.00200038
-0.00203945
-0.00208004
-0.00212223
-0.00216612
-0.00221182
-0.00225944
-0.00230912
-0.002361
-0.00241524
-0.00247202
-0.00253154
-0.00259404
-0.00265976
-0.002729
-0.00280206
-0.00287933
-0.00100692
-0.00100857
-0.0010092
-0.00100933
-0.00100902
-0.00100829
-0.00100725
-0.00100597
-0.00100453
-0.00100299
-0.0010014
-0.000999784
-0.000998184
-0.00099662
-0.000995113
-0.000993682
-0.000992347
-0.000991123
-0.000990025
-0.000989065
-0.000988258
-0.000987612
-0.000987138
-0.000986844
-0.000986737
-0.000986825
-0.000987113
-0.000987606
-0.000988309
-0.000989226
-0.00099036
-0.000991716
-0.000993295
-0.000995101
-0.000997135
-0.000999402
-0.0010019
-0.00100464
-0.00100761
-0.00101083
-0.00101428
-0.00101799
-0.00102194
-0.00102614
-0.00103059
-0.0010353
-0.00104027
-0.00104549
-0.00105099
-0.00105675
-0.00106279
-0.0010691
-0.00107569
-0.00108256
-0.00108973
-0.00109719
-0.00110495
-0.00111302
-0.00112139
-0.00113009
-0.00113911
-0.00114846
-0.00115815
-0.00116818
-0.00117857
-0.00118932
-0.00120044
-0.00121194
-0.00122384
-0.00123613
-0.00124884
-0.00126196
-0.00127552
-0.00128953
-0.001304
-0.00131894
-0.00133437
-0.00135031
-0.00136676
-0.00138375
-0.00140129
-0.0014194
-0.0014381
-0.00145741
-0.00147736
-0.00149796
-0.00151923
-0.00154121
-0.00156392
-0.00158739
-0.00161164
-0.0016367
-0.00166262
-0.00168943
-0.00171715
-0.00174584
-0.00177552
-0.00180626
-0.00183809
-0.00187107
-0.00190525
-0.0019407
-0.00197747
-0.00201564
-0.00205528
-0.00209648
-0.00213932
-0.00218391
-0.00223036
-0.00227878
-0.00232932
-0.0023821
-0.00243731
-0.00249513
-0.00255575
-0.0026194
-0.00268634
-0.00275685
-0.00283125
-0.00290988
-0.00101872
-0.00102051
-0.00102116
-0.00102123
-0.0010208
-0.00101991
-0.00101866
-0.00101714
-0.00101543
-0.00101362
-0.00101174
-0.00100984
-0.00100795
-0.00100609
-0.0010043
-0.0010026
-0.00100099
-0.000999506
-0.000998157
-0.000996959
-0.000995923
-0.00099506
-0.000994381
-0.000993894
-0.000993605
-0.000993523
-0.000993652
-0.000993998
-0.000994563
-0.000995353
-0.00099637
-0.000997618
-0.000999099
-0.00100081
-0.00100277
-0.00100496
-0.00100739
-0.00101007
-0.00101299
-0.00101616
-0.00101958
-0.00102325
-0.00102718
-0.00103136
-0.00103579
-0.00104049
-0.00104545
-0.00105068
-0.00105618
-0.00106195
-0.001068
-0.00107433
-0.00108095
-0.00108785
-0.00109505
-0.00110255
-0.00111035
-0.00111846
-0.00112688
-0.00113563
-0.0011447
-0.00115411
-0.00116387
-0.00117397
-0.00118443
-0.00119526
-0.00120646
-0.00121805
-0.00123003
-0.00124242
-0.00125522
-0.00126846
-0.00128213
-0.00129625
-0.00131083
-0.0013259
-0.00134146
-0.00135753
-0.00137412
-0.00139126
-0.00140895
-0.00142722
-0.00144609
-0.00146558
-0.00148571
-0.0015065
-0.00152798
-0.00155018
-0.00157311
-0.00159681
-0.0016213
-0.00164663
-0.00167282
-0.00169992
-0.00172795
-0.00175695
-0.00178699
-0.00181808
-0.0018503
-0.00188369
-0.00191831
-0.00195421
-0.00199148
-0.00203017
-0.00207037
-0.00211217
-0.00215565
-0.00220092
-0.0022481
-0.0022973
-0.00234865
-0.00240232
-0.00245847
-0.00251727
-0.00257893
-0.00264368
-0.00271177
-0.00278348
-0.0028591
-0.00293899
-0.00103098
-0.00103293
-0.00103359
-0.0010336
-0.00103303
-0.00103195
-0.00103045
-0.00102865
-0.00102665
-0.00102452
-0.00102231
-0.00102009
-0.00101787
-0.0010157
-0.00101359
-0.00101158
-0.00100967
-0.0010079
-0.00100628
-0.00100482
-0.00100354
-0.00100244
-0.00100154
-0.00100084
-0.00100036
-0.00100009
-0.00100005
-0.00100024
-0.00100066
-0.00100132
-0.00100221
-0.00100334
-0.00100472
-0.00100634
-0.0010082
-0.00101032
-0.00101268
-0.00101529
-0.00101816
-0.00102128
-0.00102466
-0.00102829
-0.00103218
-0.00103634
-0.00104076
-0.00104544
-0.00105039
-0.00105562
-0.00106112
-0.0010669
-0.00107295
-0.0010793
-0.00108593
-0.00109286
-0.00110008
-0.00110761
-0.00111545
-0.00112359
-0.00113206
-0.00114086
-0.00114998
-0.00115945
-0.00116926
-0.00117942
-0.00118995
-0.00120085
-0.00121213
-0.00122379
-0.00123586
-0.00124833
-0.00126123
-0.00127455
-0.00128832
-0.00130255
-0.00131725
-0.00133243
-0.00134811
-0.0013643
-0.00138102
-0.0013983
-0.00141614
-0.00143456
-0.00145359
-0.00147324
-0.00149355
-0.00151452
-0.00153619
-0.00155859
-0.00158173
-0.00160566
-0.00163038
-0.00165596
-0.00168241
-0.00170978
-0.00173811
-0.00176743
-0.00179779
-0.00182923
-0.00186182
-0.00189561
-0.00193064
-0.001967
-0.00200474
-0.00204395
-0.00208469
-0.00212707
-0.00217117
-0.0022171
-0.00226498
-0.00231492
-0.00236708
-0.00242159
-0.00247862
-0.00253837
-0.00260102
-0.0026668
-0.00273596
-0.00280877
-0.00288553
-0.00296656
-0.00104377
-0.00104589
-0.00104656
-0.00104649
-0.00104577
-0.00104445
-0.00104267
-0.00104055
-0.00103821
-0.00103572
-0.00103315
-0.00103055
-0.00102797
-0.00102544
-0.00102298
-0.00102063
-0.0010184
-0.00101631
-0.00101439
-0.00101264
-0.00101109
-0.00100974
-0.0010086
-0.00100768
-0.00100699
-0.00100653
-0.00100631
-0.00100633
-0.00100659
-0.00100711
-0.00100787
-0.00100888
-0.00101014
-0.00101166
-0.00101343
-0.00101546
-0.00101775
-0.0010203
-0.0010231
-0.00102617
-0.0010295
-0.00103309
-0.00103695
-0.00104108
-0.00104547
-0.00105014
-0.00105508
-0.0010603
-0.00106579
-0.00107157
-0.00107764
-0.00108399
-0.00109064
-0.00109758
-0.00110483
-0.00111238
-0.00112025
-0.00112843
-0.00113693
-0.00114577
-0.00115494
-0.00116445
-0.00117432
-0.00118454
-0.00119512
-0.00120608
-0.00121743
-0.00122917
-0.00124131
-0.00125386
-0.00126684
-0.00128025
-0.00129411
-0.00130843
-0.00132323
-0.00133852
-0.00135431
-0.00137062
-0.00138747
-0.00140487
-0.00142284
-0.0014414
-0.00146058
-0.00148039
-0.00150085
-0.001522
-0.00154385
-0.00156644
-0.00158978
-0.00161391
-0.00163887
-0.00166468
-0.00169138
-0.00171902
-0.00174762
-0.00177724
-0.00180791
-0.00183969
-0.00187264
-0.0019068
-0.00194225
-0.00197904
-0.00201724
-0.00205693
-0.0020982
-0.00214114
-0.00218583
-0.0022324
-0.00228095
-0.00233161
-0.00238452
-0.00243984
-0.00249772
-0.00255835
-0.00262193
-0.00268868
-0.00275884
-0.00283267
-0.00291046
-0.00299252
-0.00105716
-0.00105947
-0.00106015
-0.00105998
-0.00105907
-0.00105749
-0.00105538
-0.00105289
-0.00105015
-0.00104725
-0.00104427
-0.00104126
-0.00103827
-0.00103533
-0.00103248
-0.00102975
-0.00102716
-0.00102473
-0.00102248
-0.00102043
-0.00101859
-0.00101696
-0.00101557
-0.00101441
-0.0010135
-0.00101283
-0.00101242
-0.00101226
-0.00101236
-0.00101272
-0.00101334
-0.00101422
-0.00101537
-0.00101678
-0.00101846
-0.0010204
-0.00102261
-0.00102508
-0.00102782
-0.00103083
-0.00103411
-0.00103766
-0.00104148
-0.00104557
-0.00104994
-0.00105459
-0.00105951
-0.00106471
-0.0010702
-0.00107598
-0.00108205
-0.00108841
-0.00109506
-0.00110202
-0.00110928
-0.00111686
-0.00112475
-0.00113296
-0.0011415
-0.00115037
-0.00115958
-0.00116913
-0.00117904
-0.00118931
-0.00119995
-0.00121097
-0.00122237
-0.00123417
-0.00124638
-0.001259
-0.00127206
-0.00128555
-0.00129949
-0.0013139
-0.00132879
-0.00134418
-0.00136007
-0.00137648
-0.00139344
-0.00141096
-0.00142906
-0.00144775
-0.00146706
-0.00148702
-0.00150763
-0.00152894
-0.00155096
-0.00157372
-0.00159725
-0.00162158
-0.00164674
-0.00167278
-0.00169972
-0.0017276
-0.00175647
-0.00178637
-0.00181734
-0.00184945
-0.00188273
-0.00191726
-0.00195309
-0.00199029
-0.00202894
-0.0020691
-0.00211087
-0.00215434
-0.00219961
-0.00224678
-0.00229597
-0.00234732
-0.00240095
-0.00245702
-0.0025157
-0.00257716
-0.00264161
-0.00270926
-0.00278033
-0.0028551
-0.00293383
-0.00301682
-0.00107124
-0.00107377
-0.00107446
-0.00107417
-0.00107303
-0.00107113
-0.00106864
-0.00106572
-0.00106253
-0.00105916
-0.00105571
-0.00105223
-0.00104877
-0.00104539
-0.00104211
-0.00103896
-0.00103597
-0.00103316
-0.00103056
-0.00102817
-0.00102601
-0.0010241
-0.00102243
-0.00102102
-0.00101987
-0.00101898
-0.00101836
-0.00101802
-0.00101795
-0.00101815
-0.00101862
-0.00101937
-0.00102039
-0.00102169
-0.00102327
-0.00102512
-0.00102724
-0.00102964
-0.00103231
-0.00103526
-0.00103848
-0.00104198
-0.00104576
-0.00104982
-0.00105416
-0.00105878
-0.00106368
-0.00106887
-0.00107435
-0.00108012
-0.00108618
-0.00109254
-0.0010992
-0.00110617
-0.00111345
-0.00112104
-0.00112895
-0.00113718
-0.00114575
-0.00115465
-0.00116389
-0.00117348
-0.00118343
-0.00119374
-0.00120443
-0.00121549
-0.00122695
-0.00123881
-0.00125107
-0.00126376
-0.00127688
-0.00129044
-0.00130446
-0.00131895
-0.00133392
-0.00134939
-0.00136538
-0.00138189
-0.00139895
-0.00141658
-0.00143478
-0.0014536
-0.00147303
-0.00149312
-0.00151387
-0.00153533
-0.0015575
-0.00158043
-0.00160413
-0.00162865
-0.00165401
-0.00168025
-0.00170741
-0.00173553
-0.00176465
-0.00179481
-0.00182607
-0.00185848
-0.00189209
-0.00192696
-0.00196316
-0.00200075
-0.00203981
-0.00208043
-0.00212267
-0.00216665
-0.00221246
-0.0022602
-0.00231
-0.00236199
-0.0024163
-0.00247308
-0.00253251
-0.00259475
-0.00266
-0.00272848
-0.0028004
-0.00287602
-0.00295559
-0.00303942
-0.00108612
-0.0010889
-0.00108959
-0.00108915
-0.00108774
-0.00108546
-0.00108252
-0.00107911
-0.00107539
-0.00107148
-0.00106749
-0.00106348
-0.0010595
-0.00105562
-0.00105185
-0.00104825
-0.00104482
-0.0010416
-0.00103861
-0.00103586
-0.00103337
-0.00103114
-0.00102918
-0.00102749
-0.00102609
-0.00102497
-0.00102414
-0.0010236
-0.00102335
-0.00102338
-0.0010237
-0.00102431
-0.00102521
-0.00102639
-0.00102786
-0.00102961
-0.00103164
-0.00103396
-0.00103656
-0.00103945
-0.00104261
-0.00104607
-0.0010498
-0.00105382
-0.00105812
-0.00106271
-0.00106759
-0.00107276
-0.00107823
-0.00108399
-0.00109004
-0.0010964
-0.00110306
-0.00111004
-0.00111732
-0.00112492
-0.00113285
-0.0011411
-0.00114968
-0.00115861
-0.00116788
-0.0011775
-0.00118748
-0.00119783
-0.00120856
-0.00121967
-0.00123117
-0.00124307
-0.00125539
-0.00126814
-0.00128131
-0.00129494
-0.00130902
-0.00132358
-0.00133863
-0.00135418
-0.00137024
-0.00138684
-0.00140399
-0.00142171
-0.00144002
-0.00145894
-0.00147849
-0.0014987
-0.00151958
-0.00154116
-0.00156348
-0.00158656
-0.00161042
-0.00163511
-0.00166065
-0.00168709
-0.00171445
-0.00174279
-0.00177214
-0.00180255
-0.00183408
-0.00186677
-0.00190068
-0.00193588
-0.00197242
-0.00201039
-0.00204984
-0.00209088
-0.00213357
-0.00217803
-0.00222434
-0.00227263
-0.002323
-0.00237559
-0.00243053
-0.00248798
-0.0025481
-0.00261106
-0.00267706
-0.00274629
-0.00281899
-0.00289538
-0.00297571
-0.00306027
-0.00110194
-0.001105
-0.00110568
-0.00110506
-0.00110331
-0.00110058
-0.00109711
-0.00109311
-0.00108878
-0.00108426
-0.00107965
-0.00107504
-0.00107048
-0.00106603
-0.00106173
-0.00105761
-0.00105371
-0.00105005
-0.00104664
-0.00104349
-0.00104064
-0.00103807
-0.0010358
-0.00103383
-0.00103216
-0.0010308
-0.00102975
-0.001029
-0.00102856
-0.00102842
-0.00102858
-0.00102904
-0.00102981
-0.00103087
-0.00103222
-0.00103388
-0.00103582
-0.00103805
-0.00104058
-0.0010434
-0.0010465
-0.0010499
-0.00105359
-0.00105756
-0.00106183
-0.00106639
-0.00107124
-0.00107639
-0.00108184
-0.00108758
-0.00109363
-0.00109998
-0.00110664
-0.00111361
-0.0011209
-0.00112851
-0.00113644
-0.00114471
-0.00115331
-0.00116225
-0.00117154
-0.00118119
-0.0011912
-0.00120158
-0.00121234
-0.00122348
-0.00123502
-0.00124697
-0.00125933
-0.00127212
-0.00128535
-0.00129903
-0.00131317
-0.00132779
-0.0013429
-0.00135852
-0.00137465
-0.00139133
-0.00140856
-0.00142637
-0.00144477
-0.00146378
-0.00148343
-0.00150374
-0.00152474
-0.00154645
-0.00156889
-0.0015921
-0.00161611
-0.00164096
-0.00166667
-0.00169328
-0.00172083
-0.00174937
-0.00177894
-0.00180958
-0.00184135
-0.00187431
-0.0019085
-0.001944
-0.00198087
-0.00201918
-0.002059
-0.00210043
-0.00214355
-0.00218845
-0.00223524
-0.00228403
-0.00233493
-0.00238808
-0.00244361
-0.00250168
-0.00256244
-0.00262607
-0.00269274
-0.00276267
-0.00283606
-0.00291314
-0.00299416
-0.00307937
-0.00111883
-0.00112222
-0.00112288
-0.00112202
-0.00111987
-0.0011166
-0.0011125
-0.00110782
-0.00110278
-0.00109754
-0.00109223
-0.00108693
-0.00108171
-0.00107663
-0.00107174
-0.00106706
-0.00106263
-0.00105848
-0.00105462
-0.00105106
-0.00104781
-0.00104488
-0.00104228
-0.00104001
-0.00103807
-0.00103645
-0.00103516
-0.0010342
-0.00103356
-0.00103324
-0.00103324
-0.00103356
-0.00103418
-0.00103512
-0.00103636
-0.00103791
-0.00103976
-0.00104191
-0.00104436
-0.0010471
-0.00105015
-0.00105349
-0.00105712
-0.00106105
-0.00106528
-0.00106981
-0.00107463
-0.00107975
-0.00108518
-0.0010909
-0.00109693
-0.00110328
-0.00110993
-0.0011169
-0.00112419
-0.0011318
-0.00113974
-0.00114801
-0.00115662
-0.00116558
-0.00117488
-0.00118455
-0.00119458
-0.00120498
-0.00121577
-0.00122694
-0.00123851
-0.0012505
-0.0012629
-0.00127573
-0.001289
-0.00130272
-0.00131691
-0.00133158
-0.00134674
-0.00136242
-0.00137862
-0.00139536
-0.00141266
-0.00143054
-0.00144901
-0.00146811
-0.00148785
-0.00150826
-0.00152936
-0.00155117
-0.00157373
-0.00159706
-0.00162121
-0.00164619
-0.00167205
-0.00169882
-0.00172654
-0.00175526
-0.00178503
-0.00181588
-0.00184788
-0.00188108
-0.00191553
-0.00195131
-0.00198847
-0.0020271
-0.00206727
-0.00210906
-0.00215257
-0.00219788
-0.00224511
-0.00229437
-0.00234576
-0.00239943
-0.00245551
-0.00251414
-0.00257549
-0.00263972
-0.00270702
-0.00277757
-0.00285159
-0.0029293
-0.00301091
-0.00309669
-0.00113699
-0.00114077
-0.00114137
-0.00114022
-0.00113757
-0.00113365
-0.00112879
-0.00112331
-0.00111744
-0.00111138
-0.00110525
-0.00109917
-0.00109321
-0.00108743
-0.00108187
-0.00107658
-0.00107158
-0.0010669
-0.00106254
-0.00105853
-0.00105487
-0.00105157
-0.00104862
-0.00104603
-0.00104379
-0.00104191
-0.00104038
-0.0010392
-0.00103835
-0.00103785
-0.00103768
-0.00103784
-0.00103833
-0.00103914
-0.00104026
-0.0010417
-0.00104346
-0.00104552
-0.00104789
-0.00105056
-0.00105354
-0.00105682
-0.0010604
-0.00106429
-0.00106847
-0.00107296
-0.00107775
-0.00108284
-0.00108824
-0.00109395
-0.00109996
-0.00110629
-0.00111293
-0.00111989
-0.00112718
-0.00113479
-0.00114273
-0.001151
-0.00115962
-0.00116858
-0.0011779
-0.00118758
-0.00119763
-0.00120805
-0.00121885
-0.00123005
-0.00124164
-0.00125365
-0.00126608
-0.00127894
-0.00129225
-0.00130601
-0.00132024
-0.00133495
-0.00135016
-0.00136588
-0.00138213
-0.00139892
-0.00141628
-0.00143422
-0.00145277
-0.00147194
-0.00149175
-0.00151224
-0.00153343
-0.00155533
-0.00157799
-0.00160143
-0.00162569
-0.00165079
-0.00167678
-0.0017037
-0.00173158
-0.00176046
-0.0017904
-0.00182145
-0.00185365
-0.00188707
-0.00192176
-0.00195779
-0.00199523
-0.00203415
-0.00207463
-0.00211675
-0.00216062
-0.00220631
-0.00225394
-0.00230362
-0.00235547
-0.00240961
-0.00246619
-0.00252534
-0.00258722
-0.002652
-0.00271986
-0.00279098
-0.00286556
-0.00294381
-0.00302596
-0.00311223
-0.00115665
-0.00116086
-0.00116139
-0.00115986
-0.00115659
-0.00115188
-0.00114612
-0.00113967
-0.00113283
-0.00112581
-0.00111876
-0.00111179
-0.00110499
-0.00109842
-0.00109213
-0.00108616
-0.00108053
-0.00107528
-0.0010704
-0.00106591
-0.00106181
-0.0010581
-0.00105479
-0.00105186
-0.00104933
-0.00104717
-0.00104539
-0.00104398
-0.00104293
-0.00104223
-0.00104189
-0.00104189
-0.00104224
-0.00104291
-0.00104392
-0.00104525
-0.00104691
-0.00104888
-0.00105117
-0.00105377
-0.00105668
-0.0010599
-0.00106343
-0.00106726
-0.0010714
-0.00107585
-0.00108061
-0.00108567
-0.00109104
-0.00109672
-0.00110272
-0.00110903
-0.00111565
-0.0011226
-0.00112988
-0.00113748
-0.00114541
-0.00115369
-0.00116231
-0.00117127
-0.0011806
-0.00119028
-0.00120034
-0.00121077
-0.00122159
-0.0012328
-0.00124441
-0.00125644
-0.00126889
-0.00128177
-0.0012951
-0.00130889
-0.00132315
-0.0013379
-0.00135314
-0.0013689
-0.00138519
-0.00140203
-0.00141943
-0.00143743
-0.00145603
-0.00147525
-0.00149513
-0.00151569
-0.00153695
-0.00155893
-0.00158167
-0.00160521
-0.00162956
-0.00165477
-0.00168088
-0.00170792
-0.00173593
-0.00176496
-0.00179505
-0.00182627
-0.00185865
-0.00189226
-0.00192717
-0.00196342
-0.00200111
-0.00204029
-0.00208105
-0.00212348
-0.00216767
-0.00221371
-0.0022617
-0.00231177
-0.00236403
-0.0024186
-0.00247562
-0.00253524
-0.0025976
-0.00266288
-0.00273123
-0.00280286
-0.00287794
-0.00295668
-0.00303929
-0.00312599
-0.00117808
-0.00118281
-0.00118321
-0.00118119
-0.00117715
-0.00117147
-0.00116461
-0.00115702
-0.00114904
-0.00114089
-0.00113277
-0.00112479
-0.00111704
-0.00110959
-0.0011025
-0.00109578
-0.00108948
-0.0010836
-0.00107816
-0.00107316
-0.00106859
-0.00106447
-0.00106077
-0.0010575
-0.00105465
-0.00105221
-0.00105017
-0.00104853
-0.00104726
-0.00104638
-0.00104586
-0.0010457
-0.0010459
-0.00104645
-0.00104733
-0.00104856
-0.00105011
-0.00105199
-0.0010542
-0.00105672
-0.00105956
-0.00106272
-0.00106619
-0.00106998
-0.00107407
-0.00107848
-0.00108319
-0.00108822
-0.00109356
-0.00109922
-0.00110519
-0.00111148
-0.00111809
-0.00112502
-0.00113228
-0.00113987
-0.0011478
-0.00115607
-0.00116468
-0.00117365
-0.00118297
-0.00119266
-0.00120271
-0.00121315
-0.00122398
-0.0012352
-0.00124682
-0.00125886
-0.00127132
-0.00128422
-0.00129757
-0.00131138
-0.00132566
-0.00134043
-0.00135569
-0.00137148
-0.0013878
-0.00140467
-0.00142212
-0.00144015
-0.00145879
-0.00147806
-0.00149799
-0.0015186
-0.00153992
-0.00156196
-0.00158478
-0.00160839
-0.00163282
-0.00165812
-0.00168432
-0.00171146
-0.00173959
-0.00176874
-0.00179897
-0.00183033
-0.00186288
-0.00189666
-0.00193175
-0.00196821
-0.00200611
-0.00204552
-0.00208654
-0.00212923
-0.00217371
-0.00222005
-0.00226838
-0.00231879
-0.00237141
-0.00242637
-0.00248379
-0.00254382
-0.00260662
-0.00267233
-0.00274113
-0.0028132
-0.00288872
-0.00296788
-0.00305089
-0.00313796
-0.00120164
-0.00120696
-0.00120718
-0.00120452
-0.00119951
-0.00119261
-0.00118442
-0.00117546
-0.00116612
-0.00115667
-0.00114732
-0.00113818
-0.00112937
-0.00112095
-0.00111295
-0.00110543
-0.00109839
-0.00109185
-0.00108581
-0.00108026
-0.00107521
-0.00107064
-0.00106655
-0.00106293
-0.00105975
-0.00105702
-0.00105472
-0.00105284
-0.00105136
-0.00105028
-0.00104958
-0.00104926
-0.00104932
-0.00104973
-0.00105049
-0.00105161
-0.00105306
-0.00105485
-0.00105697
-0.00105942
-0.00106219
-0.00106529
-0.0010687
-0.00107243
-0.00107648
-0.00108084
-0.00108551
-0.00109051
-0.00109581
-0.00110144
-0.00110738
-0.00111365
-0.00112024
-0.00112715
-0.00113439
-0.00114197
-0.00114989
-0.00115814
-0.00116675
-0.0011757
-0.00118502
-0.0011947
-0.00120476
-0.0012152
-0.00122602
-0.00123724
-0.00124887
-0.00126091
-0.00127338
-0.00128629
-0.00129965
-0.00131346
-0.00132776
-0.00134254
-0.00135782
-0.00137363
-0.00138997
-0.00140686
-0.00142433
-0.00144238
-0.00146106
-0.00148036
-0.00150033
-0.00152098
-0.00154233
-0.00156443
-0.0015873
-0.00161097
-0.00163547
-0.00166084
-0.00168711
-0.00171434
-0.00174256
-0.00177182
-0.00180216
-0.00183364
-0.00186631
-0.00190024
-0.00193549
-0.00197212
-0.00201021
-0.00204982
-0.00209106
-0.00213399
-0.00217871
-0.00222533
-0.00227394
-0.00232466
-0.0023776
-0.00243289
-0.00249067
-0.00255107
-0.00261424
-0.00268034
-0.00274953
-0.00282199
-0.00289789
-0.00297742
-0.00306077
-0.00314815
-0.00122776
-0.00123379
-0.00123373
-0.00123023
-0.00122396
-0.00121555
-0.00120573
-0.00119512
-0.00118416
-0.00117319
-0.00116241
-0.00115197
-0.00114196
-0.00113244
-0.00112347
-0.00111507
-0.00110723
-0.00109998
-0.0010933
-0.00108719
-0.00108163
-0.00107661
-0.00107211
-0.00106812
-0.00106461
-0.00106158
-0.00105902
-0.00105689
-0.0010552
-0.00105392
-0.00105305
-0.00105257
-0.00105247
-0.00105275
-0.0010534
-0.0010544
-0.00105575
-0.00105745
-0.00105949
-0.00106186
-0.00106456
-0.00106759
-0.00107094
-0.00107462
-0.00107862
-0.00108293
-0.00108757
-0.00109252
-0.00109779
-0.00110339
-0.0011093
-0.00111554
-0.0011221
-0.00112899
-0.00113622
-0.00114377
-0.00115167
-0.00115991
-0.0011685
-0.00117745
-0.00118675
-0.00119643
-0.00120647
-0.0012169
-0.00122772
-0.00123894
-0.00125056
-0.0012626
-0.00127507
-0.00128798
-0.00130133
-0.00131515
-0.00132945
-0.00134423
-0.00135952
-0.00137533
-0.00139168
-0.00140859
-0.00142607
-0.00144414
-0.00146283
-0.00148215
-0.00150214
-0.00152281
-0.0015442
-0.00156633
-0.00158924
-0.00161294
-0.00163749
-0.00166291
-0.00168925
-0.00171654
-0.00174483
-0.00177417
-0.0018046
-0.00183618
-0.00186896
-0.00190301
-0.00193839
-0.00197516
-0.0020134
-0.00205319
-0.00209461
-0.00213774
-0.00218268
-0.00222952
-0.00227838
-0.00232936
-0.00238258
-0.00243817
-0.00249625
-0.00255696
-0.00262046
-0.0026869
-0.00275643
-0.00282922
-0.00290544
-0.00298529
-0.00306893
-0.00315657
-0.00125703
-0.00126389
-0.00126341
-0.00125876
-0.00125087
-0.00124056
-0.00122872
-0.0012161
-0.00120323
-0.00119047
-0.00117805
-0.00116612
-0.00115477
-0.00114405
-0.00113401
-0.00112465
-0.00111597
-0.00110796
-0.00110062
-0.00109391
-0.00108782
-0.00108233
-0.00107741
-0.00107304
-0.00106921
-0.00106588
-0.00106304
-0.00106068
-0.00105877
-0.00105729
-0.00105624
-0.0010556
-0.00105536
-0.00105551
-0.00105603
-0.00105693
-0.00105818
-0.00105979
-0.00106174
-0.00106403
-0.00106667
-0.00106963
-0.00107293
-0.00107655
-0.00108049
-0.00108476
-0.00108935
-0.00109427
-0.0010995
-0.00110506
-0.00111094
-0.00111715
-0.00112368
-0.00113055
-0.00113775
-0.00114528
-0.00115316
-0.00116138
-0.00116995
-0.00117888
-0.00118817
-0.00119783
-0.00120786
-0.00121828
-0.00122908
-0.00124029
-0.0012519
-0.00126393
-0.00127639
-0.00128928
-0.00130263
-0.00131645
-0.00133074
-0.00134552
-0.0013608
-0.00137661
-0.00139296
-0.00140986
-0.00142734
-0.00144541
-0.00146411
-0.00148344
-0.00150343
-0.00152412
-0.00154552
-0.00156767
-0.00159059
-0.00161432
-0.0016389
-0.00166435
-0.00169073
-0.00171806
-0.0017464
-0.0017758
-0.00180629
-0.00183795
-0.00187081
-0.00190495
-0.00194043
-0.00197732
-0.00201568
-0.00205561
-0.00209717
-0.00214047
-0.00218558
-0.00223262
-0.00228168
-0.00233288
-0.00238633
-0.00244217
-0.00250051
-0.00256149
-0.00262527
-0.00269198
-0.0027618
-0.00283487
-0.00291137
-0.00299148
-0.00307536
-0.00316321
-0.00129018
-0.00129803
-0.0012969
-0.00129071
-0.0012807
-0.00126794
-0.00125359
-0.00123854
-0.00122339
-0.00120853
-0.00119422
-0.00118061
-0.00116776
-0.00115572
-0.00114451
-0.00113413
-0.00112455
-0.00111575
-0.0011077
-0.00110038
-0.00109375
-0.00108778
-0.00108244
-0.00107769
-0.00107352
-0.00106989
-0.00106679
-0.00106418
-0.00106205
-0.00106039
-0.00105916
-0.00105837
-0.00105798
-0.001058
-0.0010584
-0.00105919
-0.00106034
-0.00106186
-0.00106373
-0.00106595
-0.00106851
-0.00107141
-0.00107464
-0.00107821
-0.0010821
-0.00108632
-0.00109087
-0.00109574
-0.00110094
-0.00110646
-0.00111231
-0.00111848
-0.00112499
-0.00113182
-0.00113899
-0.0011465
-0.00115435
-0.00116255
-0.0011711
-0.00118
-0.00118927
-0.00119891
-0.00120892
-0.00121932
-0.0012301
-0.00124129
-0.00125288
-0.0012649
-0.00127734
-0.00129022
-0.00130355
-0.00131735
-0.00133162
-0.00134639
-0.00136166
-0.00137745
-0.00139379
-0.00141068
-0.00142815
-0.00144621
-0.0014649
-0.00148422
-0.00150421
-0.00152489
-0.00154629
-0.00156843
-0.00159136
-0.0016151
-0.00163969
-0.00166516
-0.00169155
-0.00171891
-0.00174728
-0.0017767
-0.00180724
-0.00183894
-0.00187186
-0.00190606
-0.00194161
-0.00197858
-0.00201704
-0.00205707
-0.00209875
-0.00214217
-0.00218742
-0.00223461
-0.00228383
-0.00233521
-0.00238885
-0.00244488
-0.00250344
-0.00256464
-0.00262865
-0.00269559
-0.00276564
-0.00283895
-0.00291568
-0.002996
-0.00308008
-0.0031681
-0.00132824
-0.00133724
-0.00133513
-0.00132681
-0.00131397
-0.00129807
-0.00128057
-0.00126253
-0.00124465
-0.00122735
-0.00121088
-0.00119536
-0.00118085
-0.00116737
-0.00115491
-0.00114343
-0.0011329
-0.00112328
-0.00111451
-0.00110656
-0.00109938
-0.00109292
-0.00108715
-0.00108203
-0.00107752
-0.0010736
-0.00107023
-0.00106739
-0.00106505
-0.00106319
-0.0010618
-0.00106085
-0.00106032
-0.00106021
-0.0010605
-0.00106118
-0.00106224
-0.00106367
-0.00106545
-0.0010676
-0.00107009
-0.00107292
-0.0010761
-0.00107961
-0.00108345
-0.00108762
-0.00109212
-0.00109695
-0.0011021
-0.00110759
-0.0011134
-0.00111954
-0.00112601
-0.00113281
-0.00113995
-0.00114743
-0.00115525
-0.00116342
-0.00117194
-0.00118082
-0.00119006
-0.00119967
-0.00120966
-0.00122003
-0.00123079
-0.00124195
-0.00125352
-0.00126551
-0.00127793
-0.00129078
-0.00130409
-0.00131786
-0.00133211
-0.00134685
-0.0013621
-0.00137787
-0.00139418
-0.00141105
-0.00142849
-0.00144654
-0.0014652
-0.0014845
-0.00150447
-0.00152513
-0.00154651
-0.00156864
-0.00159156
-0.00161528
-0.00163986
-0.00166532
-0.00169171
-0.00171907
-0.00174745
-0.00177688
-0.00180743
-0.00183915
-0.0018721
-0.00190634
-0.00194193
-0.00197895
-0.00201747
-0.00205756
-0.00209932
-0.00214283
-0.00218818
-0.00223548
-0.00228483
-0.00233634
-0.00239013
-0.00244631
-0.00250503
-0.0025664
-0.00263059
-0.00269772
-0.00276795
-0.00284144
-0.00291835
-0.00299884
-0.00308308
-0.00317123
-0.00137256
-0.0013829
-0.00137928
-0.00136795
-0.00135129
-0.00133131
-0.00130983
-0.00128814
-0.001267
-0.00124686
-0.00122792
-0.00121028
-0.00119395
-0.00117891
-0.00116511
-0.00115248
-0.00114097
-0.00113049
-0.00112099
-0.0011124
-0.00110466
-0.00109772
-0.00109153
-0.00108603
-0.0010812
-0.00107698
-0.00107336
-0.00107029
-0.00106774
-0.0010657
-0.00106414
-0.00106304
-0.00106238
-0.00106214
-0.00106232
-0.0010629
-0.00106386
-0.0010652
-0.00106691
-0.00106898
-0.0010714
-0.00107417
-0.00107729
-0.00108074
-0.00108453
-0.00108865
-0.00109311
-0.00109789
-0.001103
-0.00110844
-0.00111422
-0.00112032
-0.00112675
-0.00113352
-0.00114062
-0.00114807
-0.00115586
-0.001164
-0.00117248
-0.00118133
-0.00119054
-0.00120012
-0.00121008
-0.00122042
-0.00123114
-0.00124227
-0.00125381
-0.00126577
-0.00127815
-0.00129098
-0.00130425
-0.00131799
-0.00133221
-0.00134691
-0.00136213
-0.00137786
-0.00139414
-0.00141097
-0.00142838
-0.00144639
-0.00146501
-0.00148428
-0.00150422
-0.00152485
-0.00154619
-0.00156829
-0.00159118
-0.00161487
-0.00163942
-0.00166486
-0.00169122
-0.00171856
-0.00174692
-0.00177634
-0.00180688
-0.00183859
-0.00187154
-0.00190578
-0.00194139
-0.00197842
-0.00201697
-0.0020571
-0.0020989
-0.00214246
-0.00218787
-0.00223524
-0.00228466
-0.00233626
-0.00239015
-0.00244644
-0.00250527
-0.00256677
-0.00263109
-0.00269835
-0.00276873
-0.00284235
-0.0029194
-0.00300001
-0.00308437
-0.00317262
-0.0014251
-0.001437
-0.00143108
-0.00141547
-0.00139355
-0.00136814
-0.00134159
-0.0013154
-0.00129038
-0.00126694
-0.00124521
-0.00122522
-0.00120692
-0.00119021
-0.001175
-0.00116118
-0.00114865
-0.00113731
-0.00112707
-0.00111784
-0.00110956
-0.00110214
-0.00109553
-0.00108967
-0.00108452
-0.00108002
-0.00107615
-0.00107286
-0.00107011
-0.0010679
-0.00106618
-0.00106493
-0.00106414
-0.00106379
-0.00106386
-0.00106434
-0.00106521
-0.00106647
-0.0010681
-0.0010701
-0.00107245
-0.00107516
-0.00107822
-0.00108161
-0.00108535
-0.00108942
-0.00109383
-0.00109856
-0.00110363
-0.00110903
-0.00111476
-0.00112082
-0.00112722
-0.00113395
-0.00114102
-0.00114843
-0.00115618
-0.00116428
-0.00117273
-0.00118154
-0.00119071
-0.00120026
-0.00121018
-0.00122048
-0.00123117
-0.00124226
-0.00125376
-0.00126568
-0.00127802
-0.00129081
-0.00130404
-0.00131774
-0.00133191
-0.00134657
-0.00136174
-0.00137743
-0.00139366
-0.00141045
-0.00142781
-0.00144577
-0.00146435
-0.00148357
-0.00150346
-0.00152404
-0.00154534
-0.00156739
-0.00159022
-0.00161387
-0.00163837
-0.00166376
-0.00169008
-0.00171738
-0.00174569
-0.00177507
-0.00180558
-0.00183726
-0.00187018
-0.0019044
-0.00193998
-0.00197701
-0.00201554
-0.00205567
-0.00209747
-0.00214105
-0.00218648
-0.00223388
-0.00228334
-0.00233498
-0.00238892
-0.00244528
-0.00250418
-0.00256576
-0.00263015
-0.00269751
-0.00276797
-0.00284169
-0.00291882
-0.00299953
-0.00308396
-0.00317227
-0.00148857
-0.00150209
-0.00149237
-0.00147037
-0.00144116
-0.00140864
-0.00137573
-0.0013441
-0.00131455
-0.00128735
-0.00126253
-0.00123999
-0.00121958
-0.00120112
-0.00118446
-0.00116942
-0.00115587
-0.00114366
-0.00113269
-0.00112284
-0.00111401
-0.00110614
-0.00109913
-0.00109292
-0.00108746
-0.0010827
-0.00107859
-0.00107509
-0.00107216
-0.00106977
-0.0010679
-0.00106652
-0.00106561
-0.00106514
-0.00106511
-0.0010655
-0.00106628
-0.00106746
-0.00106902
-0.00107094
-0.00107323
-0.00107588
-0.00107888
-0.00108222
-0.0010859
-0.00108993
-0.00109428
-0.00109897
-0.001104
-0.00110935
-0.00111504
-0.00112106
-0.00112741
-0.0011341
-0.00114113
-0.0011485
-0.00115621
-0.00116427
-0.00117268
-0.00118145
-0.00119058
-0.00120008
-0.00120996
-0.00122022
-0.00123087
-0.00124191
-0.00125337
-0.00126524
-0.00127754
-0.00129027
-0.00130346
-0.0013171
-0.00133123
-0.00134584
-0.00136095
-0.00137659
-0.00139276
-0.00140949
-0.0014268
-0.0014447
-0.00146322
-0.00148237
-0.0015022
-0.00152271
-0.00154395
-0.00156594
-0.0015887
-0.00161229
-0.00163672
-0.00166204
-0.0016883
-0.00171553
-0.00174378
-0.0017731
-0.00180355
-0.00183517
-0.00186804
-0.0019022
-0.00193774
-0.00197471
-0.00201321
-0.0020533
-0.00209507
-0.00213862
-0.00218403
-0.00223142
-0.00228088
-0.00233252
-0.00238647
-0.00244284
-0.00250177
-0.00256338
-0.00262781
-0.00269521
-0.00276571
-0.00283948
-0.00291667
-0.00299741
-0.00308188
-0.00317023
-0.00156742
-0.00158306
-0.00156801
-0.00153661
-0.00149661
-0.00145404
-0.00141269
-0.00137428
-0.00133933
-0.00130785
-0.00127962
-0.00125434
-0.00123171
-0.00121146
-0.00119332
-0.00117707
-0.00116251
-0.00114946
-0.00113778
-0.00112732
-0.00111799
-0.00110967
-0.00110228
-0.00109575
-0.00109001
-0.00108499
-0.00108066
-0.00107696
-0.00107386
-0.00107132
-0.00106931
-0.0010678
-0.00106677
-0.0010662
-0.00106608
-0.00106637
-0.00106707
-0.00106817
-0.00106966
-0.00107152
-0.00107375
-0.00107633
-0.00107927
-0.00108256
-0.00108619
-0.00109016
-0.00109447
-0.00109912
-0.00110409
-0.0011094
-0.00111504
-0.00112102
-0.00112733
-0.00113397
-0.00114096
-0.00114828
-0.00115595
-0.00116396
-0.00117233
-0.00118105
-0.00119014
-0.00119959
-0.00120942
-0.00121963
-0.00123023
-0.00124123
-0.00125263
-0.00126445
-0.00127669
-0.00128937
-0.0013025
-0.00131609
-0.00133015
-0.0013447
-0.00135976
-0.00137533
-0.00139144
-0.0014081
-0.00142533
-0.00144316
-0.00146161
-0.00148069
-0.00150044
-0.00152088
-0.00154204
-0.00156394
-0.00158663
-0.00161013
-0.00163448
-0.00165972
-0.0016859
-0.00171304
-0.00174121
-0.00177045
-0.00180081
-0.00183235
-0.00186513
-0.00189922
-0.00193468
-0.00197158
-0.00201
-0.00205002
-0.00209173
-0.00213522
-0.00218058
-0.00222791
-0.00227733
-0.00232894
-0.00238285
-0.0024392
-0.0024981
-0.0025597
-0.00262412
-0.00269152
-0.00276203
-0.0028358
-0.00291299
-0.00299375
-0.00307823
-0.00316658
-0.00166656
-0.00168413
-0.00165741
-0.00161044
-0.00155584
-0.0015011
-0.00145018
-0.00140434
-0.00136364
-0.00132767
-0.00129591
-0.00126785
-0.00124301
-0.00122098
-0.0012014
-0.00118398
-0.00116845
-0.00115461
-0.00114225
-0.00113124
-0.00112143
-0.0011127
-0.00110497
-0.00109813
-0.00109213
-0.00108688
-0.00108235
-0.00107847
-0.00107521
-0.00107252
-0.00107038
-0.00106876
-0.00106763
-0.00106696
-0.00106674
-0.00106695
-0.00106758
-0.00106861
-0.00107002
-0.00107182
-0.00107398
-0.00107651
-0.0010794
-0.00108263
-0.00108621
-0.00109013
-0.00109438
-0.00109898
-0.0011039
-0.00110916
-0.00111476
-0.00112068
-0.00112695
-0.00113354
-0.00114048
-0.00114775
-0.00115537
-0.00116334
-0.00117166
-0.00118033
-0.00118936
-0.00119877
-0.00120854
-0.0012187
-0.00122924
-0.00124018
-0.00125152
-0.00126328
-0.00127547
-0.00128808
-0.00130115
-0.00131467
-0.00132867
-0.00134315
-0.00135813
-0.00137363
-0.00138966
-0.00140625
-0.0014234
-0.00144115
-0.00145952
-0.00147852
-0.00149818
-0.00151853
-0.0015396
-0.00156141
-0.00158401
-0.00160741
-0.00163167
-0.00165681
-0.00168289
-0.00170993
-0.001738
-0.00176714
-0.0017974
-0.00182884
-0.00186152
-0.0018955
-0.00193086
-0.00196766
-0.00200599
-0.00204592
-0.00208753
-0.00213093
-0.00217621
-0.00222346
-0.0022728
-0.00232433
-0.00237818
-0.00243446
-0.00249331
-0.00255486
-0.00261924
-0.00268659
-0.00275707
-0.00283081
-0.00290797
-0.0029887
-0.00307315
-0.00316148
-0.00179466
-0.00182139
-0.00178586
-0.00171585
-0.00163474
-0.00155886
-0.00149292
-0.00143667
-0.0013886
-0.00134731
-0.0013116
-0.00128056
-0.00125344
-0.00122962
-0.00120863
-0.00119008
-0.00117363
-0.00115903
-0.00114606
-0.00113453
-0.00112429
-0.00111519
-0.00110714
-0.00110004
-0.0010938
-0.00108835
-0.00108363
-0.00107959
-0.00107619
-0.00107337
-0.00107112
-0.00106938
-0.00106815
-0.00106739
-0.00106709
-0.00106722
-0.00106777
-0.00106873
-0.00107008
-0.00107181
-0.00107391
-0.00107637
-0.0010792
-0.00108237
-0.00108589
-0.00108976
-0.00109396
-0.0010985
-0.00110337
-0.00110858
-0.00111412
-0.00111999
-0.0011262
-0.00113274
-0.00113962
-0.00114684
-0.0011544
-0.00116231
-0.00117057
-0.00117919
-0.00118816
-0.0011975
-0.00120722
-0.00121731
-0.00122779
-0.00123867
-0.00124995
-0.00126164
-0.00127376
-0.0012863
-0.0012993
-0.00131275
-0.00132667
-0.00134107
-0.00135598
-0.0013714
-0.00138735
-0.00140385
-0.00142093
-0.00143859
-0.00145686
-0.00147577
-0.00149534
-0.0015156
-0.00153657
-0.00155829
-0.00158078
-0.00160409
-0.00162824
-0.00165328
-0.00167925
-0.00170618
-0.00173414
-0.00176317
-0.00179332
-0.00182465
-0.00185722
-0.00189109
-0.00192634
-0.00196303
-0.00200124
-0.00204106
-0.00208257
-0.00212586
-0.00217104
-0.00221819
-0.00226743
-0.00231887
-0.00237263
-0.00242883
-0.00248759
-0.00254906
-0.00261337
-0.00268066
-0.00275107
-0.00282475
-0.00290186
-0.00298254
-0.00306695
-0.00315522
-0.00201899
-0.0020151
-0.00191462
-0.00179198
-0.00168435
-0.00159438
-0.00152032
-0.00145842
-0.00140611
-0.0013615
-0.0013232
-0.00129011
-0.00126136
-0.00123624
-0.0012142
-0.0011948
-0.00117765
-0.00116248
-0.00114902
-0.00113708
-0.00112649
-0.0011171
-0.00110879
-0.00110146
-0.00109502
-0.00108939
-0.00108451
-0.00108033
-0.00107679
-0.00107385
-0.00107148
-0.00106964
-0.0010683
-0.00106745
-0.00106705
-0.00106709
-0.00106755
-0.00106843
-0.00106969
-0.00107134
-0.00107337
-0.00107576
-0.0010785
-0.0010816
-0.00108505
-0.00108884
-0.00109297
-0.00109744
-0.00110224
-0.00110738
-0.00111285
-0.00111865
-0.00112479
-0.00113126
-0.00113807
-0.00114522
-0.00115271
-0.00116055
-0.00116874
-0.00117728
-0.00118619
-0.00119546
-0.0012051
-0.00121512
-0.00122553
-0.00123633
-0.00124754
-0.00125915
-0.00127119
-0.00128366
-0.00129658
-0.00130995
-0.00132379
-0.00133812
-0.00135294
-0.00136828
-0.00138415
-0.00140056
-0.00141755
-0.00143513
-0.00145331
-0.00147213
-0.00149161
-0.00151177
-0.00153265
-0.00155427
-0.00157667
-0.00159988
-0.00162393
-0.00164887
-0.00167473
-0.00170157
-0.00172942
-0.00175834
-0.00178839
-0.00181961
-0.00185207
-0.00188584
-0.00192098
-0.00195757
-0.00199568
-0.00203539
-0.0020768
-0.00211999
-0.00216506
-0.00221211
-0.00226126
-0.00231261
-0.00236628
-0.00242239
-0.00248107
-0.00254246
-0.0026067
-0.00267391
-0.00274426
-0.00281788
-0.00289493
-0.00297556
-0.00305991
-0.00314813
-0.00194984
-0.0023077
-0.00221412
-0.002037
-0.00184347
-0.00169915
-0.00159132
-0.00150831
-0.001442
-0.00138787
-0.00134295
-0.00130518
-0.00127305
-0.00124543
-0.00122151
-0.00120065
-0.00118237
-0.00116629
-0.0011521
-0.00113956
-0.00112846
-0.00111864
-0.00110996
-0.0011023
-0.00109557
-0.00108969
-0.00108458
-0.00108018
-0.00107643
-0.00107331
-0.00107076
-0.00106875
-0.00106726
-0.00106625
-0.00106571
-0.00106561
-0.00106593
-0.00106667
-0.00106781
-0.00106933
-0.00107123
-0.0010735
-0.00107613
-0.00107912
-0.00108246
-0.00108614
-0.00109016
-0.00109452
-0.00109922
-0.00110425
-0.00110963
-0.00111533
-0.00112137
-0.00112775
-0.00113447
-0.00114153
-0.00114894
-0.00115669
-0.00116479
-0.00117325
-0.00118208
-0.00119127
-0.00120083
-0.00121077
-0.0012211
-0.00123182
-0.00124295
-0.00125449
-0.00126646
-0.00127885
-0.00129169
-0.00130499
-0.00131876
-0.00133301
-0.00134776
-0.00136303
-0.00137882
-0.00139517
-0.00141208
-0.00142959
-0.0014477
-0.00146645
-0.00148585
-0.00150595
-0.00152675
-0.0015483
-0.00157062
-0.00159375
-0.00161773
-0.0016426
-0.00166839
-0.00169515
-0.00172293
-0.00175178
-0.00178175
-0.0018129
-0.00184529
-0.00187899
-0.00191406
-0.00195057
-0.00198861
-0.00202826
-0.0020696
-0.00211273
-0.00215774
-0.00220473
-0.00225382
-0.00230511
-0.00235873
-0.00241479
-0.00247343
-0.00253477
-0.00259897
-0.00266615
-0.00273646
-0.00281005
-0.00288708
-0.00296767
-0.003052
-0.0031402
-0.00330053
-0.00301764
-0.00229452
-0.00185804
-0.00166731
-0.00156006
-0.0014865
-0.0014302
-0.00138421
-0.00134491
-0.00131064
-0.00128051
-0.00125391
-0.00123035
-0.00120939
-0.0011907
-0.001174
-0.00115906
-0.00114568
-0.00113369
-0.00112296
-0.00111336
-0.00110479
-0.00109716
-0.00109039
-0.00108441
-0.00107918
-0.00107463
-0.00107072
-0.00106742
-0.00106469
-0.00106249
-0.00106081
-0.00105961
-0.00105889
-0.00105861
-0.00105876
-0.00105933
-0.00106031
-0.00106168
-0.00106344
-0.00106558
-0.00106808
-0.00107095
-0.00107417
-0.00107774
-0.00108166
-0.00108593
-0.00109054
-0.00109549
-0.00110078
-0.00110641
-0.00111238
-0.00111869
-0.00112535
-0.00113235
-0.0011397
-0.0011474
-0.00115545
-0.00116387
-0.00117265
-0.0011818
-0.00119133
-0.00120123
-0.00121153
-0.00122223
-0.00123333
-0.00124484
-0.00125678
-0.00126916
-0.00128198
-0.00129526
-0.00130901
-0.00132325
-0.00133798
-0.00135324
-0.00136902
-0.00138536
-0.00140226
-0.00141975
-0.00143786
-0.0014566
-0.001476
-0.00149608
-0.00151688
-0.00153843
-0.00156075
-0.00158388
-0.00160785
-0.00163272
-0.00165851
-0.00168527
-0.00171305
-0.0017419
-0.00177187
-0.00180303
-0.00183542
-0.00186912
-0.0019042
-0.00194073
-0.00197878
-0.00201844
-0.0020598
-0.00210294
-0.00214797
-0.00219498
-0.00224409
-0.00229541
-0.00234906
-0.00240515
-0.00246383
-0.00252521
-0.00258945
-0.00265666
-0.00272703
-0.00280066
-0.00287774
-0.00295838
-0.00304276
-0.003131
-0.000813823
-0.00394883
-0.0031144
-0.00257332
-0.00217009
-0.00199078
-0.00184558
-0.00173265
-0.00163564
-0.00155346
-0.00148435
-0.00142602
-0.00137634
-0.00133358
-0.00129648
-0.0012641
-0.00123572
-0.00121078
-0.00118878
-0.00116934
-0.00115214
-0.0011369
-0.0011234
-0.00111144
-0.00110087
-0.00109155
-0.00108335
-0.00107618
-0.00106996
-0.00106459
-0.00106003
-0.00105621
-0.00105307
-0.00105059
-0.00104871
-0.0010474
-0.00104664
-0.0010464
-0.00104666
-0.00104738
-0.00104857
-0.00105019
-0.00105225
-0.00105471
-0.00105758
-0.00106085
-0.0010645
-0.00106853
-0.00107294
-0.00107772
-0.00108286
-0.00108838
-0.00109425
-0.00110049
-0.00110708
-0.00111404
-0.00112137
-0.00112905
-0.00113711
-0.00114554
-0.00115434
-0.00116352
-0.00117309
-0.00118304
-0.0011934
-0.00120415
-0.00121532
-0.00122691
-0.00123893
-0.00125139
-0.0012643
-0.00127766
-0.00129151
-0.00130584
-0.00132068
-0.00133603
-0.00135192
-0.00136835
-0.00138536
-0.00140297
-0.00142118
-0.00144003
-0.00145954
-0.00147974
-0.00150065
-0.00152231
-0.00154474
-0.00156798
-0.00159208
-0.00161706
-0.00164297
-0.00166984
-0.00169775
-0.00172671
-0.00175681
-0.00178808
-0.0018206
-0.00185442
-0.00188963
-0.00192627
-0.00196446
-0.00200424
-0.00204573
-0.002089
-0.00213417
-0.00218131
-0.00223056
-0.00228201
-0.00233581
-0.00239203
-0.00245086
-0.00251238
-0.00257677
-0.00264413
-0.00271465
-0.00278842
-0.00286565
-0.00294642
-0.00303097
-0.00311933
-0.0116624
-0.00451806
-0.00177871
-0.00122552
-0.00109996
-0.00101582
-0.000937491
-0.000881541
-0.000851158
-0.000837821
-0.00083292
-0.000831643
-0.000832068
-0.000833505
-0.000835599
-0.000838078
-0.000840747
-0.00084349
-0.000846259
-0.000849042
-0.00085184
-0.000854665
-0.000857527
-0.000860441
-0.000863421
-0.00086648
-0.000869632
-0.00087289
-0.000876264
-0.000879765
-0.000883403
-0.000887185
-0.00089112
-0.000895214
-0.000899476
-0.000903909
-0.000908521
-0.000913317
-0.000918302
-0.000923481
-0.000928859
-0.000934441
-0.000940231
-0.000946233
-0.000952452
-0.000958894
-0.000965562
-0.000972461
-0.000979597
-0.000986973
-0.000994596
-0.00100247
-0.0010106
-0.001019
-0.00102766
-0.0010366
-0.00104581
-0.00105532
-0.00106512
-0.00107522
-0.00108564
-0.00109637
-0.00110743
-0.00111882
-0.00113056
-0.00114265
-0.00115511
-0.00116794
-0.00118116
-0.00119478
-0.00120881
-0.00122327
-0.00123816
-0.00125351
-0.00126934
-0.00128564
-0.00130246
-0.0013198
-0.00133769
-0.00135614
-0.00137518
-0.00139483
-0.00141512
-0.00143607
-0.00145773
-0.0014801
-0.00150324
-0.00152717
-0.00155193
-0.00157756
-0.0016041
-0.0016316
-0.00166011
-0.00168966
-0.00172034
-0.00175218
-0.00178526
-0.00181962
-0.00185536
-0.00189252
-0.00193122
-0.00197151
-0.00201349
-0.00205725
-0.00210289
-0.0021505
-0.00220022
-0.00225212
-0.00230637
-0.00236303
-0.0024223
-0.00248424
-0.00254905
-0.00261681
-0.00268774
-0.0027619
-0.00283953
-0.00292067
-0.00300559
-0.00309431
0.000307077
0.000320449
0.000329499
0.000335885
0.000340494
0.000344048
0.000346919
0.000349315
0.000351372
0.000353178
0.000354794
0.000356258
0.0003576
0.00035884
0.000359992
0.000361067
0.000362074
0.000363019
0.000363906
0.00036474
0.000365524
0.000366261
0.000366953
0.000367601
0.000368208
0.000368774
0.000369302
0.000369793
0.000370247
0.000370667
0.000371052
0.000371405
0.000371726
0.000372016
0.000372275
0.000372506
0.000372708
0.000372883
0.000373032
0.000373156
0.000373255
0.000373331
0.000373384
0.000373416
0.000373428
0.000373419
0.000373392
0.000373348
0.000373287
0.000373209
0.000373118
0.000373012
0.000372893
0.000372763
0.000372622
0.00037247
0.000372309
0.00037214
0.000371963
0.000371779
0.000371589
0.000371394
0.000371195
0.000370992
0.000370785
0.000370576
0.000370366
0.000370154
0.000369941
0.000369728
0.000369515
0.000369303
0.000369093
0.000368885
0.00036868
0.000368479
0.000368283
0.000368096
0.000367918
0.000367688
0.000302445
0.000314415
0.000323999
0.000331316
0.000336792
0.000341019
0.000344399
0.000347189
0.000349558
0.000351619
0.000353446
0.000355089
0.000356585
0.000357958
0.000359228
0.000360407
0.000361506
0.000362533
0.000363495
0.000364396
0.00036524
0.000366031
0.000366771
0.000367464
0.000368111
0.000368713
0.000369274
0.000369793
0.000370273
0.000370716
0.000371122
0.000371492
0.000371828
0.000372131
0.000372402
0.000372642
0.000372852
0.000373033
0.000373186
0.000373312
0.000373412
0.000373488
0.000373541
0.00037357
0.000373578
0.000373566
0.000373534
0.000373483
0.000373415
0.00037333
0.000373231
0.000373116
0.000372989
0.000372849
0.000372698
0.000372536
0.000372365
0.000372185
0.000371998
0.000371803
0.000371603
0.000371397
0.000371187
0.000370974
0.000370757
0.000370538
0.000370317
0.000370095
0.000369873
0.000369651
0.000369429
0.000369209
0.00036899
0.000368775
0.000368562
0.000368354
0.000368152
0.00036796
0.000367776
0.00036754
0.000302811
0.000312826
0.000321423
0.000328448
0.000334041
0.000338527
0.000342193
0.000345255
0.000347868
0.000350143
0.000352158
0.000353966
0.000355606
0.000357108
0.000358491
0.000359771
0.000360961
0.00036207
0.000363105
0.000364072
0.000364976
0.000365821
0.000366611
0.000367347
0.000368034
0.000368672
0.000369265
0.000369813
0.000370319
0.000370784
0.00037121
0.000371598
0.000371949
0.000372265
0.000372546
0.000372795
0.000373011
0.000373197
0.000373354
0.000373482
0.000373583
0.000373659
0.000373709
0.000373736
0.00037374
0.000373722
0.000373684
0.000373626
0.000373551
0.000373458
0.000373349
0.000373226
0.000373089
0.000372939
0.000372777
0.000372604
0.000372422
0.000372231
0.000372032
0.000371827
0.000371615
0.000371398
0.000371177
0.000370952
0.000370724
0.000370494
0.000370263
0.00037003
0.000369798
0.000369566
0.000369335
0.000369106
0.000368879
0.000368655
0.000368435
0.00036822
0.000368011
0.000367814
0.000367626
0.000367384
0.000304056
0.000312495
0.000320082
0.000326581
0.000332006
0.000336525
0.00034032
0.000343548
0.000346338
0.000348783
0.000350957
0.00035291
0.000354682
0.000356303
0.000357793
0.000359171
0.000360449
0.000361637
0.000362744
0.000363776
0.000364739
0.000365637
0.000366474
0.000367254
0.00036798
0.000368654
0.000369278
0.000369855
0.000370386
0.000370874
0.000371319
0.000371724
0.000372089
0.000372417
0.000372709
0.000372965
0.000373188
0.000373378
0.000373538
0.000373668
0.000373769
0.000373843
0.00037389
0.000373913
0.000373912
0.000373888
0.000373843
0.000373778
0.000373694
0.000373592
0.000373474
0.00037334
0.000373192
0.000373031
0.000372858
0.000372673
0.000372479
0.000372277
0.000372066
0.000371848
0.000371624
0.000371395
0.000371162
0.000370925
0.000370685
0.000370444
0.000370201
0.000369958
0.000369715
0.000369473
0.000369232
0.000368994
0.000368758
0.000368526
0.000368298
0.000368076
0.00036786
0.000367657
0.000367464
0.000367216
0.000305554
0.000312718
0.000319396
0.000325339
0.000330495
0.000334932
0.000338756
0.000342075
0.000344983
0.000347558
0.000349861
0.000351939
0.000353828
0.000355557
0.000357147
0.000358616
0.000359977
0.000361241
0.000362417
0.000363512
0.000364532
0.000365482
0.000366367
0.00036719
0.000367954
0.000368663
0.000369318
0.000369922
0.000370478
0.000370987
0.000371451
0.000371872
0.000372251
0.00037259
0.000372891
0.000373155
0.000373383
0.000373577
0.000373739
0.000373869
0.000373969
0.00037404
0.000374084
0.000374102
0.000374095
0.000374065
0.000374012
0.000373938
0.000373845
0.000373733
0.000373604
0.000373459
0.000373299
0.000373126
0.000372941
0.000372744
0.000372537
0.000372321
0.000372097
0.000371867
0.00037163
0.000371388
0.000371142
0.000370892
0.00037064
0.000370387
0.000370132
0.000369878
0.000369624
0.000369371
0.00036912
0.000368872
0.000368627
0.000368386
0.00036815
0.00036792
0.000367698
0.000367488
0.00036729
0.000367037
0.00030691
0.000313137
0.000319073
0.000324511
0.000329374
0.000333675
0.00033747
0.000340825
0.000343809
0.000346478
0.000348884
0.000351066
0.000353056
0.000354881
0.000356562
0.000358115
0.000359554
0.00036089
0.000362132
0.000363287
0.000364362
0.000365362
0.000366293
0.000367157
0.000367958
0.0003687
0.000369386
0.000370017
0.000370596
0.000371126
0.000371608
0.000372044
0.000372436
0.000372786
0.000373095
0.000373365
0.000373598
0.000373795
0.000373958
0.000374087
0.000374185
0.000374253
0.000374293
0.000374304
0.00037429
0.000374252
0.00037419
0.000374107
0.000374003
0.000373881
0.00037374
0.000373583
0.00037341
0.000373224
0.000373025
0.000372815
0.000372595
0.000372365
0.000372127
0.000371883
0.000371632
0.000371376
0.000371116
0.000370853
0.000370588
0.000370322
0.000370055
0.000369789
0.000369523
0.000369259
0.000368998
0.000368739
0.000368485
0.000368235
0.00036799
0.000367753
0.000367523
0.000367307
0.000367103
0.000366844
0.000308009
0.000313568
0.000318935
0.000323951
0.000328541
0.000332692
0.000336427
0.000339785
0.000342811
0.000345547
0.000348032
0.000350298
0.000352375
0.000354285
0.000356047
0.000357677
0.000359187
0.00036059
0.000361894
0.000363106
0.000364233
0.000365282
0.000366256
0.000367159
0.000367997
0.000368771
0.000369485
0.000370142
0.000370743
0.000371293
0.000371792
0.000372242
0.000372646
0.000373005
0.000373322
0.000373598
0.000373834
0.000374033
0.000374195
0.000374323
0.000374418
0.000374482
0.000374515
0.00037452
0.000374498
0.000374451
0.000374379
0.000374285
0.00037417
0.000374035
0.000373882
0.000373711
0.000373525
0.000373325
0.000373112
0.000372887
0.000372652
0.000372407
0.000372155
0.000371895
0.00037163
0.000371359
0.000371085
0.000370808
0.000370529
0.000370249
0.00036997
0.00036969
0.000369413
0.000369137
0.000368864
0.000368595
0.00036833
0.000368071
0.000367818
0.000367572
0.000367335
0.000367112
0.000366903
0.000366638
0.000308885
0.000313961
0.000318897
0.000323575
0.000327929
0.000331935
0.000335598
0.000338937
0.000341982
0.000344763
0.000347307
0.000349642
0.000351791
0.000353774
0.000355607
0.000357306
0.000358882
0.000360347
0.000361708
0.000362974
0.00036415
0.000365244
0.000366259
0.000367201
0.000368072
0.000368877
0.000369618
0.000370299
0.000370922
0.00037149
0.000372005
0.000372468
0.000372883
0.000373251
0.000373574
0.000373854
0.000374093
0.000374292
0.000374453
0.000374578
0.000374669
0.000374727
0.000374753
0.00037475
0.000374719
0.000374662
0.000374579
0.000374473
0.000374345
0.000374197
0.000374029
0.000373845
0.000373644
0.000373429
0.0003732
0.000372959
0.000372708
0.000372448
0.000372179
0.000371904
0.000371623
0.000371337
0.000371047
0.000370755
0.000370462
0.000370168
0.000369874
0.000369582
0.000369291
0.000369003
0.000368718
0.000368438
0.000368163
0.000367894
0.000367631
0.000367377
0.000367132
0.000366903
0.000366688
0.000366417
0.000309598
0.000314319
0.000318927
0.000323336
0.000327492
0.000331366
0.000334954
0.000338265
0.000341314
0.000344122
0.000346711
0.0003491
0.000351309
0.000353353
0.000355249
0.000357009
0.000358644
0.000360165
0.000361579
0.000362895
0.000364118
0.000365254
0.000366308
0.000367285
0.000368188
0.000369022
0.000369789
0.000370493
0.000371135
0.00037172
0.000372249
0.000372724
0.000373148
0.000373524
0.000373852
0.000374135
0.000374375
0.000374573
0.000374732
0.000374853
0.000374938
0.000374989
0.000375007
0.000374995
0.000374953
0.000374884
0.000374789
0.00037467
0.000374528
0.000374365
0.000374183
0.000373983
0.000373766
0.000373534
0.000373289
0.000373031
0.000372763
0.000372486
0.0003722
0.000371908
0.00037161
0.000371308
0.000371002
0.000370695
0.000370386
0.000370076
0.000369768
0.000369461
0.000369157
0.000368856
0.000368559
0.000368267
0.000367981
0.000367701
0.000367429
0.000367166
0.000366913
0.000366678
0.000366457
0.00036618
0.000310202
0.000314656
0.000319014
0.00032321
0.000327201
0.00033096
0.000334477
0.000337753
0.000340796
0.000343621
0.000346241
0.000348672
0.000350929
0.000353027
0.000354976
0.00035679
0.000358478
0.00036005
0.000361513
0.000362874
0.000364139
0.000365314
0.000366405
0.000367415
0.000368348
0.000369208
0.000369999
0.000370724
0.000371385
0.000371985
0.000372526
0.000373012
0.000373445
0.000373826
0.000374158
0.000374442
0.000374682
0.000374878
0.000375033
0.000375149
0.000375227
0.00037527
0.000375278
0.000375255
0.000375202
0.00037512
0.000375011
0.000374877
0.00037472
0.000374541
0.000374343
0.000374125
0.000373891
0.000373642
0.000373379
0.000373103
0.000372817
0.000372521
0.000372218
0.000371908
0.000371592
0.000371272
0.000370949
0.000370625
0.000370299
0.000369974
0.00036965
0.000369329
0.00036901
0.000368696
0.000368386
0.000368082
0.000367784
0.000367493
0.000367211
0.000366939
0.000366678
0.000366436
0.000366209
0.000365927
0.000310741
0.000314992
0.000319155
0.000323183
0.000327038
0.000330697
0.000334148
0.000337388
0.00034042
0.000343252
0.000345894
0.000348358
0.000350655
0.000352796
0.000354792
0.000356653
0.000358387
0.000360005
0.000361511
0.000362913
0.000364218
0.000365429
0.000366553
0.000367593
0.000368554
0.000369439
0.000370252
0.000370995
0.000371673
0.000372287
0.00037284
0.000373334
0.000373773
0.000374159
0.000374493
0.000374777
0.000375015
0.000375208
0.000375358
0.000375466
0.000375536
0.000375569
0.000375567
0.000375531
0.000375465
0.000375368
0.000375244
0.000375095
0.000374921
0.000374725
0.000374508
0.000374272
0.00037402
0.000373751
0.000373469
0.000373174
0.000372869
0.000372554
0.000372231
0.000371901
0.000371567
0.000371229
0.000370887
0.000370545
0.000370202
0.00036986
0.00036952
0.000369183
0.00036885
0.000368521
0.000368197
0.00036788
0.00036757
0.000367268
0.000366976
0.000366694
0.000366425
0.000366176
0.000365943
0.000365655
0.000311248
0.000315341
0.000319352
0.000323245
0.000326988
0.000330562
0.000333954
0.000337159
0.000340176
0.00034301
0.000345667
0.000348155
0.000350484
0.000352662
0.000354697
0.000356599
0.000358375
0.000360032
0.000361578
0.000363017
0.000364357
0.000365601
0.000366755
0.000367824
0.00036881
0.000369717
0.000370549
0.00037131
0.000372002
0.000372628
0.00037319
0.000373692
0.000374136
0.000374524
0.000374858
0.000375141
0.000375376
0.000375563
0.000375706
0.000375807
0.000375867
0.000375888
0.000375873
0.000375824
0.000375742
0.00037563
0.00037549
0.000375322
0.00037513
0.000374915
0.000374679
0.000374424
0.000374151
0.000373862
0.000373559
0.000373244
0.000372918
0.000372582
0.000372239
0.000371889
0.000371534
0.000371176
0.000370816
0.000370454
0.000370093
0.000369734
0.000369377
0.000369023
0.000368674
0.00036833
0.000367992
0.000367661
0.000367338
0.000367025
0.000366722
0.000366431
0.000366154
0.000365897
0.000365658
0.000365363
0.000311747
0.000315717
0.000319608
0.000323391
0.000327043
0.000330545
0.000333885
0.000337057
0.000340058
0.000342889
0.000345556
0.000348063
0.000350417
0.000352625
0.000354694
0.000356631
0.000358442
0.000360135
0.000361716
0.000363189
0.00036456
0.000365834
0.000367015
0.000368109
0.000369117
0.000370044
0.000370894
0.00037167
0.000372374
0.00037301
0.00037358
0.000374087
0.000374534
0.000374923
0.000375256
0.000375536
0.000375765
0.000375946
0.000376081
0.000376171
0.00037622
0.000376228
0.000376199
0.000376134
0.000376036
0.000375906
0.000375747
0.000375561
0.000375349
0.000375113
0.000374856
0.000374579
0.000374285
0.000373974
0.000373649
0.000373312
0.000372964
0.000372606
0.000372241
0.00037187
0.000371494
0.000371115
0.000370734
0.000370352
0.000369972
0.000369594
0.000369218
0.000368847
0.000368481
0.000368121
0.000367768
0.000367424
0.000367088
0.000366762
0.000366448
0.000366147
0.000365861
0.000365596
0.000365351
0.000365051
0.000312256
0.000316128
0.000319923
0.000323619
0.000327196
0.000330637
0.000333932
0.000337073
0.000340058
0.000342885
0.000345558
0.000348079
0.000350453
0.000352686
0.000354783
0.00035675
0.000358592
0.000360316
0.000361927
0.00036343
0.000364829
0.00036613
0.000367335
0.000368451
0.000369479
0.000370424
0.000371289
0.000372077
0.000372792
0.000373436
0.000374011
0.000374522
0.000374969
0.000375357
0.000375687
0.000375963
0.000376185
0.000376357
0.000376482
0.00037656
0.000376595
0.000376589
0.000376544
0.000376462
0.000376345
0.000376196
0.000376017
0.00037581
0.000375576
0.000375318
0.000375039
0.000374739
0.000374422
0.000374087
0.000373739
0.000373378
0.000373006
0.000372625
0.000372237
0.000371842
0.000371444
0.000371042
0.00037064
0.000370238
0.000369837
0.000369438
0.000369044
0.000368655
0.000368271
0.000367894
0.000367526
0.000367167
0.000366817
0.000366479
0.000366153
0.000365842
0.000365546
0.000365274
0.000365022
0.000364715
0.000312788
0.000316582
0.000320301
0.000323926
0.000327441
0.000330831
0.000334087
0.000337201
0.00034017
0.000342992
0.000345668
0.0003482
0.00035059
0.000352843
0.000354964
0.000356956
0.000358826
0.000360577
0.000362214
0.000363743
0.000365167
0.000366491
0.000367718
0.000368852
0.000369898
0.000370858
0.000371736
0.000372534
0.000373257
0.000373906
0.000374485
0.000374997
0.000375444
0.000375829
0.000376154
0.000376423
0.000376637
0.000376798
0.00037691
0.000376975
0.000376995
0.000376972
0.000376909
0.000376808
0.000376671
0.000376501
0.0003763
0.000376069
0.000375812
0.000375531
0.000375227
0.000374903
0.00037456
0.000374201
0.000373827
0.000373441
0.000373044
0.000372638
0.000372225
0.000371806
0.000371384
0.000370959
0.000370533
0.000370109
0.000369686
0.000369267
0.000368852
0.000368444
0.000368042
0.000367648
0.000367263
0.000366888
0.000366524
0.000366173
0.000365835
0.000365513
0.000365208
0.000364927
0.000364669
0.000364356
0.000313352
0.000317084
0.000320742
0.00032431
0.000327774
0.000331122
0.000334345
0.000337436
0.000340391
0.000343207
0.000345885
0.000348424
0.000350827
0.000353097
0.000355238
0.000357252
0.000359144
0.000360918
0.000362579
0.00036413
0.000365575
0.000366919
0.000368165
0.000369316
0.000370376
0.000371348
0.000372236
0.000373043
0.000373771
0.000374424
0.000375005
0.000375515
0.00037596
0.00037634
0.000376658
0.000376918
0.000377121
0.00037727
0.000377368
0.000377417
0.000377419
0.000377378
0.000377294
0.000377172
0.000377013
0.00037682
0.000376595
0.00037634
0.000376058
0.000375751
0.000375421
0.00037507
0.000374701
0.000374315
0.000373914
0.000373501
0.000373077
0.000372644
0.000372205
0.00037176
0.000371312
0.000370863
0.000370413
0.000369965
0.000369519
0.000369078
0.000368642
0.000368213
0.000367792
0.00036738
0.000366978
0.000366587
0.000366208
0.000365843
0.000365492
0.000365159
0.000364844
0.000364555
0.000364291
0.000363971
0.000313955
0.000317638
0.000321247
0.000324769
0.000328192
0.000331506
0.000334702
0.000337773
0.000340715
0.000343526
0.000346204
0.000348749
0.000351163
0.000353447
0.000355604
0.000357636
0.000359548
0.000361342
0.000363023
0.000364593
0.000366057
0.000367417
0.000368679
0.000369843
0.000370915
0.000371898
0.000372794
0.000373606
0.000374337
0.000374991
0.000375571
0.000376079
0.000376518
0.000376891
0.0003772
0.000377449
0.000377639
0.000377773
0.000377855
0.000377886
0.000377869
0.000377807
0.000377702
0.000377556
0.000377373
0.000377155
0.000376904
0.000376622
0.000376313
0.000375979
0.00037562
0.000375241
0.000374843
0.000374428
0.000373999
0.000373557
0.000373104
0.000372643
0.000372176
0.000371704
0.000371229
0.000370753
0.000370278
0.000369804
0.000369335
0.00036887
0.000368412
0.000367962
0.000367521
0.000367089
0.000366669
0.000366261
0.000365866
0.000365487
0.000365123
0.000364778
0.000364453
0.000364156
0.000363884
0.000363558
0.000314603
0.000318247
0.000321818
0.000325304
0.000328694
0.00033198
0.000335153
0.000338208
0.00034114
0.000343946
0.000346624
0.000349174
0.000351596
0.000353892
0.000356062
0.00035811
0.000360038
0.00036185
0.000363547
0.000365133
0.000366612
0.000367987
0.000369261
0.000370437
0.000371519
0.000372508
0.000373409
0.000374224
0.000374957
0.00037561
0.000376187
0.000376689
0.000377121
0.000377484
0.000377782
0.000378017
0.000378193
0.00037831
0.000378373
0.000378384
0.000378345
0.00037826
0.000378131
0.00037796
0.000377751
0.000377505
0.000377226
0.000376916
0.000376577
0.000376213
0.000375824
0.000375415
0.000374986
0.00037454
0.00037408
0.000373607
0.000373124
0.000372633
0.000372136
0.000371635
0.000371132
0.000370628
0.000370126
0.000369626
0.000369131
0.000368642
0.000368161
0.000367688
0.000367225
0.000366774
0.000366334
0.000365909
0.000365498
0.000365103
0.000364726
0.000364369
0.000364033
0.000363727
0.000363449
0.000363117
0.000315299
0.000318915
0.000322456
0.000325913
0.000329278
0.000332541
0.000335697
0.000338739
0.000341662
0.000344464
0.000347143
0.000349697
0.000352126
0.000354431
0.000356613
0.000358674
0.000360616
0.000362442
0.000364153
0.000365753
0.000367244
0.000368631
0.000369915
0.000371099
0.000372187
0.000373182
0.000374085
0.000374901
0.000375633
0.000376282
0.000376853
0.000377348
0.00037777
0.000378122
0.000378406
0.000378625
0.000378783
0.000378881
0.000378923
0.000378912
0.000378849
0.000378739
0.000378583
0.000378384
0.000378146
0.000377871
0.000377562
0.000377221
0.00037685
0.000376454
0.000376033
0.00037559
0.000375129
0.00037465
0.000374157
0.000373652
0.000373137
0.000372614
0.000372086
0.000371554
0.00037102
0.000370487
0.000369956
0.000369429
0.000368907
0.000368393
0.000367886
0.00036739
0.000366905
0.000366432
0.000365973
0.000365528
0.0003651
0.00036469
0.000364299
0.000363929
0.000363582
0.000363267
0.000362982
0.000362643
0.000316048
0.000319642
0.000323161
0.000326597
0.000329942
0.000333189
0.000336331
0.000339363
0.00034228
0.000345079
0.000347758
0.000350316
0.000352751
0.000355064
0.000357256
0.000359328
0.000361282
0.000363119
0.000364841
0.000366452
0.000367954
0.000369349
0.000370641
0.000371831
0.000372923
0.00037392
0.000374824
0.000375638
0.000376366
0.00037701
0.000377573
0.000378058
0.000378467
0.000378805
0.000379072
0.000379274
0.000379411
0.000379488
0.000379507
0.00037947
0.000379381
0.000379243
0.000379058
0.000378829
0.00037856
0.000378253
0.000377911
0.000377536
0.000377132
0.000376701
0.000376245
0.000375768
0.000375271
0.000374758
0.00037423
0.000373691
0.000373141
0.000372585
0.000372023
0.000371459
0.000370893
0.000370329
0.000369768
0.000369211
0.000368661
0.000368119
0.000367587
0.000367066
0.000366557
0.000366062
0.000365582
0.000365118
0.000364672
0.000364246
0.00036384
0.000363457
0.000363099
0.000362775
0.000362482
0.000362137
0.000316853
0.000320431
0.000323935
0.000327356
0.000330687
0.000333922
0.000337054
0.000340079
0.000342991
0.000345789
0.000348469
0.00035103
0.000353471
0.000355791
0.000357992
0.000360073
0.000362036
0.000363882
0.000365614
0.000367234
0.000368743
0.000370145
0.000371441
0.000372635
0.000373729
0.000374725
0.000375627
0.000376438
0.000377159
0.000377794
0.000378347
0.000378819
0.000379214
0.000379534
0.000379783
0.000379964
0.000380079
0.000380131
0.000380124
0.00038006
0.000379942
0.000379773
0.000379557
0.000379296
0.000378993
0.000378651
0.000378274
0.000377863
0.000377423
0.000376955
0.000376462
0.000375947
0.000375413
0.000374863
0.000374298
0.000373722
0.000373136
0.000372544
0.000371947
0.000371348
0.000370749
0.000370152
0.000369558
0.000368971
0.000368391
0.000367821
0.000367261
0.000366713
0.00036618
0.000365662
0.00036516
0.000364676
0.000364212
0.000363768
0.000363347
0.00036295
0.000362581
0.000362247
0.000361947
0.000361595
0.000317715
0.000321285
0.000324779
0.00032819
0.000331512
0.000334739
0.000337865
0.000340885
0.000343796
0.000346593
0.000349275
0.00035184
0.000354286
0.000356612
0.00035882
0.000360909
0.000362879
0.000364733
0.000366472
0.000368098
0.000369613
0.000371019
0.000372318
0.000373513
0.000374606
0.0003756
0.000376497
0.000377301
0.000378013
0.000378638
0.000379177
0.000379634
0.000380011
0.000380312
0.00038054
0.000380697
0.000380787
0.000380813
0.000380776
0.000380682
0.000380532
0.000380331
0.00038008
0.000379784
0.000379445
0.000379066
0.000378651
0.000378202
0.000377722
0.000377214
0.000376682
0.000376128
0.000375554
0.000374964
0.00037436
0.000373745
0.000373121
0.000372491
0.000371856
0.000371221
0.000370586
0.000369954
0.000369327
0.000368707
0.000368095
0.000367495
0.000366906
0.000366331
0.000365772
0.000365229
0.000364705
0.0003642
0.000363716
0.000363255
0.000362818
0.000362407
0.000362025
0.000361681
0.000361374
0.000361016
0.000318637
0.000322203
0.000325693
0.000329099
0.000332417
0.00033564
0.000338763
0.000341782
0.000344692
0.000347491
0.000350175
0.000352744
0.000355195
0.000357527
0.000359741
0.000361836
0.000363813
0.000365673
0.000367417
0.000369048
0.000370566
0.000371973
0.000373273
0.000374466
0.000375556
0.000376545
0.000377436
0.00037823
0.000378931
0.000379542
0.000380065
0.000380504
0.000380861
0.00038114
0.000381344
0.000381475
0.000381537
0.000381532
0.000381465
0.000381337
0.000381153
0.000380916
0.000380629
0.000380294
0.000379916
0.000379497
0.000379041
0.000378551
0.000378029
0.00037748
0.000376905
0.000376309
0.000375693
0.000375061
0.000374415
0.000373759
0.000373094
0.000372423
0.000371749
0.000371075
0.000370402
0.000369734
0.000369071
0.000368416
0.000367772
0.00036714
0.000366521
0.000365917
0.000365331
0.000364763
0.000364214
0.000363687
0.000363183
0.000362703
0.000362249
0.000361824
0.00036143
0.000361076
0.000360761
0.000360397
0.000319621
0.000323189
0.000326679
0.000330085
0.000333402
0.000336625
0.000339748
0.000342768
0.00034568
0.000348482
0.00035117
0.000353743
0.000356199
0.000358536
0.000360755
0.000362856
0.000364838
0.000366703
0.000368451
0.000370083
0.000371603
0.00037301
0.000374308
0.000375498
0.000376582
0.000377563
0.000378444
0.000379226
0.000379913
0.000380508
0.000381013
0.000381431
0.000381765
0.00038202
0.000382196
0.000382298
0.000382329
0.000382292
0.00038219
0.000382027
0.000381806
0.00038153
0.000381202
0.000380827
0.000380407
0.000379945
0.000379445
0.000378911
0.000378345
0.00037775
0.000377131
0.000376489
0.000375829
0.000375152
0.000374462
0.000373761
0.000373053
0.00037234
0.000371625
0.000370909
0.000370197
0.000369489
0.000368789
0.000368098
0.000367419
0.000366753
0.000366103
0.000365469
0.000364854
0.00036426
0.000363686
0.000363136
0.00036261
0.000362111
0.00036164
0.0003612
0.000360793
0.000360428
0.000360105
0.000359734
0.000320669
0.000324242
0.000327737
0.000331147
0.000334468
0.000337694
0.00034082
0.000343844
0.00034676
0.000349566
0.000352259
0.000354836
0.000357297
0.00035964
0.000361864
0.000363969
0.000365955
0.000367823
0.000369573
0.000371207
0.000372726
0.000374131
0.000375424
0.000376608
0.000377685
0.000378656
0.000379525
0.000380292
0.000380963
0.000381538
0.000382022
0.000382417
0.000382726
0.000382952
0.000383099
0.000383169
0.000383166
0.000383093
0.000382954
0.000382752
0.00038249
0.000382172
0.000381802
0.000381382
0.000380917
0.000380409
0.000379863
0.000379282
0.000378668
0.000378026
0.000377358
0.000376669
0.000375961
0.000375236
0.000374499
0.000373752
0.000372998
0.00037224
0.00037148
0.000370722
0.000369967
0.000369219
0.000368479
0.000367751
0.000367035
0.000366334
0.00036565
0.000364985
0.00036434
0.000363717
0.000363117
0.000362543
0.000361995
0.000361476
0.000360987
0.000360531
0.000360111
0.000359736
0.000359405
0.000359027
0.000321782
0.000325365
0.000328869
0.000332287
0.000335615
0.000338847
0.00034198
0.000345009
0.000347931
0.000350743
0.000353442
0.000356025
0.000358491
0.000360839
0.000363068
0.000365177
0.000367166
0.000369036
0.000370787
0.00037242
0.000373936
0.000375337
0.000376625
0.000377801
0.000378867
0.000379826
0.000380679
0.00038143
0.000382081
0.000382635
0.000383094
0.000383463
0.000383743
0.000383939
0.000384053
0.000384088
0.000384048
0.000383937
0.000383757
0.000383513
0.000383207
0.000382844
0.000382428
0.000381961
0.000381447
0.00038089
0.000380294
0.000379662
0.000378998
0.000378305
0.000377587
0.000376846
0.000376087
0.000375313
0.000374526
0.00037373
0.000372927
0.000372121
0.000371315
0.000370511
0.000369712
0.000368921
0.00036814
0.000367371
0.000366617
0.000365879
0.00036516
0.000364462
0.000363785
0.000363133
0.000362506
0.000361906
0.000361335
0.000360795
0.000360287
0.000359815
0.000359381
0.000358995
0.000358656
0.000358272
0.000322961
0.000326559
0.000330076
0.000333505
0.000336843
0.000340085
0.000343227
0.000346265
0.000349195
0.000352014
0.00035472
0.00035731
0.000359782
0.000362135
0.000364368
0.000366481
0.000368472
0.000370343
0.000372093
0.000373724
0.000375236
0.000376631
0.000377911
0.000379076
0.00038013
0.000381074
0.00038191
0.000382641
0.00038327
0.0003838
0.000384233
0.000384572
0.000384821
0.000384982
0.00038506
0.000385057
0.000384977
0.000384824
0.0003846
0.000384311
0.000383958
0.000383547
0.00038308
0.000382563
0.000381997
0.000381388
0.000380739
0.000380053
0.000379335
0.000378588
0.000377816
0.000377021
0.000376208
0.00037538
0.00037454
0.000373692
0.000372838
0.000371982
0.000371127
0.000370275
0.000369429
0.000368593
0.000367768
0.000366957
0.000366162
0.000365386
0.00036463
0.000363897
0.000363187
0.000362504
0.000361848
0.000361222
0.000360627
0.000360065
0.000359539
0.00035905
0.000358602
0.000358205
0.000357857
0.000357467
0.00032421
0.000327826
0.000331358
0.000334803
0.000338155
0.000341409
0.000344563
0.000347612
0.000350552
0.00035338
0.000356094
0.000358691
0.00036117
0.000363529
0.000365766
0.000367882
0.000369875
0.000371745
0.000373494
0.000375121
0.000376628
0.000378015
0.000379284
0.000380437
0.000381476
0.000382402
0.000383219
0.000383928
0.000384533
0.000385035
0.000385438
0.000385745
0.000385959
0.000386084
0.000386122
0.000386078
0.000385955
0.000385756
0.000385485
0.000385146
0.000384743
0.00038428
0.00038376
0.000383188
0.000382567
0.000381902
0.000381196
0.000380454
0.000379679
0.000378874
0.000378044
0.000377192
0.000376322
0.000375437
0.000374542
0.000373638
0.000372731
0.000371821
0.000370914
0.000370012
0.000369117
0.000368233
0.000367362
0.000366506
0.000365669
0.000364852
0.000364057
0.000363287
0.000362544
0.000361828
0.000361143
0.000360489
0.000359869
0.000359284
0.000358738
0.000358231
0.000357769
0.00035736
0.000357004
0.000356607
0.000325528
0.000329166
0.000332718
0.000336181
0.00033955
0.00034282
0.000345988
0.00034905
0.000352002
0.000354841
0.000357565
0.000360171
0.000362657
0.000365021
0.000367263
0.000369381
0.000371375
0.000373245
0.000374991
0.000376613
0.000378113
0.00037949
0.000380748
0.000381886
0.000382908
0.000383815
0.000384609
0.000385294
0.00038587
0.000386343
0.000386713
0.000386985
0.000387161
0.000387245
0.000387241
0.000387152
0.000386982
0.000386733
0.000386412
0.00038602
0.000385563
0.000385044
0.000384467
0.000383837
0.000383158
0.000382433
0.000381667
0.000380864
0.000380027
0.000379162
0.00037827
0.000377358
0.000376428
0.000375483
0.000374528
0.000373567
0.000372602
0.000371637
0.000370675
0.000369719
0.000368772
0.000367838
0.000366918
0.000366016
0.000365134
0.000364275
0.000363439
0.000362631
0.000361851
0.000361102
0.000360386
0.000359703
0.000359057
0.000358449
0.000357881
0.000357357
0.000356879
0.000356458
0.000356093
0.00035569
0.000326918
0.000330581
0.000334157
0.000337642
0.000341031
0.00034432
0.000347505
0.000350582
0.000353548
0.000356399
0.000359134
0.00036175
0.000364243
0.000366614
0.00036886
0.000370981
0.000372976
0.000374844
0.000376586
0.000378202
0.000379693
0.00038106
0.000382303
0.000383425
0.000384428
0.000385313
0.000386082
0.000386739
0.000387286
0.000387725
0.000388059
0.000388292
0.000388428
0.000388468
0.000388418
0.00038828
0.000388059
0.000387758
0.000387382
0.000386934
0.000386418
0.00038584
0.000385203
0.000384511
0.000383769
0.00038298
0.00038215
0.000381283
0.000380381
0.000379451
0.000378495
0.000377518
0.000376524
0.000375516
0.000374499
0.000373476
0.00037245
0.000371426
0.000370406
0.000369394
0.000368393
0.000367406
0.000366435
0.000365484
0.000364555
0.000363651
0.000362773
0.000361925
0.000361107
0.000360323
0.000359574
0.000358861
0.000358188
0.000357555
0.000356966
0.000356423
0.000355929
0.000355496
0.000355122
0.000354712
0.000328381
0.000332073
0.000335676
0.000339186
0.000342598
0.000345909
0.000349113
0.000352208
0.00035519
0.000358056
0.000360803
0.000363429
0.000365932
0.00036831
0.00037056
0.000372684
0.000374678
0.000376545
0.000378282
0.000379891
0.000381372
0.000382725
0.000383953
0.000385057
0.000386038
0.000386899
0.000387641
0.000388268
0.000388781
0.000389184
0.000389479
0.000389671
0.000389761
0.000389755
0.000389654
0.000389464
0.000389189
0.000388831
0.000388396
0.000387888
0.000387311
0.000386669
0.000385967
0.000385209
0.0003844
0.000383544
0.000382646
0.000381709
0.000380739
0.00037974
0.000378716
0.000377671
0.000376609
0.000375534
0.000374451
0.000373363
0.000372274
0.000371187
0.000370107
0.000369035
0.000367977
0.000366934
0.000365909
0.000364907
0.000363929
0.000362977
0.000362055
0.000361165
0.000360308
0.000359487
0.000358704
0.00035796
0.000357258
0.000356599
0.000355988
0.000355425
0.000354916
0.00035447
0.000354086
0.00035367
0.000329919
0.000333644
0.000337277
0.000340816
0.000344254
0.000347588
0.000350815
0.00035393
0.00035693
0.000359813
0.000362574
0.000365212
0.000367724
0.000370109
0.000372365
0.000374491
0.000376486
0.000378349
0.000380081
0.000381681
0.000383151
0.00038449
0.000385701
0.000386784
0.000387742
0.000388576
0.000389288
0.000389881
0.000390358
0.000390722
0.000390975
0.000391121
0.000391164
0.000391106
0.000390952
0.000390706
0.000390372
0.000389954
0.000389456
0.000388883
0.00038824
0.00038753
0.000386759
0.000385931
0.000385051
0.000384124
0.000383153
0.000382144
0.000381101
0.000380029
0.000378932
0.000377815
0.000376681
0.000375536
0.000374383
0.000373227
0.00037207
0.000370918
0.000369773
0.000368639
0.00036752
0.000366419
0.000365338
0.000364281
0.000363252
0.000362251
0.000361283
0.000360348
0.00035945
0.000358591
0.000357772
0.000356995
0.000356264
0.000355579
0.000354944
0.000354361
0.000353835
0.000353376
0.000352983
0.00035256
0.000331534
0.000335295
0.000338962
0.000342532
0.000346
0.000349361
0.000352613
0.000355751
0.000358771
0.000361672
0.000364449
0.0003671
0.000369623
0.000372015
0.000374277
0.000376405
0.0003784
0.00038026
0.000381985
0.000383576
0.000385033
0.000386357
0.000387548
0.000388609
0.000389541
0.000390346
0.000391025
0.000391583
0.00039202
0.000392341
0.000392549
0.000392646
0.000392637
0.000392525
0.000392313
0.000392007
0.00039161
0.000391128
0.000390563
0.000389922
0.000389207
0.000388426
0.000387581
0.000386679
0.000385723
0.000384719
0.000383671
0.000382585
0.000381465
0.000380316
0.000379142
0.000377949
0.00037674
0.00037552
0.000374294
0.000373065
0.000371837
0.000370616
0.000369403
0.000368204
0.000367021
0.000365858
0.000364718
0.000363605
0.000362521
0.000361469
0.000360452
0.000359472
0.000358531
0.000357631
0.000356775
0.000355964
0.000355202
0.000354489
0.00035383
0.000353226
0.000352683
0.00035221
0.000351808
0.000351379
0.000333228
0.000337028
0.000340733
0.000344337
0.000347838
0.000351229
0.000354508
0.000357672
0.000360715
0.000363635
0.000366429
0.000369095
0.000371629
0.000374031
0.000376298
0.000378429
0.000380423
0.000382279
0.000383998
0.000385579
0.000387022
0.000388328
0.000389499
0.000390535
0.000391439
0.000392212
0.000392856
0.000393374
0.00039377
0.000394045
0.000394204
0.000394248
0.000394183
0.000394012
0.000393739
0.000393369
0.000392906
0.000392354
0.000391718
0.000391003
0.000390214
0.000389355
0.000388433
0.000387451
0.000386415
0.000385329
0.000384201
0.000383033
0.000381831
0.0003806
0.000379345
0.000378071
0.000376782
0.000375484
0.00037418
0.000372875
0.000371572
0.000370278
0.000368994
0.000367725
0.000366476
0.000365248
0.000364047
0.000362874
0.000361734
0.000360628
0.000359559
0.000358531
0.000357545
0.000356603
0.000355708
0.000354862
0.000354067
0.000353326
0.000352642
0.000352017
0.000351456
0.000350969
0.000350558
0.000350122
0.000335002
0.000338845
0.000342591
0.000346234
0.00034977
0.000353194
0.000356504
0.000359695
0.000362763
0.000365705
0.000368518
0.0003712
0.000373747
0.000376159
0.000378432
0.000380566
0.000382559
0.000384412
0.000386122
0.000387692
0.00038912
0.000390408
0.000391556
0.000392565
0.000393438
0.000394177
0.000394783
0.00039526
0.00039561
0.000395836
0.000395941
0.00039593
0.000395805
0.000395571
0.000395233
0.000394794
0.000394259
0.000393633
0.000392921
0.000392128
0.000391259
0.000390319
0.000389313
0.000388247
0.000387126
0.000385955
0.00038474
0.000383486
0.000382197
0.00038088
0.000379539
0.00037818
0.000376807
0.000375425
0.000374039
0.000372654
0.000371273
0.000369901
0.000368543
0.000367202
0.000365882
0.000364587
0.00036332
0.000362085
0.000360885
0.000359723
0.000358601
0.000357522
0.000356489
0.000355504
0.000354569
0.000353686
0.000352857
0.000352086
0.000351376
0.000350728
0.000350149
0.000349648
0.000349227
0.000348784
0.000336858
0.000340748
0.000344538
0.000348223
0.000351798
0.000355259
0.000358602
0.000361823
0.000364918
0.000367884
0.000370718
0.000373417
0.000375979
0.000378401
0.000380681
0.000382818
0.000384811
0.000386659
0.000388362
0.000389919
0.000391331
0.000392598
0.000393722
0.000394703
0.000395543
0.000396245
0.00039681
0.000397242
0.000397543
0.000397716
0.000397765
0.000397693
0.000397505
0.000397204
0.000396796
0.000396284
0.000395673
0.000394968
0.000394175
0.000393299
0.000392345
0.000391318
0.000390224
0.000389069
0.000387857
0.000386596
0.000385289
0.000383943
0.000382563
0.000381155
0.000379723
0.000378274
0.000376812
0.000375342
0.00037387
0.000372399
0.000370936
0.000369483
0.000368046
0.000366629
0.000365235
0.000363869
0.000362535
0.000361234
0.000359972
0.000358751
0.000357573
0.000356442
0.00035536
0.000354329
0.000353351
0.00035243
0.000351567
0.000350765
0.000350027
0.000349357
0.000348758
0.000348243
0.000347811
0.000347363
0.000338798
0.000342739
0.000346577
0.000350307
0.000353925
0.000357425
0.000360804
0.000364058
0.000367183
0.000370175
0.000373032
0.00037575
0.000378327
0.000380761
0.000383049
0.000385189
0.000387182
0.000389026
0.00039072
0.000392264
0.000393658
0.000394904
0.000396001
0.000396951
0.000397756
0.000398419
0.00039894
0.000399324
0.000399572
0.000399689
0.000399677
0.000399541
0.000399285
0.000398913
0.00039843
0.000397839
0.000397148
0.00039636
0.000395481
0.000394516
0.000393472
0.000392353
0.000391165
0.000389915
0.000388608
0.00038725
0.000385847
0.000384403
0.000382927
0.000381422
0.000379895
0.00037835
0.000376794
0.000375232
0.000373669
0.000372109
0.000370558
0.000369021
0.000367501
0.000366004
0.000364533
0.000363093
0.000361686
0.000360318
0.00035899
0.000357707
0.000356471
0.000355285
0.000354151
0.000353073
0.000352051
0.00035109
0.000350191
0.000349357
0.000348591
0.000347897
0.000347279
0.000346748
0.000346306
0.000345852
0.000340823
0.00034482
0.00034871
0.000352489
0.000356152
0.000359695
0.000363114
0.000366404
0.000369561
0.000372582
0.000375463
0.000378202
0.000380796
0.000383242
0.000385538
0.000387683
0.000389676
0.000391515
0.0003932
0.00039473
0.000396106
0.000397328
0.000398397
0.000399314
0.000400082
0.000400702
0.000401177
0.000401509
0.000401701
0.000401758
0.000401682
0.000401477
0.000401149
0.0004007
0.000400137
0.000399464
0.000398686
0.000397809
0.000396839
0.00039578
0.00039464
0.000393423
0.000392137
0.000390786
0.000389378
0.000387918
0.000386412
0.000384866
0.000383287
0.00038168
0.000380052
0.000378407
0.000376753
0.000375093
0.000373434
0.00037178
0.000370138
0.000368511
0.000366905
0.000365323
0.000363771
0.000362253
0.000360771
0.000359331
0.000357935
0.000356587
0.00035529
0.000354047
0.00035286
0.000351732
0.000350665
0.000349662
0.000348725
0.000347858
0.000347063
0.000346344
0.000345706
0.00034516
0.000344708
0.000344247
0.000342937
0.000346993
0.000350939
0.000354771
0.000358484
0.000362073
0.000365533
0.000368862
0.000372054
0.000375106
0.000378015
0.000380776
0.000383388
0.000385848
0.000388154
0.000390304
0.000392297
0.000394131
0.000395806
0.000397321
0.000398677
0.000399874
0.000400914
0.000401796
0.000402524
0.000403099
0.000403524
0.000403801
0.000403933
0.000403926
0.000403781
0.000403504
0.000403098
0.000402569
0.000401921
0.000401159
0.00040029
0.000399319
0.000398251
0.000397093
0.000395851
0.000394531
0.000393139
0.000391682
0.000390167
0.000388598
0.000386984
0.00038533
0.000383643
0.000381929
0.000380193
0.000378443
0.000376684
0.000374921
0.000373161
0.000371409
0.00036967
0.00036795
0.000366252
0.000364582
0.000362945
0.000361345
0.000359785
0.00035827
0.000356803
0.000355387
0.000354026
0.000352723
0.00035148
0.000350301
0.000349186
0.00034814
0.000347165
0.000346263
0.000345438
0.000344694
0.000344035
0.000343474
0.00034301
0.000342544
0.000345142
0.00034926
0.000353266
0.000357155
0.000360921
0.000364559
0.000368066
0.000371436
0.000374666
0.000377752
0.00038069
0.000383476
0.000386108
0.000388583
0.0003909
0.000393055
0.000395048
0.000396877
0.000398542
0.000400042
0.000401377
0.000402548
0.000403555
0.000404401
0.000405086
0.000405613
0.000405985
0.000406203
0.000406273
0.000406197
0.000405979
0.000405624
0.000405137
0.000404521
0.000403783
0.000402928
0.000401962
0.00040089
0.000399719
0.000398456
0.000397106
0.000395676
0.000394173
0.000392603
0.000390974
0.000389291
0.000387562
0.000385794
0.000383992
0.000382164
0.000380316
0.000378455
0.000376585
0.000374715
0.000372849
0.000370993
0.000369152
0.000367333
0.00036554
0.000363778
0.000362051
0.000360365
0.000358723
0.000357129
0.000355588
0.000354102
0.000352674
0.000351309
0.000350008
0.000348775
0.000347611
0.00034652
0.000345504
0.000344567
0.000343711
0.00034294
0.00034226
0.000341683
0.000341209
0.000340736
0.000347438
0.000351624
0.000355695
0.000359644
0.000363467
0.000367159
0.000370715
0.00037413
0.000377401
0.000380523
0.000383492
0.000386306
0.00038896
0.000391452
0.00039378
0.000395941
0.000397935
0.000399759
0.000401413
0.000402897
0.00040421
0.000405353
0.000406327
0.000407133
0.000407773
0.000408249
0.000408564
0.000408721
0.000408723
0.000408575
0.000408279
0.000407842
0.000407267
0.00040656
0.000405726
0.000404772
0.000403703
0.000402525
0.000401244
0.000399869
0.000398404
0.000396858
0.000395237
0.000393548
0.000391799
0.000389995
0.000388145
0.000386256
0.000384334
0.000382386
0.000380419
0.000378439
0.000376454
0.00037447
0.000372492
0.000370527
0.00036858
0.000366657
0.000364764
0.000362904
0.000361085
0.000359308
0.000357581
0.000355905
0.000354285
0.000352726
0.000351229
0.000349799
0.000348438
0.000347149
0.000345934
0.000344796
0.000343738
0.000342764
0.000341876
0.000341079
0.000340376
0.000339782
0.000339297
0.000338819
0.000349829
0.000354088
0.000358227
0.000362241
0.000366125
0.000369874
0.000373483
0.000376947
0.000380262
0.000383423
0.000386427
0.000389269
0.000391947
0.000394457
0.000396798
0.000398966
0.000400961
0.00040278
0.000404423
0.00040589
0.00040718
0.000408294
0.000409233
0.000409997
0.000410589
0.000411012
0.000411267
0.000411358
0.000411289
0.000411063
0.000410686
0.00041016
0.000409493
0.000408689
0.000407754
0.000406694
0.000405515
0.000404224
0.000402828
0.000401334
0.000399748
0.000398079
0.000396333
0.000394518
0.000392641
0.00039071
0.000388732
0.000386714
0.000384665
0.00038259
0.000380498
0.000378395
0.000376288
0.000374183
0.000372088
0.000370008
0.000367949
0.000365918
0.000363919
0.000361958
0.000360041
0.000358171
0.000356353
0.000354592
0.000352891
0.000351254
0.000349686
0.000348188
0.000346764
0.000345416
0.000344148
0.000342962
0.000341861
0.000340849
0.000339928
0.000339102
0.000338378
0.000337767
0.00033727
0.000336786
0.000352317
0.000356653
0.000360865
0.000364949
0.000368898
0.000372709
0.000376375
0.000379891
0.000383253
0.000386457
0.000389497
0.000392371
0.000395075
0.000397605
0.00039996
0.000402136
0.000404132
0.000405947
0.000407579
0.000409028
0.000410294
0.000411377
0.000412278
0.000412998
0.00041354
0.000413905
0.000414097
0.000414119
0.000413974
0.000413667
0.000413202
0.000412584
0.000411818
0.000410911
0.000409869
0.000408696
0.000407402
0.000405991
0.000404472
0.000402852
0.000401138
0.000399338
0.00039746
0.000395511
0.0003935
0.000391433
0.00038932
0.000387168
0.000384984
0.000382776
0.000380551
0.000378318
0.000376082
0.000373852
0.000371633
0.000369432
0.000367256
0.000365111
0.000363002
0.000360934
0.000358914
0.000356946
0.000355034
0.000353184
0.000351398
0.000349681
0.000348037
0.000346469
0.00034498
0.000343572
0.000342249
0.000341013
0.000339868
0.000338815
0.00033786
0.000337006
0.000336258
0.000335629
0.000335122
0.000334632
0.000354905
0.000359322
0.000363612
0.00036777
0.00037179
0.000375666
0.000379393
0.000382966
0.000386379
0.000389628
0.000392708
0.000395616
0.000398348
0.000400901
0.00040327
0.000405456
0.000407454
0.000409264
0.000410885
0.000412316
0.000413556
0.000414607
0.000415468
0.000416142
0.000416631
0.000416936
0.000417061
0.000417009
0.000416784
0.00041639
0.000415832
0.000415115
0.000414246
0.00041323
0.000412073
0.000410782
0.000409364
0.000407827
0.000406178
0.000404424
0.000402575
0.000400636
0.000398618
0.000396528
0.000394374
0.000392165
0.000389909
0.000387614
0.000385288
0.00038294
0.000380576
0.000378205
0.000375835
0.000373471
0.000371123
0.000368795
0.000366496
0.000364231
0.000362006
0.000359827
0.0003577
0.000355629
0.000353619
0.000351675
0.000349801
0.000348001
0.000346279
0.000344637
0.00034308
0.00034161
0.00034023
0.000338942
0.00033775
0.000336657
0.000335667
0.000334783
0.000334011
0.000333365
0.000332846
0.000332351
0.000357594
0.000362098
0.000366472
0.00037071
0.000374804
0.000378751
0.000382543
0.000386175
0.000389643
0.000392941
0.000396065
0.00039901
0.000401772
0.000404348
0.000406735
0.00040893
0.000410932
0.000412738
0.000414347
0.000415759
0.000416973
0.00041799
0.00041881
0.000419435
0.000419867
0.000420109
0.000420163
0.000420032
0.000419722
0.000419237
0.000418581
0.00041776
0.000416781
0.000415649
0.000414371
0.000412954
0.000411406
0.000409735
0.000407947
0.000406052
0.000404058
0.000401974
0.000399808
0.000397568
0.000395264
0.000392904
0.000390497
0.000388052
0.000385576
0.000383079
0.000380569
0.000378054
0.000375541
0.000373038
0.000370553
0.000368092
0.000365664
0.000363273
0.000360927
0.000358631
0.000356392
0.000354213
0.000352101
0.00035006
0.000348094
0.000346207
0.000344403
0.000342686
0.000341059
0.000339524
0.000338084
0.000336743
0.000335503
0.000334368
0.000333341
0.000332427
0.000331631
0.000330966
0.000330435
0.000329936
0.000360387
0.000364984
0.000369447
0.000373769
0.000377944
0.000381965
0.000385827
0.000389524
0.000393051
0.000396401
0.000399572
0.000402556
0.000405351
0.000407954
0.00041036
0.000412566
0.000414572
0.000416374
0.000417972
0.000419364
0.000420551
0.000421532
0.000422309
0.000422883
0.000423255
0.00042343
0.000423408
0.000423196
0.000422796
0.000422213
0.000421453
0.000420522
0.000419426
0.000418171
0.000416765
0.000415215
0.000413529
0.000411715
0.000409782
0.000407737
0.000405591
0.000403351
0.000401028
0.000398631
0.000396168
0.000393649
0.000391082
0.000388478
0.000385845
0.000383192
0.000380527
0.000377859
0.000375196
0.000372547
0.000369918
0.000367318
0.000364754
0.000362232
0.000359759
0.000357341
0.000354984
0.000352694
0.000350475
0.000348332
0.00034627
0.000344293
0.000342405
0.000340609
0.000338908
0.000337306
0.000335805
0.000334409
0.000333119
0.000331941
0.000330877
0.000329931
0.00032911
0.000328428
0.000327885
0.00032738
0.000363288
0.000367983
0.000372541
0.000376953
0.000381213
0.000385314
0.000389251
0.000393017
0.000396607
0.000400014
0.000403234
0.000406262
0.000409093
0.000411723
0.00041415
0.00041637
0.00041838
0.000420179
0.000421766
0.000423138
0.000424296
0.00042524
0.000425972
0.000426491
0.000426802
0.000426905
0.000426804
0.000426504
0.000426009
0.000425324
0.000424455
0.000423407
0.000422187
0.000420802
0.00041926
0.000417569
0.000415736
0.000413771
0.000411683
0.00040948
0.000407173
0.00040477
0.000402281
0.000399716
0.000397085
0.000394398
0.000391663
0.000388891
0.000386092
0.000383273
0.000380446
0.000377617
0.000374797
0.000371993
0.000369214
0.000366467
0.000363761
0.000361101
0.000358496
0.00035595
0.000353471
0.000351063
0.000348733
0.000346485
0.000344323
0.000342252
0.000340276
0.000338398
0.000336622
0.00033495
0.000333386
0.000331932
0.000330592
0.000329369
0.000328267
0.000327289
0.000326443
0.000325741
0.000325187
0.000324678
0.000366298
0.000371098
0.000375756
0.000380264
0.000384615
0.000388802
0.000392819
0.000396659
0.000400316
0.000403784
0.000407058
0.000410132
0.000413002
0.000415664
0.000418114
0.000420348
0.000422365
0.000424161
0.000425736
0.000427088
0.000428216
0.000429122
0.000429806
0.000430269
0.000430513
0.000430541
0.000430357
0.000429965
0.00042937
0.000428576
0.00042759
0.000426418
0.000425067
0.000423545
0.000421859
0.000420018
0.000418031
0.000415906
0.000413654
0.000411283
0.000408805
0.000406229
0.000403565
0.000400823
0.000398014
0.000395149
0.000392237
0.000389288
0.000386313
0.00038332
0.000380321
0.000377324
0.000374338
0.000371372
0.000368435
0.000365535
0.000362679
0.000359875
0.000357131
0.000354452
0.000351845
0.000349315
0.000346869
0.00034451
0.000342245
0.000340077
0.000338009
0.000336047
0.000334192
0.000332449
0.000330819
0.000329307
0.000327914
0.000326645
0.000325504
0.000324494
0.000323621
0.000322901
0.000322335
0.000321821
0.00036942
0.000374332
0.000379097
0.000383707
0.000388155
0.000392433
0.000396535
0.000400454
0.000404184
0.000407717
0.000411049
0.000414173
0.000417086
0.000419782
0.000422257
0.000424508
0.000426532
0.000428326
0.00042989
0.000431221
0.000432319
0.000433185
0.000433818
0.000434222
0.000434396
0.000434346
0.000434074
0.000433585
0.000432883
0.000431975
0.000430865
0.000429562
0.000428073
0.000426405
0.000424567
0.000422567
0.000420415
0.000418122
0.000415696
0.000413148
0.000410488
0.000407729
0.000404879
0.000401951
0.000398954
0.000395901
0.000392801
0.000389666
0.000386505
0.00038333
0.000380149
0.000376975
0.000373815
0.000370679
0.000367576
0.000364514
0.000361502
0.000358548
0.000355658
0.000352839
0.000350099
0.000347442
0.000344875
0.000342402
0.000340029
0.00033776
0.000335598
0.000333548
0.000331612
0.000329794
0.000328097
0.000326524
0.000325078
0.000323762
0.00032258
0.000321537
0.000320638
0.000319898
0.00031932
0.000318803
0.000372657
0.000377688
0.000382566
0.000387285
0.000391836
0.000396212
0.000400405
0.000404409
0.000408216
0.000411819
0.000415214
0.000418393
0.000421351
0.000424084
0.000426587
0.000428857
0.00043089
0.000432683
0.000434236
0.000435546
0.000436613
0.000437436
0.000438018
0.000438358
0.00043846
0.000438327
0.000437962
0.00043737
0.000436556
0.000435526
0.000434287
0.000432845
0.000431209
0.000429386
0.000427387
0.000425219
0.000422894
0.000420421
0.000417811
0.000415075
0.000412224
0.00040927
0.000406225
0.000403099
0.000399904
0.000396652
0.000393354
0.000390021
0.000386665
0.000383296
0.000379926
0.000376564
0.000373221
0.000369907
0.00036663
0.000363399
0.000360223
0.000357111
0.000354069
0.000351105
0.000348225
0.000345436
0.000342743
0.000340152
0.000337667
0.000335293
0.000333033
0.000330892
0.000328873
0.000326979
0.000325213
0.000323577
0.000322076
0.000320711
0.000319488
0.000318411
0.000317486
0.000316726
0.000316136
0.000315615
0.000376012
0.000381168
0.000386167
0.000391001
0.000395662
0.000400142
0.000404433
0.000408528
0.000412418
0.000416097
0.000419559
0.000422796
0.000425805
0.000428578
0.000431112
0.000433403
0.000435446
0.00043724
0.000438782
0.00044007
0.000441105
0.000441885
0.000442412
0.000442687
0.000442713
0.000442492
0.00044203
0.000441329
0.000440397
0.000439238
0.000437861
0.000436273
0.000434481
0.000432495
0.000430324
0.000427979
0.000425469
0.000422806
0.000420002
0.000417067
0.000414013
0.000410854
0.000407601
0.000404265
0.000400861
0.000397399
0.000393891
0.000390351
0.000386789
0.000383217
0.000379646
0.000376088
0.000372552
0.00036905
0.00036559
0.000362182
0.000358835
0.000355558
0.000352357
0.000349241
0.000346217
0.000343289
0.000340466
0.000337751
0.00033515
0.000332667
0.000330307
0.000328072
0.000325967
0.000323994
0.000322156
0.000320457
0.000318899
0.000317485
0.00031622
0.000315108
0.000314156
0.000313377
0.000312774
0.000312251
0.000379488
0.000384776
0.000389903
0.000394861
0.000399639
0.00040423
0.000408625
0.000412817
0.000416796
0.000420557
0.000424091
0.000427392
0.000430455
0.000433272
0.00043584
0.000438154
0.00044021
0.000442005
0.000443537
0.000444804
0.000445805
0.000446541
0.000447011
0.000447217
0.000447163
0.000446851
0.000446285
0.00044547
0.000444412
0.000443118
0.000441595
0.000439851
0.000437895
0.000435736
0.000433384
0.00043085
0.000428145
0.000425281
0.00042227
0.000419125
0.000415857
0.00041248
0.000409007
0.00040545
0.000401824
0.00039814
0.000394411
0.000390651
0.000386872
0.000383086
0.000379304
0.000375539
0.000371801
0.000368101
0.00036445
0.000360856
0.00035733
0.00035388
0.000350514
0.00034724
0.000344064
0.000340993
0.000338034
0.000335191
0.00033247
0.000329875
0.00032741
0.000325079
0.000322885
0.000320831
0.00031892
0.000317155
0.000315539
0.000314075
0.000312768
0.000311621
0.00031064
0.000309842
0.000309228
0.000308702
0.000383086
0.000388516
0.000393779
0.000398868
0.000403771
0.00040848
0.000412987
0.000417282
0.000421357
0.000425205
0.000428818
0.000432188
0.000435309
0.000438175
0.00044078
0.00044312
0.000445191
0.000446989
0.000448511
0.000449757
0.000450724
0.000451413
0.000451824
0.000451959
0.00045182
0.000451411
0.000450737
0.000449802
0.000448612
0.000447174
0.000445497
0.000443588
0.000441457
0.000439115
0.000436571
0.000433837
0.000430926
0.000427849
0.000424619
0.00042125
0.000417755
0.000414148
0.000410442
0.000406652
0.00040279
0.000398872
0.00039491
0.000390919
0.00038691
0.000382898
0.000378894
0.000374911
0.000370961
0.000367054
0.000363202
0.000359414
0.0003557
0.00035207
0.000348531
0.000345091
0.000341758
0.000338539
0.000335439
0.000332463
0.000329618
0.000326907
0.000324334
0.000321904
0.000319618
0.000317482
0.000315496
0.000313664
0.000311988
0.000310473
0.000309122
0.000307939
0.000306932
0.000306113
0.000305488
0.00030496
0.000386811
0.00039239
0.000397799
0.000403026
0.000408062
0.000412898
0.000417524
0.00042193
0.000426108
0.00043005
0.000433746
0.000437191
0.000440375
0.000443294
0.000445941
0.00044831
0.000450398
0.0004522
0.000453715
0.000454938
0.000455871
0.000456512
0.000456861
0.000456921
0.000456695
0.000456184
0.000455395
0.000454333
0.000453003
0.000451414
0.000449574
0.000447491
0.000445176
0.000442639
0.000439891
0.000436946
0.000433816
0.000430513
0.000427051
0.000423446
0.00041971
0.000415858
0.000411906
0.000407868
0.000403758
0.000399592
0.000395384
0.000391148
0.000386898
0.000382647
0.00037841
0.000374198
0.000370024
0.0003659
0.000361837
0.000357846
0.000353936
0.000350117
0.000346398
0.000342786
0.00033929
0.000335916
0.00033267
0.000329557
0.000326583
0.000323752
0.000321069
0.000318536
0.000316158
0.000313936
0.000311873
0.000309973
0.000308237
0.00030667
0.000305275
0.000304057
0.000303021
0.000302183
0.000301546
0.000301017
0.000390665
0.000396403
0.000401965
0.00040734
0.000412518
0.000417489
0.000422241
0.000426767
0.000431055
0.000435098
0.000438885
0.00044241
0.000445664
0.00044864
0.000451332
0.000453734
0.000455842
0.00045765
0.000459157
0.00046036
0.000461257
0.000461849
0.000462134
0.000462116
0.000461797
0.00046118
0.000460271
0.000459074
0.000457597
0.000455848
0.000453835
0.000451567
0.000449057
0.000446314
0.000443351
0.000440181
0.000436818
0.000433276
0.000429569
0.000425712
0.000421721
0.000417611
0.000413398
0.000409097
0.000404725
0.000400297
0.000395828
0.000391334
0.000386829
0.000382327
0.000377844
0.000373391
0.000368983
0.000364631
0.000360347
0.000356143
0.000352028
0.000348013
0.000344106
0.000340315
0.000336649
0.000333114
0.000329717
0.000326462
0.000323356
0.000320402
0.000317605
0.000314968
0.000312493
0.000310184
0.000308043
0.000306073
0.000304277
0.000302657
0.000301218
0.000299963
0.0002989
0.000298042
0.000297394
0.000296863
0.00039465
0.000400557
0.000406282
0.000411815
0.000417144
0.000422258
0.000427147
0.0004318
0.000436207
0.000440357
0.000444243
0.000447854
0.000451183
0.000454222
0.000456964
0.000459403
0.000461533
0.000463351
0.000464852
0.000466034
0.000466895
0.000467436
0.000467655
0.000467556
0.00046714
0.000466411
0.000465374
0.000464036
0.000462404
0.000460485
0.000458289
0.000455826
0.000453108
0.000450147
0.000446956
0.000443548
0.000439939
0.000436142
0.000432175
0.000428052
0.00042379
0.000419406
0.000414916
0.000410338
0.000405688
0.000400983
0.000396239
0.000391472
0.000386698
0.000381932
0.000377189
0.000372483
0.000367828
0.000363237
0.000358723
0.000354295
0.000349966
0.000345746
0.000341643
0.000337667
0.000333825
0.000330124
0.00032657
0.000323169
0.000319926
0.000316846
0.000313931
0.000311186
0.000308614
0.000306216
0.000303996
0.000301955
0.000300097
0.000298424
0.00029694
0.000295649
0.000294558
0.000293681
0.000293022
0.000292491
0.00039877
0.000404855
0.000410754
0.000416454
0.000421944
0.000427212
0.000432246
0.000437036
0.000441569
0.000445837
0.000449828
0.000453533
0.000456943
0.000460051
0.000462848
0.000465328
0.000467484
0.000469313
0.00047081
0.000471972
0.000472798
0.000473286
0.000473436
0.000473252
0.000472734
0.000471888
0.000470718
0.00046923
0.000467433
0.000465335
0.000462946
0.000460276
0.000457339
0.000454146
0.000450713
0.000447052
0.000443181
0.000439115
0.000434871
0.000430466
0.000425917
0.000421243
0.00041646
0.000411588
0.000406644
0.000401646
0.000396611
0.000391556
0.000386498
0.000381453
0.000376437
0.000371465
0.000366552
0.00036171
0.000356953
0.000352292
0.00034774
0.000343306
0.000339
0.00033483
0.000330805
0.000326932
0.000323216
0.000319665
0.000316281
0.000313071
0.000310037
0.000307182
0.00030451
0.000302022
0.000299721
0.000297609
0.000295688
0.000293962
0.000292433
0.000291106
0.000289987
0.00028909
0.000288422
0.000287892
0.000403027
0.000409302
0.000415385
0.000421264
0.000426925
0.000432357
0.000437546
0.000442482
0.000447152
0.000451545
0.000455649
0.000459456
0.000462955
0.000466138
0.000468995
0.000471521
0.000473708
0.000475551
0.000477045
0.000478188
0.000478978
0.000479412
0.000479492
0.000479218
0.000478594
0.000477625
0.000476314
0.000474669
0.000472698
0.00047041
0.000467816
0.000464928
0.000461757
0.000458319
0.000454628
0.0004507
0.000446551
0.000442199
0.000437662
0.000432957
0.000428104
0.000423121
0.000418028
0.000412845
0.000407589
0.000402281
0.000396938
0.000391579
0.000386221
0.000380883
0.00037558
0.000370328
0.000365143
0.000360038
0.000355027
0.000350123
0.000345337
0.00034068
0.000336162
0.000331792
0.000327578
0.000323526
0.000319644
0.000315937
0.00031241
0.000309066
0.00030591
0.000302943
0.000300169
0.00029759
0.000295208
0.000293024
0.000291041
0.000289261
0.000287687
0.000286324
0.000285178
0.000284263
0.000283584
0.000283057
0.000407423
0.0004139
0.000420179
0.000426247
0.000432091
0.000437698
0.000443054
0.000448146
0.000452962
0.00045749
0.000461718
0.000465634
0.00046923
0.000472494
0.000475419
0.000477995
0.000480217
0.000482077
0.000483572
0.000484697
0.00048545
0.000485829
0.000485835
0.000485469
0.000484735
0.000483635
0.000482176
0.000480365
0.000478211
0.000475722
0.000472912
0.000469791
0.000466374
0.000462675
0.000458711
0.000454498
0.000450054
0.000445398
0.000440549
0.000435526
0.00043035
0.000425041
0.000419619
0.000414105
0.000408519
0.000402883
0.000397214
0.000391534
0.000385861
0.000380213
0.000374607
0.000369061
0.00036359
0.000358209
0.000352933
0.000347774
0.000342745
0.000337856
0.000333118
0.00032854
0.00032413
0.000319895
0.000315841
0.000311975
0.000308299
0.00030482
0.000301538
0.000298458
0.000295582
0.00029291
0.000290446
0.00028819
0.000286144
0.00028431
0.000282693
0.000281294
0.000280121
0.000279188
0.000278501
0.000277976
0.000411961
0.000418652
0.000425139
0.000431409
0.000437448
0.000443242
0.000448775
0.000454036
0.000459009
0.000463682
0.000468042
0.000472078
0.000475779
0.000479133
0.000482131
0.000484764
0.000487025
0.000488907
0.000490404
0.000491513
0.000492229
0.000492553
0.000492483
0.000492021
0.00049117
0.000489934
0.000488319
0.000486333
0.000483985
0.000481284
0.000478244
0.000474877
0.000471198
0.000467223
0.000462968
0.000458453
0.000453696
0.000448717
0.000443537
0.000438176
0.000432657
0.000427001
0.00042123
0.000415365
0.00040943
0.000403446
0.000397434
0.000391414
0.000385407
0.000379432
0.000373508
0.000367652
0.000361881
0.000356212
0.000350657
0.000345233
0.000339949
0.000334819
0.000329853
0.00032506
0.000320447
0.000316023
0.000311793
0.000307763
0.000303937
0.000300318
0.00029691
0.000293715
0.000290735
0.00028797
0.000285423
0.000283095
0.000280987
0.000279101
0.000277439
0.000276006
0.000274808
0.000273858
0.000273161
0.00027264
0.000416644
0.000423561
0.00043027
0.000436755
0.000443002
0.000448995
0.000454719
0.000460159
0.000465301
0.00047013
0.000474634
0.0004788
0.000482614
0.000486067
0.000489146
0.000491842
0.000494148
0.000496056
0.000497558
0.000498652
0.000499333
0.000499599
0.000499451
0.000498889
0.000497917
0.000496538
0.000494759
0.000492588
0.000490035
0.00048711
0.000483826
0.000480198
0.000476241
0.000471972
0.00046741
0.000462573
0.000457483
0.000452161
0.000446629
0.000440909
0.000435025
0.000429
0.000422858
0.000416623
0.000410317
0.000403965
0.000397588
0.000391209
0.00038485
0.000378531
0.000372271
0.00036609
0.000360004
0.000354032
0.000348187
0.000342484
0.000336937
0.000331556
0.000326353
0.000321337
0.000316515
0.000311896
0.000307486
0.000303288
0.000299308
0.000295548
0.000292012
0.000288701
0.000285616
0.000282759
0.00028013
0.00027773
0.00027556
0.000273622
0.000271918
0.000270451
0.000269228
0.000268261
0.000267557
0.000267041
0.000421473
0.000428631
0.000435575
0.000442289
0.000448757
0.000454963
0.000460891
0.000466524
0.000471847
0.000476846
0.000481505
0.000485811
0.000489749
0.000493309
0.000496477
0.000499245
0.000501601
0.000503539
0.000505051
0.000506132
0.000506778
0.000506986
0.000506757
0.000506092
0.000504993
0.000503464
0.000501513
0.000499147
0.000496377
0.000493214
0.000489673
0.000485767
0.000481515
0.000476934
0.000472044
0.000466866
0.000461421
0.000455734
0.000449827
0.000443726
0.000437454
0.000431038
0.000424502
0.000417872
0.000411174
0.000404431
0.000397669
0.000390911
0.00038418
0.000377497
0.000370884
0.00036436
0.000357945
0.000351655
0.000345506
0.000339513
0.000333691
0.00032805
0.000322601
0.000317355
0.000312319
0.0003075
0.000302903
0.000298535
0.000294398
0.000290496
0.00028683
0.000283402
0.000280212
0.000277262
0.000274552
0.000272081
0.000269851
0.000267862
0.000266117
0.000264618
0.000263371
0.000262389
0.000261679
0.000261169
0.00042645
0.000433863
0.000441057
0.000448015
0.00045472
0.000461154
0.000467299
0.00047314
0.000478658
0.000483839
0.000488665
0.000493123
0.000497197
0.000500874
0.000504141
0.000506987
0.000509401
0.000511375
0.0005129
0.00051397
0.000514583
0.000514733
0.000514422
0.000513648
0.000512417
0.000510731
0.000508598
0.000506027
0.000503028
0.000499613
0.000495798
0.000491599
0.000487033
0.00048212
0.000476881
0.000471339
0.000465518
0.000459442
0.000453137
0.000446629
0.000439945
0.000433112
0.000426158
0.00041911
0.000411994
0.000404838
0.000397668
0.000390508
0.000383384
0.000376318
0.000369333
0.000362449
0.000355687
0.000349064
0.000342598
0.000336303
0.000330194
0.000324283
0.000318581
0.000313097
0.00030784
0.000302815
0.00029803
0.000293488
0.000289192
0.000285145
0.000281349
0.000277804
0.000274511
0.000271469
0.000268678
0.000266138
0.000263849
0.000261812
0.000260027
0.000258498
0.000257229
0.000256233
0.000255518
0.000255016
0.000431577
0.000439261
0.000446721
0.000453939
0.000460896
0.000467573
0.000473952
0.000480015
0.000485743
0.00049112
0.000496128
0.00050075
0.000504971
0.000508777
0.000512153
0.000515086
0.000517566
0.000519581
0.000521124
0.000522188
0.000522768
0.00052286
0.000522464
0.000521579
0.000520209
0.000518359
0.000516035
0.000513247
0.000510005
0.000506325
0.000502219
0.000497707
0.000492808
0.000487542
0.000481932
0.000476003
0.00046978
0.00046329
0.000456561
0.00044962
0.000442497
0.000435221
0.000427822
0.000420329
0.000412771
0.000405177
0.000397574
0.00038999
0.00038245
0.00037498
0.000367602
0.00036034
0.000353214
0.000346243
0.000339445
0.000332836
0.000326429
0.000320238
0.000314273
0.000308545
0.00030306
0.000297826
0.000292848
0.000288129
0.000283673
0.000279481
0.000275555
0.000271894
0.000268498
0.000265366
0.000262497
0.00025989
0.000257545
0.000255461
0.000253639
0.000252081
0.000250791
0.000249784
0.000249066
0.000248572
0.000436854
0.000444827
0.00045257
0.000460064
0.00046729
0.000474227
0.000480857
0.000487158
0.000493113
0.000498701
0.000503905
0.000508706
0.000513088
0.000517034
0.00052053
0.00052356
0.000526113
0.000528178
0.000529745
0.000530806
0.000531355
0.000531389
0.000530906
0.000529906
0.000528392
0.000526369
0.000523844
0.000520827
0.00051733
0.000513366
0.000508953
0.000504109
0.000498855
0.000493213
0.000487209
0.000480867
0.000474216
0.000467285
0.000460103
0.000452701
0.000445111
0.000437364
0.000429491
0.000421525
0.000413497
0.000405437
0.000397376
0.000389342
0.000381363
0.000373466
0.000365676
0.000358016
0.000350508
0.000343173
0.000336028
0.00032909
0.000322375
0.000315893
0.000309658
0.000303678
0.000297961
0.000292513
0.000287339
0.000282442
0.000277825
0.000273488
0.000269432
0.000265656
0.000262159
0.00025894
0.000255995
0.000253324
0.000250925
0.000248797
0.000246941
0.000245357
0.00024405
0.000243033
0.000242313
0.00024183
0.000442284
0.000450562
0.000458606
0.000466395
0.000473908
0.000481124
0.000488021
0.000494579
0.000500777
0.000506594
0.000512009
0.000517005
0.000521562
0.000525663
0.00052929
0.000532429
0.000535065
0.000537187
0.000538783
0.000539845
0.000540367
0.000540343
0.000539771
0.000538652
0.000536989
0.000534785
0.000532049
0.00052879
0.000525022
0.000520759
0.000516019
0.000510822
0.00050519
0.000499148
0.000492722
0.000485941
0.000478834
0.000471432
0.000463768
0.000455874
0.000447786
0.000439536
0.00043116
0.000422691
0.000414163
0.000405609
0.000397061
0.000388551
0.000380108
0.00037176
0.000363535
0.000355457
0.000347548
0.000339832
0.000332325
0.000325046
0.000318009
0.000311228
0.000304714
0.000298476
0.000292521
0.000286855
0.000281483
0.000276407
0.000271629
0.000267148
0.000262964
0.000259076
0.000255481
0.000252177
0.00024916
0.000246429
0.00024398
0.000241812
0.000239924
0.000238318
0.000236997
0.000235972
0.000235251
0.000234781
0.000447865
0.000456468
0.000464832
0.000472935
0.000480755
0.000488269
0.000495454
0.000502287
0.000508746
0.00051481
0.000520455
0.000525662
0.00053041
0.000534679
0.000538452
0.000541711
0.000544441
0.000546629
0.000548262
0.000549331
0.000549827
0.000549747
0.000549086
0.000547844
0.000546025
0.000543632
0.000540673
0.00053716
0.000533105
0.000528524
0.000523437
0.000517864
0.000511831
0.000505362
0.000498487
0.000491236
0.000483642
0.000475738
0.000467559
0.000459141
0.000450521
0.000441736
0.000432823
0.000423818
0.000414758
0.000405679
0.000396615
0.0003876
0.000378666
0.000369843
0.000361159
0.000352641
0.000344313
0.000336197
0.000328313
0.000320679
0.000313309
0.000306219
0.000299418
0.000292915
0.000286718
0.000280832
0.000275261
0.000270005
0.000265066
0.000260444
0.000256135
0.000252138
0.000248449
0.000245064
0.00024198
0.000239192
0.000236698
0.000234494
0.000232579
0.000230954
0.000229621
0.000228592
0.000227873
0.000227417
0.000453599
0.000462546
0.000471251
0.000479689
0.000487836
0.000495669
0.000503162
0.000510291
0.000517033
0.000523362
0.000529257
0.000534693
0.000539649
0.000544104
0.000548037
0.00055143
0.000554266
0.00055653
0.000558208
0.000559289
0.000559764
0.000559628
0.000558877
0.000557509
0.000555527
0.000552936
0.000549744
0.000545962
0.000541603
0.000536685
0.000531229
0.000525257
0.000518795
0.000511871
0.000504517
0.000496765
0.000488651
0.00048021
0.000471481
0.000462504
0.000453316
0.000443959
0.000434473
0.000424897
0.000415272
0.000405634
0.000396023
0.000386473
0.00037702
0.000367694
0.000358527
0.000349546
0.000340777
0.000332244
0.000323966
0.000315963
0.00030825
0.000300841
0.000293745
0.000286973
0.00028053
0.000274421
0.000268649
0.000263215
0.000258118
0.000253356
0.000248926
0.000244824
0.000241046
0.000237587
0.00023444
0.000231602
0.000229068
0.000226834
0.000224897
0.000223257
0.000221916
0.000220885
0.000220171
0.000219732
0.000459484
0.000468798
0.000477864
0.000486659
0.000495156
0.00050333
0.000511153
0.000518601
0.000525646
0.000532264
0.000538428
0.000544114
0.000549297
0.000553955
0.000558065
0.000561607
0.000564562
0.000566913
0.000568645
0.000569746
0.000570205
0.000570016
0.000569174
0.000567676
0.000565526
0.000562728
0.00055929
0.000555224
0.000550544
0.000545269
0.00053942
0.000533022
0.000526103
0.000518694
0.000510828
0.000502541
0.00049387
0.000484856
0.000475539
0.000465962
0.000456168
0.000446201
0.000436104
0.000425919
0.000415691
0.00040546
0.000395267
0.00038515
0.000375146
0.00036529
0.000355613
0.000346146
0.000336915
0.000327945
0.000319258
0.000310872
0.000302803
0.000295065
0.000287669
0.000280622
0.00027393
0.000267598
0.000261626
0.000256015
0.000250762
0.000245865
0.000241319
0.000237119
0.000233258
0.00022973
0.000226529
0.000223647
0.000221079
0.000218821
0.000216868
0.000215219
0.000213875
0.000212845
0.000212138
0.000211719
0.000465519
0.000475221
0.000484673
0.000493848
0.000502719
0.000511258
0.000519436
0.000527226
0.000534599
0.000541528
0.000547985
0.000553942
0.000559373
0.000564254
0.000568559
0.000572267
0.000575356
0.000577807
0.000579604
0.000580732
0.000581181
0.000580941
0.000580008
0.000578378
0.000576054
0.000573039
0.000569343
0.000564977
0.000559957
0.000554302
0.000548035
0.000541184
0.000533778
0.00052585
0.000517436
0.000508576
0.00049931
0.000489682
0.000479736
0.000469519
0.000459076
0.000448456
0.000437706
0.000426872
0.000416001
0.000405138
0.000394327
0.000383608
0.000373022
0.000362604
0.000352391
0.000342412
0.000332698
0.000323272
0.000314158
0.000305375
0.000296939
0.000288864
0.000281159
0.000273834
0.000266891
0.000260335
0.000254165
0.000248381
0.000242978
0.000237952
0.000233296
0.000229005
0.000225069
0.000221481
0.000218232
0.000215315
0.000212722
0.000210447
0.000208485
0.000206832
0.00020549
0.000204466
0.00020377
0.000203373
0.000471702
0.000481817
0.000491679
0.000501259
0.000510529
0.000519459
0.000528018
0.000536176
0.000543903
0.000551168
0.000557942
0.000564194
0.000569897
0.000575022
0.000579542
0.000583434
0.000586673
0.000589239
0.000591113
0.000592279
0.000592724
0.000592438
0.000591414
0.000589649
0.000587144
0.000583904
0.000579936
0.000575254
0.000569873
0.000563815
0.000557104
0.000549769
0.000541842
0.000533359
0.00052436
0.000514887
0.000504984
0.000494698
0.000484078
0.000473174
0.000462037
0.000450719
0.000439271
0.000427744
0.000416188
0.000404651
0.000393182
0.000381824
0.00037062
0.00035961
0.00034883
0.000338314
0.000328092
0.00031819
0.000308633
0.000299438
0.000290624
0.000282203
0.000274186
0.000266578
0.000259384
0.000252605
0.000246241
0.000240288
0.000234741
0.000229593
0.000224837
0.000220464
0.000216463
0.000212824
0.000209539
0.000206596
0.000203987
0.000201703
0.000199739
0.00019809
0.000196756
0.000195743
0.000195061
0.000194689
0.000478029
0.000488582
0.00049888
0.000508893
0.00051859
0.000527938
0.000536906
0.00054546
0.000553569
0.000561198
0.000568315
0.000574889
0.000580888
0.000586281
0.00059104
0.000595136
0.000598544
0.000601241
0.000603206
0.000604421
0.00060487
0.000604542
0.000603429
0.000601527
0.000598835
0.000595359
0.000591106
0.00058609
0.000580327
0.00057384
0.000566656
0.000558804
0.000550321
0.000541246
0.00053162
0.000521489
0.000510903
0.000499911
0.000488569
0.000476929
0.000465048
0.000452982
0.000440787
0.000428519
0.000416231
0.000403977
0.000391807
0.00037977
0.000367912
0.000356275
0.000344898
0.000333817
0.000323063
0.000312664
0.000302646
0.000293026
0.000283824
0.00027505
0.000266714
0.000258822
0.000251377
0.000244379
0.000237826
0.000231711
0.000226028
0.000220768
0.000215922
0.000211477
0.000207423
0.000203746
0.000200435
0.000197478
0.000194864
0.000192582
0.000190626
0.000188989
0.000187669
0.000186672
0.000186006
0.000185666
0.000484497
0.000495515
0.000506277
0.000516751
0.000526904
0.0005367
0.000546107
0.000555088
0.000563607
0.00057163
0.000579121
0.000586045
0.000592368
0.000598056
0.000603077
0.000607401
0.000610999
0.000613846
0.000615917
0.000617193
0.000617655
0.000617292
0.000616092
0.000614051
0.000611168
0.000607445
0.000602893
0.000597524
0.000591357
0.000584414
0.000576725
0.000568323
0.000559245
0.000549534
0.000539236
0.0005284
0.00051708
0.000505332
0.000493214
0.000480785
0.000468106
0.000455238
0.000442243
0.000429181
0.000416111
0.000403091
0.000390175
0.000377417
0.000364865
0.000352564
0.000340558
0.000328882
0.000317572
0.000306655
0.000296158
0.0002861
0.000276498
0.000267364
0.000258707
0.000250531
0.000242838
0.000235625
0.000228889
0.000222621
0.000216813
0.000211454
0.00020653
0.000202028
0.000197933
0.000194232
0.00019091
0.000187952
0.000185344
0.000183077
0.000181138
0.000179522
0.000178225
0.00017725
0.000176607
0.000176296
0.000491099
0.000502611
0.000513868
0.000524833
0.000535472
0.00054575
0.000555627
0.000565067
0.00057403
0.000582479
0.000590376
0.000597681
0.000604358
0.00061037
0.000615681
0.000620258
0.00062407
0.000627087
0.000629283
0.000630634
0.000631122
0.00063073
0.000629447
0.000627266
0.000624185
0.000620207
0.00061534
0.000609599
0.000603003
0.000595576
0.000587349
0.000578358
0.000568643
0.000558251
0.000547231
0.000535639
0.000523531
0.00051097
0.000498018
0.00048474
0.000471204
0.000457476
0.000443624
0.000429712
0.000415805
0.000401967
0.000388256
0.00037473
0.000361442
0.000348439
0.000335768
0.000323469
0.000311575
0.000300119
0.000289125
0.000278615
0.000268605
0.000259106
0.000250125
0.000241666
0.000233729
0.000226309
0.000219399
0.000212991
0.00020707
0.000201625
0.000196639
0.000192096
0.000187978
0.000184269
0.000180951
0.000178007
0.000175422
0.000173181
0.000171273
0.000169688
0.000168422
0.000167477
0.000166861
0.000166582
0.00049783
0.000509866
0.000521648
0.000533137
0.000544297
0.000555089
0.000565472
0.000575406
0.000584849
0.00059376
0.000602096
0.000609817
0.000616882
0.000623249
0.000628881
0.00063374
0.000637791
0.000641002
0.000643343
0.000644787
0.000645312
0.000644901
0.000643539
0.000641218
0.000637934
0.000633691
0.000628495
0.000622361
0.00061531
0.000607368
0.000598567
0.000588946
0.000578549
0.000567426
0.000555632
0.000543226
0.000530271
0.000516835
0.000502986
0.000488796
0.000474338
0.000459686
0.000444912
0.000430089
0.000415287
0.000400574
0.000386015
0.000371672
0.000357602
0.000343857
0.000330485
0.000317529
0.000305026
0.000293008
0.000281501
0.000270526
0.000260098
0.00025023
0.000240925
0.000232187
0.000224012
0.000216394
0.000209324
0.000202787
0.000196771
0.000191257
0.000186227
0.000181662
0.000177541
0.000173842
0.000170547
0.000167636
0.000165089
0.000162891
0.000161027
0.000159486
0.000158261
0.000157353
0.00015677
0.000156527
0.00050468
0.000517273
0.000529613
0.000541661
0.000553378
0.000564721
0.000575647
0.000586112
0.000596073
0.000605484
0.000614299
0.000622473
0.000629962
0.00063672
0.000642706
0.000647879
0.000652199
0.00065563
0.000658139
0.000659695
0.000660274
0.000659854
0.000658419
0.000655959
0.000652469
0.000647949
0.000642409
0.000635861
0.000628328
0.000619837
0.000610423
0.000600128
0.000589
0.000577093
0.000564466
0.000551184
0.000537317
0.000522938
0.000508123
0.00049295
0.000477501
0.000461854
0.00044609
0.000430289
0.000414527
0.000398879
0.000383414
0.000368201
0.0003533
0.000338769
0.000324658
0.000311012
0.000297872
0.000285269
0.000273231
0.000261779
0.000250927
0.000240687
0.000231061
0.000222048
0.000213645
0.000205842
0.000198625
0.000191979
0.000185886
0.000180325
0.000175273
0.000170708
0.000166604
0.000162939
0.000159689
0.00015683
0.000154341
0.000152203
0.000150399
0.000148915
0.000147743
0.000146881
0.000146337
0.000146136
0.00051164
0.000524823
0.000537757
0.000550402
0.000562713
0.000574646
0.000586155
0.000597194
0.000607714
0.000617666
0.000627001
0.000635669
0.000643622
0.000650811
0.000657189
0.00066271
0.000667332
0.000671012
0.000673715
0.000675406
0.000676057
0.000675642
0.000674142
0.000671545
0.000667844
0.00066304
0.000657138
0.000650154
0.00064211
0.000633035
0.000622966
0.00061195
0.000600036
0.000587285
0.000573762
0.000559537
0.000544686
0.000529291
0.000513434
0.000497202
0.000480683
0.000463965
0.000447137
0.000430284
0.000413492
0.000396842
0.00038041
0.000364269
0.000348485
0.000333121
0.00031823
0.000303861
0.000290054
0.000276844
0.000264258
0.000252318
0.000241037
0.000230424
0.00022048
0.000211202
0.000202583
0.00019461
0.000187266
0.000180532
0.000174385
0.000168801
0.000163753
0.000159213
0.000155154
0.000151548
0.000148367
0.000145584
0.000143176
0.000141118
0.000139392
0.000137981
0.000136874
0.000136067
0.000135569
0.000135415
0.000518697
0.000532507
0.000546073
0.000559352
0.000572298
0.000584863
0.000596999
0.000608655
0.000619779
0.000630318
0.000640218
0.000649425
0.000657886
0.000665549
0.00067236
0.00067827
0.000683229
0.000687193
0.00069012
0.000691972
0.000692715
0.00069232
0.000690766
0.000688036
0.000684122
0.000679023
0.000672744
0.0006653
0.000656714
0.000647017
0.000636249
0.000624458
0.000611702
0.000598043
0.000583553
0.000568311
0.000552399
0.000535906
0.000518924
0.000501548
0.000483875
0.000466002
0.000448027
0.000430044
0.000412145
0.00039442
0.000376953
0.000359823
0.000343101
0.000326854
0.00031114
0.00029601
0.000281508
0.000267668
0.000254519
0.000242081
0.000230367
0.000219382
0.000209128
0.000199597
0.000190778
0.000182655
0.000175206
0.000168409
0.000162236
0.000156658
0.000151643
0.000147159
0.000143175
0.000139657
0.000136573
0.000133894
0.000131591
0.000129637
0.000128009
0.000126687
0.00012566
0.00012492
0.000124475
0.000124373
0.000525838
0.000540312
0.000554549
0.000568505
0.000582129
0.000595372
0.000608181
0.000620502
0.000632278
0.000643452
0.000653966
0.000663762
0.000672781
0.000680964
0.000688254
0.000694595
0.000699934
0.00070422
0.000707405
0.000709446
0.000710306
0.00070995
0.000708354
0.000705498
0.00070137
0.000695967
0.000689294
0.000681365
0.000672204
0.000661845
0.000650329
0.000637708
0.000624045
0.000609408
0.000593877
0.000577536
0.000560477
0.000542797
0.000524598
0.000505986
0.000487065
0.000467946
0.000448732
0.000429531
0.000410443
0.000391565
0.00037299
0.000354803
0.000337083
0.000319901
0.000303319
0.000287391
0.000272163
0.000257671
0.000243943
0.000230999
0.00021885
0.000207499
0.000196945
0.000187176
0.000178177
0.000169928
0.000162403
0.000155573
0.000149406
0.000143867
0.00013892
0.000134527
0.000130651
0.000127256
0.000124303
0.000121758
0.000119588
0.000117762
0.000116255
0.000115044
0.000114113
0.000113453
0.000113066
0.000113023
0.000533046
0.000548223
0.000563174
0.00057785
0.000592199
0.000606168
0.000619699
0.000632736
0.000645216
0.000657079
0.000668262
0.0006787
0.000688329
0.000697086
0.000704906
0.000711728
0.000717492
0.000722142
0.000725623
0.000727888
0.000728892
0.000728599
0.000726976
0.000724001
0.000719659
0.000713945
0.000706861
0.000698423
0.000688653
0.000677587
0.00066527
0.000651759
0.00063712
0.00062143
0.000604773
0.000587243
0.000568943
0.000549978
0.000530462
0.00051051
0.00049024
0.000469771
0.000449221
0.000428706
0.000408336
0.00038822
0.000368458
0.000349142
0.00033036
0.000312186
0.000294688
0.000277923
0.000261939
0.000246773
0.000232453
0.000218997
0.000206414
0.000194706
0.000183866
0.000173879
0.000164726
0.00015638
0.000148811
0.000141984
0.00013586
0.000130399
0.00012556
0.000121298
0.000117571
0.000114335
0.00011155
0.000109174
0.000107169
0.000105502
0.000104142
0.000103063
0.000102246
0.000101681
0.00010136
0.000101382
0.000540302
0.000556224
0.000571933
0.000587376
0.000602499
0.000617244
0.000631552
0.000645359
0.000658601
0.000671211
0.00068312
0.000694259
0.000704557
0.000713944
0.000722351
0.000729708
0.000735949
0.000741011
0.000744833
0.00074736
0.000748542
0.000748336
0.000746706
0.000743624
0.00073907
0.000733038
0.000725527
0.000716552
0.000706137
0.000694319
0.000681145
0.000666677
0.000650987
0.000634158
0.000616284
0.000597468
0.000577822
0.000557464
0.000536519
0.000515114
0.000493382
0.000471452
0.000449456
0.000427521
0.000405771
0.000384323
0.000363287
0.000342765
0.00032285
0.000303625
0.000285161
0.000267519
0.000250748
0.000234887
0.000219962
0.000205991
0.00019298
0.000180926
0.00016982
0.00015964
0.000150363
0.000141956
0.000134381
0.000127598
0.000121562
0.000116225
0.000111539
0.000107454
0.000103921
0.000100889
9.83127e-05
9.61449e-05
9.43429e-05
9.28672e-05
9.1683e-05
9.07606e-05
9.00777e-05
8.96201e-05
8.93821e-05
8.94734e-05
0.000547583
0.000564294
0.000580807
0.000597066
0.000613015
0.000628592
0.000643733
0.00065837
0.000672434
0.000685854
0.000698553
0.000710457
0.000721489
0.000731571
0.000740626
0.000748579
0.000755354
0.000760882
0.000765095
0.000767928
0.000769327
0.00076924
0.000767625
0.00076445
0.00075969
0.000753334
0.000745381
0.000735842
0.000724744
0.000712122
0.000698031
0.000682534
0.000665711
0.000647652
0.00062846
0.000608249
0.000587142
0.000565271
0.000542774
0.000519792
0.000496472
0.000472958
0.000449395
0.000425925
0.000402684
0.000379801
0.000357398
0.000335585
0.000314465
0.000294125
0.000274642
0.000256081
0.000238493
0.000221916
0.000206377
0.00019189
0.000178459
0.000166078
0.000154729
0.000144389
0.000135025
0.000126598
0.000119063
0.000112373
0.000106475
0.000101314
9.68341e-05
9.29783e-05
8.96897e-05
8.69125e-05
8.45924e-05
8.26774e-05
8.11186e-05
7.98713e-05
7.88957e-05
7.81577e-05
7.76313e-05
7.7299e-05
7.71556e-05
7.73218e-05
0.000554863
0.000572409
0.000589775
0.000606903
0.000623733
0.0006402
0.000656234
0.000671766
0.000686718
0.000701015
0.000714574
0.000727313
0.000739149
0.000749996
0.000759769
0.000768385
0.00077576
0.000781815
0.000786474
0.000789665
0.000791324
0.000791393
0.000789822
0.000786571
0.000781613
0.00077493
0.000766519
0.000756389
0.000744567
0.00073109
0.000716015
0.000699412
0.000681365
0.000661974
0.000641353
0.000619628
0.000596934
0.000573417
0.000549231
0.000524534
0.000499486
0.000474251
0.000448989
0.000423856
0.000399003
0.000374574
0.000350701
0.000327506
0.0003051
0.000283578
0.000263021
0.000243499
0.000225063
0.000207752
0.000191592
0.000176594
0.000162758
0.000150071
0.000138512
0.000128049
0.000118641
0.000110244
0.000102803
9.62619e-05
9.05604e-05
8.56352e-05
8.14217e-05
7.78547e-05
7.48694e-05
7.24026e-05
7.03924e-05
6.87802e-05
6.75107e-05
6.65333e-05
6.58026e-05
6.52801e-05
6.49358e-05
6.4748e-05
6.47112e-05
6.49596e-05
0.000562114
0.000580541
0.000598812
0.000616864
0.000634633
0.000652051
0.000669045
0.000685539
0.000701451
0.000716698
0.000731192
0.000744844
0.000757561
0.00076925
0.000779818
0.000789172
0.000797219
0.00080387
0.000809039
0.000812647
0.000814617
0.000814884
0.00081339
0.000810088
0.000804943
0.000797932
0.000789049
0.000778301
0.000765712
0.000751324
0.000735194
0.000717399
0.00069803
0.000677197
0.000655025
0.000631653
0.000607231
0.000581921
0.000555895
0.000529327
0.000502399
0.000475291
0.000448181
0.000421244
0.000394647
0.000368548
0.000343094
0.000318419
0.000294641
0.000271865
0.000250177
0.00022965
0.000210337
0.000192277
0.000175493
0.000159993
0.000145771
0.000132809
0.000121077
0.000110537
0.000101139
9.28284e-05
8.55433e-05
7.92171e-05
7.37797e-05
6.91584e-05
6.52795e-05
6.20688e-05
5.94529e-05
5.73597e-05
5.57196e-05
5.44665e-05
5.35381e-05
5.28771e-05
5.24321e-05
5.21597e-05
5.20256e-05
5.20034e-05
5.20869e-05
5.24254e-05
0.000569301
0.000588661
0.000607888
0.000626921
0.000645692
0.000664127
0.00068215
0.000699679
0.000716628
0.000732904
0.000748415
0.000763063
0.000776746
0.000789363
0.000800811
0.000810986
0.000819786
0.000827111
0.000832864
0.000836954
0.000839295
0.000839811
0.000838434
0.000835109
0.000829793
0.000822457
0.000813089
0.000801695
0.000788296
0.000772936
0.000755676
0.000736596
0.000715798
0.000693401
0.000669542
0.000644375
0.000618069
0.000590803
0.000562767
0.000534159
0.000505178
0.000476028
0.000446907
0.00041801
0.000389522
0.000361619
0.000334462
0.000308198
0.000282957
0.000258851
0.000235973
0.000214397
0.00019418
0.000175358
0.000157952
0.000141964
0.000127383
0.000114183
0.000102326
9.17639e-05
8.2438e-05
7.42825e-05
6.7225e-05
6.11884e-05
5.6092e-05
5.18525e-05
4.83859e-05
4.5608e-05
4.34356e-05
4.17874e-05
4.05851e-05
3.97544e-05
3.9225e-05
3.89322e-05
3.88185e-05
3.88349e-05
3.89421e-05
3.91089e-05
3.9328e-05
3.97646e-05
0.000576385
0.000596728
0.000616969
0.000637044
0.000656881
0.000676403
0.00069553
0.000714172
0.000732239
0.000749631
0.000766248
0.000781982
0.000796725
0.000810364
0.000822786
0.000833876
0.00084352
0.000851606
0.000858025
0.000862673
0.000865453
0.000866277
0.000865065
0.000861753
0.000856287
0.000848633
0.000838771
0.000826703
0.000812449
0.000796053
0.000777579
0.000757115
0.000734769
0.000710673
0.000684978
0.000657855
0.000629489
0.000600084
0.000569851
0.00053901
0.000507786
0.000476406
0.000445092
0.000414061
0.000383521
0.000353665
0.000324672
0.000296703
0.0002699
0.000244384
0.000220254
0.000197587
0.00017644
0.000156848
0.000138826
0.000122373
0.000107468
9.40775e-05
8.21528e-05
7.16346e-05
6.24535e-05
5.45317e-05
4.77848e-05
4.21238e-05
3.74561e-05
3.36869e-05
3.07206e-05
2.84617e-05
2.68165e-05
2.56937e-05
2.50053e-05
2.46674e-05
2.46015e-05
2.47349e-05
2.50032e-05
2.53511e-05
2.57342e-05
2.61161e-05
2.64876e-05
2.70308e-05
0.000583324
0.000604702
0.000626015
0.000647195
0.000668167
0.00068885
0.000709158
0.000728998
0.00074827
0.000766871
0.000784689
0.000801611
0.000817515
0.00083228
0.00084578
0.000857888
0.000868478
0.000877423
0.000884601
0.000889895
0.000893193
0.000894393
0.000893404
0.000890148
0.000884562
0.0008766
0.000866237
0.000853469
0.000838314
0.000820815
0.000801039
0.00077908
0.000755057
0.000729114
0.000701416
0.000672155
0.000641537
0.000609789
0.000577147
0.00054386
0.000510179
0.000476359
0.000442649
0.000409292
0.000376519
0.000344547
0.000313573
0.000283773
0.000255303
0.000228293
0.000202848
0.000179047
0.000156948
0.000136583
0.000117961
0.000101073
8.58895e-05
7.23658e-05
6.0442e-05
5.00458e-05
4.10947e-05
3.34977e-05
2.7157e-05
2.197e-05
1.78311e-05
1.46322e-05
1.22652e-05
1.06225e-05
9.59862e-06
9.09117e-06
9.00132e-06
9.23506e-06
9.70454e-06
1.03289e-05
1.10354e-05
1.17622e-05
1.24595e-05
1.30853e-05
1.36275e-05
1.42869e-05
0.000590068
0.000612537
0.000634982
0.000657331
0.00067951
0.000701431
0.000723004
0.00074413
0.000764703
0.000784612
0.000803737
0.000821953
0.00083913
0.000855135
0.000869828
0.00088307
0.000894719
0.000904634
0.000912678
0.000918717
0.000922624
0.000924281
0.000923583
0.000920436
0.000914765
0.000906514
0.000895648
0.000882156
0.000866052
0.000847378
0.000826205
0.000802633
0.00077679
0.000748835
0.000718951
0.000687349
0.000654262
0.000619942
0.000584656
0.000548682
0.000512305
0.00047581
0.000439477
0.00040358
0.000368376
0.000334107
0.000300992
0.000269225
0.000238975
0.000210383
0.000183558
0.000158584
0.000135516
0.000114381
9.51827e-05
7.79011e-05
6.24962e-05
4.89102e-05
3.70693e-05
2.68869e-05
1.82651e-05
1.10983e-05
5.27329e-06
6.72532e-07
-2.82453e-06
-5.3401e-06
-6.99611e-06
-7.91345e-06
-8.21061e-06
-8.0024e-06
-7.3993e-06
-6.5063e-06
-5.4211e-06
-4.23407e-06
-3.02675e-06
-1.86846e-06
-8.14585e-07
8.67168e-08
8.20128e-07
1.60576e-06
0.000596563
0.000620177
0.000643815
0.000667403
0.000690863
0.000714104
0.00073703
0.000759537
0.000781512
0.000802836
0.000823379
0.000843008
0.000861581
0.00087895
0.000894964
0.000909467
0.000922303
0.000933313
0.000942343
0.000949241
0.000953862
0.00095607
0.000955742
0.000952769
0.00094706
0.000938545
0.000927178
0.00091294
0.000895839
0.000875917
0.000853245
0.00082793
0.000800111
0.000769962
0.000737687
0.000703519
0.00066772
0.000630573
0.000592377
0.000553447
0.000514104
0.000474669
0.00043546
0.000396783
0.000358927
0.000322162
0.000286732
0.00025285
0.0002207
0.000190432
0.000162165
0.000135981
0.000111932
9.00405e-05
7.03002e-05
5.26793e-05
3.71241e-05
2.35612e-05
1.19011e-05
2.03988e-06
-6.13697e-06
-1.27526e-05
-1.79369e-05
-2.18243e-05
-2.45515e-05
-2.62564e-05
-2.70761e-05
-2.71461e-05
-2.65991e-05
-2.55635e-05
-2.41622e-05
-2.25121e-05
-2.0722e-05
-1.88929e-05
-1.71155e-05
-1.54674e-05
-1.40097e-05
-1.27984e-05
-1.18512e-05
-1.09287e-05
0.000602747
0.000627563
0.000652457
0.000677356
0.000702173
0.000726819
0.000751191
0.000775179
0.000798663
0.000821517
0.000843601
0.00086477
0.000884871
0.000903743
0.000921218
0.000937125
0.000951289
0.000963535
0.000973687
0.000981573
0.000987029
0.000989898
0.000990036
0.000987314
0.000981624
0.000972881
0.000961023
0.000946021
0.000927877
0.000906627
0.000882347
0.000855149
0.000825182
0.000792639
0.000757744
0.000720758
0.000681974
0.00064171
0.000600306
0.000558116
0.000515504
0.000472833
0.000430462
0.000388737
0.000347983
0.000308502
0.000270564
0.000234406
0.000200228
0.000168191
0.000138418
0.000110992
8.59603e-05
6.33366e-05
4.31025e-05
2.52118e-05
9.59393e-06
-3.84259e-06
-1.52065e-05
-2.46207e-05
-3.22193e-05
-3.81451e-05
-4.25467e-05
-4.55768e-05
-4.73899e-05
-4.81412e-05
-4.79844e-05
-4.70711e-05
-4.55492e-05
-4.35616e-05
-4.12449e-05
-3.87291e-05
-3.61356e-05
-3.35765e-05
-3.11524e-05
-2.89499e-05
-2.70363e-05
-2.54763e-05
-2.42905e-05
-2.322e-05
0.00060855
0.000634625
0.00066084
0.00068712
0.000713376
0.000739515
0.000765431
0.000791006
0.000816115
0.000840621
0.000864377
0.000887225
0.000908999
0.000929523
0.000948614
0.000966083
0.000981735
0.000995373
0.0010068
0.00101583
0.00102226
0.00102591
0.00102663
0.00102425
0.00101865
0.00100973
0.000997398
0.00098162
0.000962386
0.00093973
0.000913725
0.00088449
0.000852187
0.000817026
0.000779256
0.00073917
0.000697094
0.000653389
0.000608438
0.000562644
0.000516419
0.000470177
0.000424323
0.000379249
0.000335322
0.000292881
0.000252226
0.00021362
0.000177279
0.000143375
0.000112036
8.33428e-05
5.73369e-05
3.40194e-05
1.33565e-05
-4.71608e-06
-2.02893e-05
-3.3476e-05
-4.44074e-05
-5.32284e-05
-6.00954e-05
-6.5173e-05
-6.86305e-05
-7.06409e-05
-7.1378e-05
-7.10159e-05
-6.97264e-05
-6.76784e-05
-6.50361e-05
-6.19582e-05
-5.85963e-05
-5.50947e-05
-5.15885e-05
-4.82017e-05
-4.50461e-05
-4.22176e-05
-3.97913e-05
-3.78393e-05
-3.63877e-05
-3.51573e-05
0.000613897
0.000641287
0.000668888
0.000696622
0.0007244
0.000752125
0.000779685
0.00080696
0.000833815
0.000860105
0.000885673
0.00091035
0.000933954
0.000956296
0.000977173
0.000996378
0.0010137
0.0010289
0.00104178
0.00105211
0.00105968
0.00106427
0.0010657
0.00106378
0.00105836
0.00104931
0.00103654
0.00101998
0.000999617
0.000975472
0.000947618
0.00091618
0.000881334
0.000843308
0.000802379
0.000758873
0.00071316
0.000665645
0.000616765
0.000566977
0.00051675
0.000466556
0.000416856
0.000368095
0.000320688
0.000275016
0.000231415
0.000190173
0.000151526
0.000115658
8.26977e-05
5.27238e-05
2.57664e-05
1.81124e-06
-1.91951e-05
-3.73395e-05
-5.27372e-05
-6.55271e-05
-7.58658e-05
-8.39243e-05
-8.98839e-05
-9.39329e-05
-9.62639e-05
-9.7072e-05
-9.65521e-05
-9.48987e-05
-9.23029e-05
-8.89518e-05
-8.50276e-05
-8.07061e-05
-7.61555e-05
-7.15353e-05
-6.69951e-05
-6.26725e-05
-5.86916e-05
-5.51574e-05
-5.21561e-05
-4.97646e-05
-4.80174e-05
-4.66136e-05
0.000618701
0.000647463
0.000676516
0.000705779
0.000735165
0.000764567
0.00079388
0.00082297
0.000851699
0.000879913
0.000907444
0.00093411
0.000959716
0.000984056
0.00100691
0.00102804
0.00104722
0.0010642
0.00107873
0.00109056
0.00109944
0.00110514
0.00110743
0.00110611
0.00110098
0.00109189
0.00107872
0.00106138
0.00103985
0.00101413
0.000984297
0.000950478
0.00091286
0.000871693
0.000827286
0.000780003
0.00073026
0.000678518
0.000625273
0.000571047
0.000516375
0.000461798
0.000407841
0.000355012
0.000303781
0.000254577
0.000207777
0.000163698
0.000122598
8.46683e-05
5.00405e-05
1.87853e-05
-9.08209e-06
-3.35963e-05
-5.48356e-05
-7.29147e-05
-8.79789e-05
-0.000100197
-0.000109756
-0.000116856
-0.000121707
-0.000124523
-0.000125522
-0.000124924
-0.000122946
-0.000119803
-0.000115708
-0.000110867
-0.000105483
-9.97486e-05
-9.38505e-05
-8.79648e-05
-8.22566e-05
-7.68789e-05
-7.19691e-05
-6.76412e-05
-6.39943e-05
-6.11122e-05
-5.9036e-05
-5.74448e-05
0.000622869
0.000653058
0.000683626
0.000714494
0.00074557
0.000776745
0.000807925
0.000838954
0.000869692
0.000899977
0.000929631
0.00095846
0.000986253
0.00101279
0.00103782
0.0010611
0.00108236
0.00110133
0.00111773
0.00113128
0.00114169
0.0011487
0.00115204
0.00115147
0.00114676
0.00113773
0.00112422
0.00110613
0.00108339
0.00105602
0.00102407
0.000987675
0.000947035
0.000902422
0.000854179
0.000802714
0.000748497
0.000692052
0.000633945
0.000574773
0.000515152
0.000455699
0.000397018
0.000339689
0.000284247
0.000231178
0.000180902
0.000133772
9.0064e-05
4.99808e-05
1.3651e-05
-1.88669e-05
-4.75785e-05
-7.25448e-05
-9.38758e-05
-0.000111721
-0.00012626
-0.0001377
-0.000146261
-0.000152178
-0.000155691
-0.000157043
-0.000156481
-0.000154248
-0.000150588
-0.000145737
-0.000139929
-0.000133394
-0.000126352
-0.000119018
-0.000111597
-0.000104283
-9.72596e-05
-9.06958e-05
-8.47434e-05
-7.9521e-05
-7.51523e-05
-7.17226e-05
-6.92815e-05
-6.7488e-05
0.000626295
0.000657964
0.000690111
0.000722658
0.000755517
0.000788585
0.000821723
0.000854813
0.000887699
0.000920212
0.00095216
0.000983338
0.00101352
0.00104246
0.0010699
0.00109556
0.00111914
0.00114036
0.00115888
0.0011744
0.00118659
0.00119514
0.00119974
0.00120011
0.00119599
0.00118714
0.00117338
0.00115456
0.00113061
0.0011015
0.00106729
0.0010281
0.000984167
0.000935767
0.000883286
0.000827182
0.000767986
0.000706295
0.000642757
0.000578059
0.000512908
0.000448016
0.000384078
0.000321759
0.000261671
0.000204364
0.000150311
9.98991e-05
5.34283e-05
1.11076e-05
-2.69411e-05
-6.06778e-05
-9.01359e-05
-0.000115412
-0.000136655
-0.000154058
-0.000167845
-0.000178263
-0.000185573
-0.000190048
-0.000191962
-0.000191592
-0.000189212
-0.000185093
-0.000179502
-0.000172701
-0.000164947
-0.000156491
-0.000147575
-0.000138436
-0.000129298
-0.000120377
-0.000111875
-0.000103978
-9.68518e-05
-9.06372e-05
-8.54579e-05
-8.14161e-05
-7.857e-05
-7.65575e-05
0.000628866
0.000662065
0.000695851
0.00073015
0.000764872
0.000799912
0.000835142
0.000870428
0.000905613
0.000940516
0.000974941
0.00100867
0.00104145
0.00107303
0.00110312
0.00113142
0.0011576
0.00118134
0.00120227
0.00122004
0.00123428
0.00124464
0.00125076
0.0012523
0.00124896
0.00124045
0.00122654
0.00120706
0.00118188
0.00115096
0.00111434
0.00107215
0.00102461
0.000972045
0.000914874
0.000853611
0.000788859
0.000721299
0.000651676
0.000580783
0.000509435
0.000438456
0.000368651
0.000300785
0.000235559
0.0001736
0.000115439
6.15038e-05
1.21161e-05
-3.25119e-05
-7.22714e-05
-0.000107149
-0.000137215
-0.000162614
-0.000183545
-0.000200252
-0.000213012
-0.000222121
-0.000227888
-0.000230626
-0.000230649
-0.000228267
-0.000223785
-0.000217501
-0.000209707
-0.000200692
-0.000190734
-0.000180108
-0.000169081
-0.000157909
-0.000146842
-0.000136117
-0.000125957
-0.000116566
-0.000108122
-0.000100795
-9.47122e-05
-8.99884e-05
-8.66932e-05
-8.44433e-05
0.000630456
0.000665229
0.000700712
0.000736833
0.000773502
0.000810616
0.000848052
0.000885668
0.000923303
0.000960769
0.000997861
0.00103434
0.00106996
0.00110443
0.00113744
0.00116866
0.00119775
0.00122431
0.00124797
0.00126831
0.00128493
0.00129741
0.00130534
0.00130832
0.001306
0.00129803
0.00128412
0.00126405
0.00123765
0.00120486
0.00116568
0.00112024
0.00106877
0.00101162
0.000949247
0.000882235
0.000811266
0.000737122
0.000660661
0.000582798
0.000504483
0.000426671
0.000350297
0.000276245
0.000205326
0.000138253
7.5624e-05
1.79125e-05
-3.45402e-05
-8.15235e-05
-0.00012295
-0.000158845
-0.00018933
-0.000214608
-0.000234944
-0.000250646
-0.000262052
-0.000269518
-0.000273404
-0.000274072
-0.000271876
-0.000267161
-0.000260262
-0.000251507
-0.000241215
-0.000229695
-0.000217253
-0.000204187
-0.000190786
-0.000177333
-0.000164103
-0.000151356
-0.000139338
-0.000128272
-0.000118354
-0.000109783
-0.000102692
-9.72091e-05
-9.34159e-05
-9.09083e-05
0.000630927
0.000667315
0.000704548
0.000742556
0.000781255
0.000820542
0.000860298
0.000900377
0.000940619
0.000980827
0.00102079
0.00106025
0.00109895
0.00113657
0.0011728
0.00120726
0.00123957
0.00126931
0.00129605
0.00131934
0.00133869
0.00135365
0.00136373
0.00136848
0.00136746
0.00136027
0.00134654
0.001326
0.00129843
0.00126371
0.00122183
0.00117288
0.00111712
0.00105491
0.00098676
0.000913325
0.000835383
0.000753828
0.000669654
0.000583925
0.000497747
0.000412237
0.000328483
0.000247516
0.000170273
9.75702e-05
3.00839e-05
-3.16653e-05
-8.73174e-05
-0.000136671
-0.000179673
-0.000216402
-0.000247049
-0.000271893
-0.000291282
-0.000305601
-0.000315266
-0.000320699
-0.00032232
-0.000320541
-0.00031576
-0.000308357
-0.0002987
-0.000287143
-0.000274028
-0.00025969
-0.000244459
-0.000228655
-0.000212595
-0.000196588
-0.000180936
-0.000165927
-0.00015183
-0.00013888
-0.000127326
-0.000117364
-0.000109147
-0.000102819
-9.84732e-05
-9.56855e-05
0.00063013
0.000668167
0.000707195
0.000747152
0.000787958
0.000829515
0.000871705
0.000914387
0.000957388
0.00100052
0.00104355
0.00108623
0.00112827
0.00116934
0.0012091
0.00124714
0.00128304
0.00131634
0.00134657
0.00137321
0.00139572
0.00141357
0.00142621
0.0014331
0.00143372
0.0014276
0.0014143
0.00139345
0.00136477
0.00132809
0.00128336
0.00123065
0.0011702
0.0011024
0.00102783
0.000947199
0.00086141
0.000771488
0.000678586
0.000583944
0.000488861
0.000394644
0.000302572
0.000213848
0.000129563
5.06552e-05
-2.21097e-05
-8.81599e-05
-0.000147121
-0.000198813
-0.000243234
-0.000280536
-0.000311002
-0.000335012
-0.000353013
-0.000365494
-0.000372958
-0.000375905
-0.000374822
-0.000370176
-0.000362406
-0.00035193
-0.000339144
-0.000324426
-0.000308141
-0.000290647
-0.000272295
-0.000253432
-0.000234402
-0.000215542
-0.000197183
-0.000179645
-0.000163224
-0.000148158
-0.000134781
-0.000123267
-0.000113795
-0.000106525
-0.000101567
-9.84731e-05
0.000627904
0.000667614
0.000708475
0.000750434
0.000793417
0.000837334
0.000882069
0.000927483
0.000973403
0.00101965
0.00106597
0.00111211
0.00115777
0.00120259
0.00124621
0.0012882
0.0013281
0.00136539
0.00139955
0.00143
0.00145615
0.00147737
0.00149303
0.00150251
0.0015052
0.00150051
0.00148792
0.00146698
0.00143731
0.00139867
0.00135095
0.00129419
0.00122862
0.00115466
0.00107292
0.000984227
0.000889583
0.000790183
0.000687366
0.000582589
0.000477377
0.000373273
0.000271787
0.000174334
8.21873e-05
-3.56682e-06
-8.20617e-05
-0.000152671
-0.000215013
-0.000268944
-0.000314537
-0.000352048
-0.000381881
-0.000404544
-0.000420615
-0.000430705
-0.000435424
-0.000435363
-0.000431081
-0.0004231
-0.000411902
-0.000397938
-0.000381627
-0.000363366
-0.000343541
-0.000322528
-0.000300701
-0.000278431
-0.000256089
-0.000234044
-0.000212663
-0.000192293
-0.00017325
-0.000155868
-0.000140439
-0.00012719
-0.000116318
-0.000107998
-0.000102364
-9.89303e-05
0.000624074
0.000665471
0.000708194
0.000752198
0.000797421
0.000843779
0.000891164
0.000939442
0.00098845
0.00103798
0.00108781
0.00113767
0.00118723
0.00123614
0.00128399
0.00133033
0.00137465
0.0014164
0.001455
0.00148979
0.0015201
0.00154524
0.00156447
0.00157706
0.0015823
0.00157949
0.00156799
0.00154723
0.00151674
0.00147618
0.00142536
0.00136427
0.00129313
0.00121235
0.00112262
0.00102485
0.000920182
0.000810005
0.000695884
0.000579529
0.000462748
0.00034737
0.000235187
0.000127874
2.69271e-05
-6.63905e-05
-0.000151095
-0.000226503
-0.000292237
-0.000348214
-0.000394613
-0.000431834
-0.000460439
-0.000481106
-0.000494576
-0.000501609
-0.000502943
-0.000499275
-0.000491242
-0.000479415
-0.000464315
-0.000446421
-0.000426169
-0.000403966
-0.000380208
-0.000355292
-0.000329609
-0.000303554
-0.000277528
-0.000251931
-0.000227175
-0.000203632
-0.000181676
-0.000161695
-0.000143978
-0.000128791
-0.000116356
-0.000106869
-0.000100488
-9.66737e-05
0.000618453
0.000661538
0.000706138
0.00075222
0.000799733
0.000848604
0.000898735
0.000949998
0.00100223
0.00105523
0.00110881
0.00116265
0.00121642
0.00126975
0.00132222
0.00137333
0.00142256
0.00146929
0.00151287
0.00155258
0.00158768
0.00161736
0.00164078
0.00165711
0.00166549
0.00166509
0.00165514
0.00163493
0.00160386
0.00156146
0.00150746
0.00144177
0.00136456
0.00127625
0.00117759
0.00106957
0.000953536
0.000831065
0.000703999
0.000574364
0.000444305
0.000316009
0.000191615
7.31193e-05
-3.77059e-05
-0.000139387
-0.000230804
-0.000311216
-0.000380267
-0.000437965
-0.000484644
-0.000520894
-0.000547496
-0.000565343
-0.000575384
-0.000578559
-0.00057576
-0.000567804
-0.000555411
-0.00053919
-0.000519682
-0.000497398
-0.000472776
-0.000446217
-0.000418119
-0.000388891
-0.000358944
-0.000328699
-0.000298582
-0.000269015
-0.0002405
-0.00021338
-0.000188215
-0.000165318
-0.000145041
-0.000127687
-0.000113504
-0.000102716
-9.55233e-05
-9.12725e-05
0.000610839
0.0006556
0.000702077
0.000750254
0.000800093
0.000851537
0.000904498
0.000958863
0.00101448
0.00107118
0.00112868
0.00118674
0.00124503
0.00130314
0.00136063
0.00141699
0.00147163
0.0015239
0.00157308
0.00161837
0.00165894
0.00169388
0.00172223
0.001743
0.00175522
0.00175788
0.00175006
0.00173086
0.00169954
0.00165548
0.00159826
0.00152769
0.00144389
0.00134727
0.00123861
0.00111903
0.000990039
0.00085349
0.00071154
0.000566594
0.000421221
0.000278047
0.000139644
8.41058e-06
-0.000113541
-0.00022448
-0.000323128
-0.000408688
-0.000480851
-0.000539764
-0.000585976
-0.000620344
-0.00064393
-0.000657913
-0.000663508
-0.00066187
-0.000654067
-0.000641054
-0.000623641
-0.000602448
-0.000577999
-0.000550861
-0.000521438
-0.000490105
-0.000457249
-0.000423281
-0.00038863
-0.000353749
-0.000319114
-0.000285061
-0.000252345
-0.000221345
-0.000192545
-0.000166375
-0.00014323
-0.000123446
-0.000107304
-9.50608e-05
-8.69958e-05
-8.22585e-05
0.00060102
0.000647425
0.000695764
0.000746035
0.00079822
0.000852277
0.000908138
0.000965701
0.00102483
0.00108535
0.00114703
0.0012096
0.00127271
0.00133597
0.00139892
0.00146101
0.00152161
0.00158003
0.00163548
0.00168709
0.0017339
0.00177491
0.00180901
0.00183509
0.00185196
0.00185847
0.00185347
0.00183589
0.00180477
0.0017593
0.00169888
0.00162321
0.00153228
0.00142648
0.00130662
0.00117395
0.00103017
0.000877431
0.000718287
0.000555603
0.000392468
0.000232059
7.74948e-05
-6.83206e-05
-0.000202848
-0.000324043
-0.000430439
-0.000521198
-0.000596084
-0.000655453
-0.000700159
-0.000731422
-0.000750682
-0.000759473
-0.000759368
-0.000751781
-0.000737967
-0.000719037
-0.000695914
-0.000669174
-0.000639194
-0.000606774
-0.00057213
-0.000535614
-0.000497581
-0.000458426
-0.000418595
-0.000378566
-0.000338857
-0.000299987
-0.000262575
-0.000227167
-0.000194296
-0.000164456
-0.000138092
-0.000115582
-9.7237e-05
-8.33333e-05
-7.41853e-05
-6.93202e-05
0.00058877
0.00063677
0.000686932
0.000739277
0.000793806
0.000850498
0.000909305
0.000970146
0.0010329
0.00109741
0.00116347
0.00123079
0.00129905
0.00136784
0.00143668
0.00150501
0.00157217
0.0016374
0.00169986
0.00175858
0.00181251
0.0018605
0.00190133
0.00193367
0.00195618
0.00196747
0.00196616
0.00195095
0.00192062
0.00187411
0.00181063
0.00172966
0.00163106
0.00151515
0.00138274
0.00123521
0.00107449
0.000903068
0.000723965
0.000540615
0.000356754
0.000176254
2.92781e-06
-0.000159674
-0.000308472
-0.000441028
-0.000555671
-0.000651537
-0.000728492
-0.000787203
-0.000828965
-0.00085549
-0.000868735
-0.000870626
-0.000863273
-0.000848387
-0.000827438
-0.000801665
-0.000771986
-0.000739043
-0.000703281
-0.000665135
-0.000624873
-0.000582767
-0.000539128
-0.000494331
-0.000448825
-0.000403128
-0.000357815
-0.000313505
-0.000270854
-0.000230501
-0.000193061
-0.000159101
-0.000129123
-0.000103555
-8.27406e-05
-6.69946e-05
-5.67383e-05
-5.15203e-05
0.000573852
0.000623374
0.000675299
0.000729672
0.000786517
0.00084584
0.000907618
0.000971793
0.00103827
0.00110691
0.00117752
0.00124984
0.00132356
0.00139826
0.00147346
0.00154856
0.00162289
0.00169564
0.0017659
0.00183261
0.00189462
0.00195064
0.00199928
0.00203903
0.00206831
0.0020855
0.00208894
0.00207704
0.00204827
0.00200128
0.00193498
0.00184859
0.00174179
0.00161477
0.00146831
0.00130389
0.00112369
0.000930613
0.000728221
0.000520649
0.000312444
0.000108358
-8.69011e-05
-0.00026895
-0.00043401
-0.000579149
-0.000702464
-0.000803157
-0.000881132
-0.000937579
-0.000974411
-0.000993986
-0.000998955
-0.00099194
-0.000975449
-0.000951642
-0.000922258
-0.000888636
-0.000851704
-0.000812044
-0.000770006
-0.000725814
-0.000679618
-0.000631578
-0.000581931
-0.000531021
-0.000479308
-0.000427356
-0.00037582
-0.000325412
-0.000276881
-0.00023097
-0.000188388
-0.000149792
-0.000115754
-8.67523e-05
-6.31607e-05
-4.53238e-05
-3.39592e-05
-2.82154e-05
0.00055602
0.000606965
0.000660565
0.000716891
0.000775997
0.000837917
0.000902658
0.000970194
0.00104046
0.00111334
0.00118867
0.00126622
0.00134568
0.00142667
0.00150867
0.0015911
0.00167325
0.00175427
0.00183318
0.00190885
0.00198
0.00204521
0.0021029
0.00215135
0.00218874
0.00221316
0.00222263
0.00221521
0.002189
0.00214228
0.00207358
0.00198179
0.0018663
0.0017271
0.0015649
0.00138126
0.00117861
0.000960315
0.000730599
0.000494458
0.000257455
2.54683e-05
-0.000195639
-0.000400383
-0.000584068
-0.0007431
-0.000875297
-0.000980406
-0.00105774
-0.00110959
-0.00113877
-0.0011485
-0.00114233
-0.00112371
-0.00109579
-0.00106119
-0.00102194
-0.000979447
-0.000934593
-0.000887797
-0.000839185
-0.000788736
-0.000736387
-0.00068213
-0.000626098
-0.000568592
-0.000510088
-0.00045122
-0.000392741
-0.000335488
-0.000280335
-0.000228152
-0.000179767
-0.000135945
-9.73374e-05
-6.44874e-05
-3.77705e-05
-1.74024e-05
-5.19129e-06
1.35847e-06
0.000535018
0.00058726
0.000642416
0.000700588
0.000761864
0.000826312
0.000893974
0.000964861
0.00103894
0.00111615
0.00119633
0.00127931
0.0013648
0.0014524
0.00154166
0.00163197
0.00172261
0.00181268
0.00190115
0.00198682
0.00206828
0.00214396
0.00221209
0.00227074
0.00231779
0.002351
0.00236805
0.00236655
0.00234418
0.00229874
0.0022283
0.00213128
0.00200669
0.00185422
0.00167442
0.00146886
0.00124026
0.000992464
0.000730511
0.000460446
0.000189117
-7.61589e-05
-0.000328006
-0.000559473
-0.000764623
-0.000938889
-0.00107948
-0.0011891
-0.00126279
-0.00130681
-0.00132463
-0.00132064
-0.00129958
-0.00126598
-0.00122382
-0.00117626
-0.00112559
-0.00107326
-0.00101995
-0.000965797
-0.000910553
-0.000853832
-0.000795261
-0.000734601
-0.000671839
-0.00060723
-0.000541284
-0.000474734
-0.000408474
-0.000343503
-0.000280861
-0.000221574
-0.000166614
-0.000116891
-7.31314e-05
-3.59977e-05
-5.91999e-06
1.67567e-05
3.13252e-05
3.82707e-05
0.000510585
0.000563964
0.000620523
0.000680398
0.000743714
0.000810579
0.000881076
0.000955259
0.00103315
0.0011147
0.00119984
0.0012884
0.00138014
0.00147471
0.00157165
0.00167038
0.00177017
0.00187011
0.0019691
0.00206587
0.0021589
0.00224647
0.00232661
0.00239714
0.00245563
0.00249949
0.00252595
0.00253216
0.00251525
0.00247244
0.0024012
0.00229937
0.00216541
0.00199856
0.00179911
0.00156856
0.00130985
0.0010274
0.000727188
0.000416558
0.000103982
-0.000201375
-0.000490165
-0.000753426
-0.000983436
-0.00117486
-0.00132482
-0.00143341
-0.00150144
-0.00153342
-0.00153485
-0.00151196
-0.00147112
-0.00141829
-0.00135847
-0.00129547
-0.0012318
-0.00116879
-0.00110678
-0.00104538
-0.000983789
-0.00092108
-0.000856439
-0.000789314
-0.000719518
-0.000647259
-0.000573118
-0.000497978
-0.000422936
-0.000349211
-0.000278059
-0.0002107
-0.000148245
-9.18677e-05
-4.22391e-05
-3.18571e-07
3.35724e-05
5.90319e-05
7.55858e-05
8.32301e-05
0.000482457
0.000536778
0.000594548
0.000655941
0.000721123
0.000790246
0.000863443
0.000940816
0.00102244
0.00110833
0.00119845
0.00129269
0.00139087
0.00149269
0.00159771
0.00170539
0.001815
0.00192562
0.00203613
0.00214516
0.00225112
0.00235212
0.002446
0.0025303
0.00260229
0.00265894
0.00269701
0.00271309
0.00270366
0.00266524
0.00259454
0.00248864
0.00234525
0.00216299
0.00194166
0.00168259
0.00138886
0.00106551
0.000719612
0.000360124
-2.42988e-06
-0.00035651
-0.000690213
-0.000991624
-0.0012507
-0.00146059
-0.00161848
-0.0017244
-0.00178116
-0.00179463
-0.00177263
-0.00172382
-0.00165681
-0.00157937
-0.0014978
-0.00141659
-0.00133839
-0.0012642
-0.0011937
-0.00112571
-0.00105857
-0.000990576
-0.000920316
-0.00084683
-0.000769728
-0.000689201
-0.000605959
-0.000521121
-0.000436075
-0.000352344
-0.000271472
-0.000194935
-0.000123793
-6.00674e-05
-3.54521e-06
4.36262e-05
8.17006e-05
0.000110279
0.000128888
0.000137316
0.000450367
0.000505398
0.000564146
0.000626826
0.00069365
0.000764819
0.00084052
0.000920917
0.00100614
0.00109627
0.00119135
0.00129132
0.00139607
0.00150536
0.00161882
0.00173588
0.00185597
0.0019781
0.00210112
0.00222364
0.00234395
0.00246004
0.00256955
0.00266974
0.00275752
0.00282944
0.00288172
0.00291027
0.00291083
0.00287907
0.00281074
0.00270194
0.00254939
0.00235079
0.00210524
0.00181362
0.00147906
0.00110721
0.000706407
0.000287621
-0.000136007
-0.000549893
-0.000938829
-0.00128691
-0.00157957
-0.00180981
-0.00197397
-0.00207265
-0.00211069
-0.00209658
-0.00204139
-0.00195718
-0.00185562
-0.00174681
-0.00163862
-0.00153624
-0.00144225
-0.00135695
-0.00127895
-0.00120582
-0.00113464
-0.00106266
-0.000987624
-0.000908075
-0.000823408
-0.000733859
-0.000640376
-0.000544441
-0.000447864
-0.000352584
-0.000260531
-0.000173737
-9.17534e-05
-1.98527e-05
4.34011e-05
9.6725e-05
0.000139628
0.000171702
0.000192516
0.000201769
0.000414054
0.000469522
0.000528969
0.000592654
0.000660839
0.000733781
0.000811728
0.000894909
0.000983525
0.00107774
0.00117766
0.00128332
0.00139469
0.00151159
0.00163376
0.00176074
0.00189174
0.0020262
0.00216272
0.00229994
0.0024361
0.00256904
0.0026962
0.0028146
0.00292078
0.0030108
0.00308028
0.00312441
0.00313805
0.00311581
0.00305231
0.00294236
0.00278137
0.00256577
0.00229356
0.00196486
0.00158257
0.0011529
0.000685654
0.0001943
-0.000304606
-0.000792509
-0.00125024
-0.00165727
-0.00198883
-0.00224088
-0.00240835
-0.0024925
-0.00250105
-0.00244655
-0.00234467
-0.00221225
-0.00206511
-0.00191645
-0.00177595
-0.00164941
-0.00153894
-0.00144362
-0.0013603
-0.00128466
-0.00121201
-0.0011381
-0.00105963
-0.00097452
-0.000881981
-0.000782422
-0.000677202
-0.00056836
-0.000458305
-0.000349545
-0.000244224
-0.000144455
-5.28832e-05
2.90088e-05
0.000100444
0.000160542
0.000208746
0.000244656
0.000267846
0.00027795
0.000373264
0.000428853
0.00048867
0.000553023
0.000622229
0.000696604
0.000776464
0.000862111
0.000953827
0.00105186
0.00115642
0.00126763
0.00138555
0.00151013
0.00164116
0.00177832
0.00192107
0.00206835
0.00221929
0.00237243
0.00252592
0.00267753
0.00282452
0.00296364
0.00309107
0.00320237
0.00329252
0.00335589
0.00338632
0.00337721
0.00332175
0.00321315
0.00304508
0.00281222
0.00251093
0.00214006
0.00170187
0.00120289
0.000654577
7.35622e-05
-0.000518854
-0.00109867
-0.00165099
-0.00212299
-0.00250297
-0.00277876
-0.0029445
-0.00300312
-0.0029665
-0.00285327
-0.00268589
-0.00248786
-0.00228071
-0.00208161
-0.00190231
-0.00174891
-0.00162241
-0.00151974
-0.00143508
-0.00136127
-0.00129114
-0.00121842
-0.00113843
-0.00104843
-0.00094755
-0.000836587
-0.000717593
-0.000593439
-0.000467409
-0.000342956
-0.000221222
-0.000108207
-4.34329e-06
8.84832e-05
0.000169079
0.000236622
0.0002906
0.000330656
0.000356378
0.000367338
0.000327759
0.000383105
0.000442912
0.000507539
0.000577357
0.000652752
0.000734109
0.000821813
0.000916238
0.00101773
0.0011266
0.0012431
0.0013674
0.00149956
0.00163951
0.00178701
0.00194161
0.00210257
0.00226885
0.00243907
0.00261139
0.00278351
0.00295257
0.00311507
0.00326684
0.00340296
0.0035177
0.00360455
0.0036562
0.00366465
0.00362136
0.00351754
0.00334462
0.00309486
0.00276225
0.0023436
0.00183981
0.00125726
0.000609025
-8.43072e-05
-0.000793773
-0.00147992
-0.00217536
-0.00272105
-0.00315746
-0.00345818
-0.00361385
-0.0036302
-0.00352546
-0.00332722
-0.00306796
-0.00278062
-0.00249454
-0.00223194
-0.0020067
-0.00182461
-0.00168445
-0.00157963
-0.00150023
-0.00143506
-0.00137339
-0.00130626
-0.00122734
-0.00113319
-0.00102312
-0.000898698
-0.000763082
-0.000620356
-0.000474905
-0.000330889
-0.000192334
-6.28765e-05
5.52886e-05
0.000160337
0.000251064
0.000326719
0.000386903
0.000431361
0.000459727
0.000471517
0.000277317
0.000332012
0.000391374
0.000455816
0.000525771
0.000601689
0.000684038
0.000773292
0.000869923
0.00097439
0.00108712
0.0012085
0.00133884
0.00147835
0.00162711
0.00178501
0.00195174
0.00212675
0.00230911
0.00249746
0.00269001
0.00288446
0.00307783
0.00326646
0.00344586
0.0036106
0.00375429
0.00386943
0.00394749
0.00397884
0.00395292
0.00385848
0.00368405
0.00341867
0.00305292
0.00258042
0.00199957
0.00131569
0.000542968
-0.000294142
-0.00116071
-0.00201516
-0.00281637
-0.00348708
-0.00399933
-0.00432672
-0.00445931
-0.00440799
-0.00420136
-0.00388045
-0.00349233
-0.00308335
-0.00269371
-0.00235177
-0.00207325
-0.00186247
-0.00171418
-0.00161621
-0.00155256
-0.00150624
-0.00146158
-0.00140606
-0.0013314
-0.00123369
-0.00111287
-0.000971876
-0.000815622
-0.000649971
-0.000480865
-0.000313705
-0.000154501
-6.30239e-06
0.000128065
0.000246711
0.000348484
0.000432828
0.000499546
0.000548566
0.000579615
0.000592156
0.000221746
0.000275331
0.000333759
0.000397495
0.000467032
0.000542895
0.000625634
0.000715819
0.000814031
0.000920851
0.00103685
0.00116255
0.00129842
0.00144486
0.00160211
0.00177027
0.00194919
0.00213847
0.00233738
0.00254472
0.00275879
0.00297726
0.00319713
0.00341461
0.00362501
0.00382243
0.00399976
0.00414856
0.00425894
0.00431949
0.00431732
0.0042382
0.00406702
0.00378852
0.00338854
0.00285582
0.00218455
0.00137745
0.000449103
-0.000571353
-0.00163929
-0.00270024
-0.003676
-0.00449361
-0.00509738
-0.00544906
-0.00553692
-0.00537959
-0.00502189
-0.00452495
-0.00395674
-0.00338223
-0.00285754
-0.00241778
-0.00207946
-0.00184336
-0.00169742
-0.00162095
-0.00158913
-0.00157664
-0.00156089
-0.00152486
-0.00145821
-0.00135695
-0.00122249
-0.00106013
-0.000877503
-0.000682991
-0.000484135
-0.000289953
-0.000105895
6.394e-05
0.000216591
0.000350172
0.00046378
0.000557201
0.000630595
0.000684172
0.000717821
0.000730961
0.000160885
0.000212855
0.000269803
0.000332243
0.000400733
0.000475871
0.000558294
0.000648674
0.000747709
0.000856112
0.0009746
0.00110387
0.00124458
0.0013973
0.00156252
0.00174052
0.0019314
0.00213497
0.00235069
0.00257761
0.00281418
0.00305813
0.0033065
0.0035554
0.00380018
0.0040344
0.0042503
0.00443849
0.00458774
0.0046847
0.00471386
0.00465751
0.00449603
0.00420856
0.00377438
0.00317507
0.00239799
0.00144087
0.00031737
-0.000937885
-0.00226687
-0.00359643
-0.0048123
-0.00581752
-0.00653241
-0.00690107
-0.0069098
-0.00659056
-0.00601261
-0.00526687
-0.00445032
-0.0036515
-0.00295357
-0.00239621
-0.00199425
-0.00174185
-0.00161618
-0.00158414
-0.00160816
-0.00165094
-0.00168028
-0.00167368
-0.00161888
-0.00151275
-0.00135955
-0.00116847
-0.000951217
-0.00071987
-0.000483551
-0.000256774
-4.35463e-05
0.000151132
0.000324115
0.000473811
0.000599778
0.000702368
0.000782276
0.000840149
0.000876131
0.000889614
9.46162e-05
0.000144422
0.000199286
0.000259776
0.00032651
0.00040016
0.000481453
0.000571167
0.000670121
0.000779173
0.0008992
0.00103108
0.00117569
0.00133381
0.00150617
0.00169332
0.00189562
0.00211316
0.00234564
0.00259234
0.00285202
0.0031226
0.00340109
0.00368362
0.00396604
0.00424109
0.00450044
0.00473392
0.00492897
0.00507028
0.00513947
0.00511484
0.00497135
0.00468104
0.00421433
0.00354258
0.00264272
0.00150413
0.000137636
-0.00141552
-0.00307925
-0.00474814
-0.00627579
-0.0075196
-0.00836492
-0.00873558
-0.00861665
-0.00806155
-0.00717538
-0.00609097
-0.00494479
-0.00384202
-0.00293245
-0.00224054
-0.00177656
-0.00152544
-0.00144836
-0.00149573
-0.00161071
-0.00173885
-0.00183461
-0.00186936
-0.00182954
-0.00171461
-0.00153391
-0.00130287
-0.00103899
-0.000758163
-0.000478201
-0.00021091
3.67216e-05
0.000259569
0.000454776
0.000621362
0.000759742
0.00087111
0.000956933
0.00101848
0.00105626
0.00106969
2.2873e-05
6.99192e-05
0.000122046
0.000179865
0.000244054
0.000315361
0.000394599
0.000482653
0.000580471
0.000689059
0.000809469
0.000942783
0.00109008
0.00125243
0.0014308
0.00162605
0.00183887
0.00206964
0.00231842
0.00258477
0.00286767
0.00316545
0.00347528
0.00379251
0.00411607
0.00443548
0.00474277
0.00502718
0.00527496
0.00546885
0.0055875
0.0056048
0.00548938
0.00520453
0.00470917
0.00396075
0.00292153
0.00156901
-8.9931e-05
-0.00200429
-0.0040721
-0.00614471
-0.00803899
-0.00956013
-0.0105441
-0.0108925
-0.0105911
-0.00972237
-0.00843793
-0.00692734
-0.00538974
-0.00386169
-0.00272945
-0.00189347
-0.00137689
-0.00115498
-0.0011688
-0.00134695
-0.00160273
-0.00185869
-0.00204806
-0.00213733
-0.00211331
-0.0019809
-0.00175815
-0.00147017
-0.00114346
-0.000796923
-0.000462095
-0.000146604
0.000140815
0.00039499
0.000613749
0.000797303
0.000947375
0.00106641
0.00115693
0.00122104
0.00125976
0.00127255
-5.43526e-05
-1.06985e-05
3.79848e-05
9.23516e-05
0.000153134
0.000221147
0.000297292
0.000382559
0.000478025
0.000584852
0.000704273
0.000837581
0.000986103
0.00115117
0.00133407
0.00153599
0.00175797
0.00200077
0.00226484
0.00255013
0.00285602
0.00318116
0.00352353
0.00388055
0.00424278
0.00460874
0.00496756
0.00530774
0.00561452
0.00586881
0.00604631
0.00611626
0.00604019
0.00577101
0.0052535
0.00442764
0.00323767
0.00164788
-0.000336039
-0.00264698
-0.00514982
-0.00764965
-0.00991437
-0.0117075
-0.0128163
-0.0131191
-0.0126048
-0.0113761
-0.00962966
-0.00761669
-0.00559009
-0.00374649
-0.00229545
-0.00129094
-0.000739279
-0.000591257
-0.000758834
-0.0011309
-0.00159572
-0.0020443
-0.00235941
-0.00251562
-0.00250295
-0.00233618
-0.00204757
-0.00167664
-0.00126192
-0.000833747
-0.000429292
-5.60788e-05
0.000276715
0.000564709
0.000807385
0.00100685
0.00116676
0.00129132
0.00138448
0.00144942
0.00148781
0.00149918
-0.000137
-9.74034e-05
-5.2911e-05
-2.83415e-06
5.36062e-05
0.000117287
0.000189191
0.000270409
0.000362147
0.00046572
0.000582551
0.000714153
0.000862112
0.00102805
0.0012136
0.00142031
0.0016496
0.00190269
0.00218044
0.00248327
0.002811
0.00316268
0.00353644
0.00392925
0.00433591
0.00474936
0.00516229
0.00556174
0.00593224
0.00625318
0.00649755
0.0066299
0.00660403
0.00636123
0.00583012
0.00493132
0.00359115
0.00176532
-0.000532281
-0.00320938
-0.00609687
-0.00896333
-0.0115384
-0.0135453
-0.0147448
-0.0149906
-0.0142647
-0.0126902
-0.0105009
-0.00799912
-0.00549752
-0.00326905
-0.00153182
-0.000383639
0.000165545
0.000180007
-0.000218601
-0.000872002
-0.00160423
-0.00236579
-0.00282933
-0.00305978
-0.00304409
-0.00281262
-0.00242007
-0.00192813
-0.0013894
-0.00086061
-0.000369206
7.20696e-05
0.000455115
0.000778037
0.00104325
0.00125584
0.00142218
0.0015488
0.00164148
0.00170471
0.00174099
0.00174991
-0.00022493
-0.000190082
-0.000150562
-0.00010566
-5.45595e-05
3.66911e-06
7.00787e-05
0.000145856
0.000232326
0.000330959
0.000443362
0.000571278
0.000716561
0.000881149
0.00106702
0.00127614
0.00151037
0.00177137
0.00206052
0.00237872
0.00272627
0.00310268
0.00350642
0.00393462
0.00438275
0.00484471
0.00531151
0.00577155
0.00620778
0.00659844
0.00691442
0.00711524
0.0071466
0.0069375
0.00639987
0.0054361
0.00396022
0.00193112
-0.000615946
-0.00355969
-0.00670677
-0.00980666
-0.0125689
-0.0146955
-0.0159307
-0.0161127
-0.0152158
-0.0133648
-0.0108186
-0.00791836
-0.00502673
-0.00246968
-0.000491834
0.000768015
0.00127796
0.00110226
0.000391362
-0.000647698
-0.00178575
-0.00283171
-0.00353265
-0.00384816
-0.00379885
-0.00345072
-0.00289448
-0.00222822
-0.00151732
-0.000860173
-0.000264765
0.000253828
0.000690104
0.00104649
0.00133019
0.00155064
0.00171787
0.00184135
0.0019291
0.00198717
0.00201898
0.00202418
-0.00031792
-0.000288523
-0.000254782
-0.000215976
-0.000171264
-0.000119679
-6.01104e-05
8.71081e-06
8.822e-05
0.00018003
0.000285931
0.000407894
0.000548045
0.000708651
0.00089207
0.00110069
0.00133685
0.00160273
0.00190022
0.00223077
0.0025952
0.00299347
0.00342448
0.0038857
0.00437289
0.00487986
0.00539821
0.00591573
0.00641507
0.00687409
0.00726007
0.00752746
0.00761334
0.00743419
0.00688651
0.00585813
0.00426201
0.00207582
-0.000634322
-0.00372273
-0.00698582
-0.0101686
-0.012978
-0.0151169
-0.016329
-0.0164486
-0.015444
-0.0134355
-0.0106831
-0.00753805
-0.00438357
-0.00157704
0.000595711
0.00194793
0.00240412
0.00200783
0.000923937
-0.000587563
-0.00221294
-0.00364663
-0.00462648
-0.00500037
-0.00485029
-0.00429813
-0.00348441
-0.00256309
-0.00163245
-0.00081151
-9.2412e-05
0.000510797
0.000999467
0.00138382
0.00167809
0.00189773
0.00205757
0.00217062
0.00224745
0.00229585
0.0023202
0.00232014
-0.000415652
-0.000392409
-0.000365263
-0.000333495
-0.000296258
-0.000252563
-0.000201261
-0.000141018
-7.03077e-05
1.2612e-05
0.000109704
0.000223154
0.000355368
0.000508942
0.000686628
0.00089127
0.00112571
0.00139269
0.00169465
0.00203361
0.00241092
0.00282701
0.00328113
0.00377103
0.00429263
0.00483963
0.00540293
0.00597047
0.00652558
0.00704147
0.00748657
0.00780511
0.00792469
0.00774965
0.00716297
0.00604497
0.00432429
0.00201249
-0.000788456
-0.00391667
-0.00716988
-0.0102998
-0.0130281
-0.0150799
-0.0162182
-0.0162894
-0.0152606
-0.0132359
-0.0104508
-0.00723639
-0.00396731
-0.001012
0.00130926
0.00275382
0.0031792
0.00257458
0.00109258
-0.00095416
-0.00313884
-0.00500012
-0.00634138
-0.00667357
-0.00629579
-0.00540519
-0.00419039
-0.00289884
-0.00171282
-0.000679639
0.000181161
0.000870901
0.00140497
0.00180565
0.00209723
0.00230309
0.00244391
0.00253679
0.00259503
0.00262813
0.00264145
0.0026344
-0.000517707
-0.00050131
-0.000481567
-0.000457781
-0.00042912
-0.000394598
-0.000353045
-0.000303092
-0.000243141
-0.000171347
-8.55962e-05
1.65025e-05
0.000137617
0.000280678
0.000448839
0.000645418
0.000873797
0.00113729
0.00143895
0.00178139
0.00216647
0.00259505
0.00306662
0.00357897
0.00412788
0.0047066
0.00530536
0.00591058
0.00650395
0.00705983
0.0075341
0.00787038
0.00797922
0.00774634
0.00705808
0.00579652
0.00392404
0.00149853
-0.00134536
-0.00444433
-0.00760331
-0.0105854
-0.0131409
-0.0150341
-0.0160671
-0.0161147
-0.015148
-0.0132477
-0.010607
-0.00750794
-0.00428407
-0.00128936
0.00113478
0.00268569
0.00313255
0.00237554
0.000516694
-0.00209508
-0.00490899
-0.00730145
-0.00878617
-0.00901906
-0.00821898
-0.00672377
-0.00499849
-0.0032227
-0.00169322
-0.000406635
0.000601749
0.00136892
0.00193154
0.00232845
0.00259721
0.00277106
0.00287745
0.00293785
0.00296814
0.00297932
0.00297751
0.00296168
-0.000623562
-0.000614669
-0.00060311
-0.000588233
-0.000569244
-0.000545181
-0.000514893
-0.000476999
-0.000429867
-0.000371577
-0.000299896
-0.000212257
-0.000105747
2.28852e-05
0.000177199
0.000360997
0.000578226
0.000832816
0.00112847
0.00146839
0.00185497
0.00228939
0.00277122
0.00329797
0.00386475
0.00446374
0.00508367
0.00570874
0.00631671
0.00687555
0.00733833
0.00763593
0.00766117
0.00726405
0.00640074
0.0049191
0.00284591
0.000295965
-0.00257668
-0.00561307
-0.00862036
-0.0113857
-0.0137093
-0.0154114
-0.0163419
-0.0164074
-0.0155848
-0.0139298
-0.0115851
-0.00876663
-0.00574603
-0.00283867
-0.000384031
0.00127054
0.0018058
0.00100988
-0.00110965
-0.00421205
-0.00762731
-0.0105128
-0.0121259
-0.0120998
-0.0106686
-0.0083194
-0.0058445
-0.00348621
-0.00149452
8.93868e-05
0.00122452
0.00204451
0.00260543
0.00296758
0.00318514
0.00330286
0.0033555
0.00336863
0.0033602
0.00334213
0.00332088
0.00329455
-0.000732589
-0.000731806
-0.000729164
-0.000724076
-0.000715814
-0.000703478
-0.000685963
-0.00066192
-0.000629723
-0.000587421
-0.000532706
-0.000462874
-0.0003748
-0.000264938
-0.000129334
3.6309e-05
0.000236523
0.000475899
0.000758822
0.00108914
0.00146973
0.00190203
0.00238544
0.0029168
0.00348988
0.0040948
0.00471738
0.00533796
0.00592896
0.00645034
0.00684275
0.00701984
0.00686979
0.00628021
0.0050609
0.00324369
0.000899641
-0.0018017
-0.00470015
-0.00763676
-0.0104362
-0.0129328
-0.0149884
-0.0164839
-0.0173192
-0.0174356
-0.0168182
-0.0155023
-0.0135818
-0.0112036
-0.00856564
-0.00591853
-0.00356361
-0.00185193
-0.00115685
-0.00179595
-0.00389189
-0.00718593
-0.0109541
-0.0141645
-0.0158325
-0.0154475
-0.013242
-0.00988135
-0.00656352
-0.00348609
-0.00100246
0.000853648
0.0021037
0.00293774
0.00345108
0.0037345
0.0038631
0.0038945
0.00387043
0.00381964
0.00376097
0.00370624
0.00366142
0.00362327
-0.000844052
-0.000851913
-0.000858842
-0.000864349
-0.000867802
-0.000868395
-0.000865114
-0.00085669
-0.000841552
-0.000817778
-0.000783041
-0.000734556
-0.000669042
-0.000582698
-0.000471203
-0.000329772
-0.000153263
6.36136e-05
0.000325993
0.000638421
0.0010043
0.00142522
0.00190018
0.00242485
0.00299084
0.00358497
0.00418844
0.0047754
0.00531002
0.00574104
0.00599272
0.00595558
0.00549499
0.00448965
0.00285992
0.000643133
-0.00202252
-0.00489517
-0.00779344
-0.0105693
-0.0131036
-0.0152812
-0.017031
-0.0182995
-0.0190383
-0.0192209
-0.0188438
-0.0179281
-0.0165246
-0.0147161
-0.0126225
-0.0104088
-0.00830254
-0.00660753
-0.00569469
-0.00594638
-0.00761431
-0.010588
-0.0142085
-0.017372
-0.0189182
-0.0181727
-0.0153349
-0.0113336
-0.00685858
-0.0030121
-7.20849e-05
0.00192801
0.00329824
0.00408759
0.00448677
0.00463249
0.00462471
0.00453402
0.00440778
0.00427588
0.00415594
0.00405799
0.00398639
0.00393574
-0.000957111
-0.000974053
-0.000991109
-0.00100791
-0.00102395
-0.00103857
-0.00105089
-0.00105976
-0.00106376
-0.00106104
-0.00104934
-0.00102587
-0.000987282
-0.000929572
-0.00084811
-0.000737645
-0.00059242
-0.000406391
-0.00017359
0.000111333
0.000452383
0.000851302
0.0013065
0.00181195
0.00235615
0.00292118
0.0034816
0.00400278
0.00443738
0.00471877
0.00475149
0.00440367
0.00352244
0.0019952
-0.000176642
-0.00286973
-0.005892
-0.00896441
-0.0117595
-0.0142891
-0.0164823
-0.0182873
-0.0196872
-0.0207003
-0.0213228
-0.0215533
-0.0213996
-0.0208696
-0.0199774
-0.0187543
-0.0172515
-0.0155502
-0.0137909
-0.0121937
-0.011069
-0.0107954
-0.0117044
-0.0138509
-0.0167514
-0.019373
-0.0205005
-0.0193272
-0.0159236
-0.0111817
-0.00613952
-0.00178341
0.00147086
0.00362758
0.0049011
0.00552203
0.00571411
0.00564933
0.00544989
0.00519809
0.00494426
0.00471578
0.00452589
0.00438045
0.00428065
0.0042178
-0.00107084
-0.00109718
-0.00112478
-0.00115343
-0.00118278
-0.00121236
-0.00124148
-0.0012692
-0.00129426
-0.00131503
-0.00132939
-0.00133465
-0.0013275
-0.00130385
-0.00125883
-0.0011868
-0.0010814
-0.000935769
-0.00074301
-0.000496798
-0.000192344
0.000172369
0.000595093
0.00106769
0.00157459
0.00209159
0.0025845
0.00300726
0.00329822
0.00337268
0.0031132
0.00236645
0.000971511
-0.00115499
-0.00392591
-0.00710646
-0.0104268
-0.013599
-0.0163252
-0.018478
-0.0202135
-0.0215901
-0.0226022
-0.0233282
-0.0237981
-0.02402
-0.0240045
-0.0237466
-0.0232352
-0.0224689
-0.0214574
-0.0202268
-0.0188453
-0.0174419
-0.0162258
-0.0154941
-0.0155685
-0.0166181
-0.0183849
-0.0200432
-0.020472
-0.0188149
-0.0149982
-0.00981697
-0.00441142
0.000233601
0.00362895
0.00575441
0.00684798
0.00720388
0.00709779
0.00674656
0.00629884
0.00584841
0.00544567
0.00511037
0.00484689
0.00465389
0.00452766
0.00445369
-0.00118422
-0.00122013
-0.00125854
-0.00129941
-0.0013426
-0.00138787
-0.00143476
-0.00148261
-0.00153046
-0.00157694
-0.00162023
-0.00165786
-0.0016867
-0.00170274
-0.00170102
-0.00167561
-0.00161959
-0.00152532
-0.00138481
-0.00119055
-0.000936644
-0.00062047
-0.000244768
0.000180043
0.000633602
0.00108398
0.00148634
0.00178107
0.0018904
0.00171118
0.00110557
-9.62119e-05
-0.00205201
-0.00479801
-0.00814249
-0.0117201
-0.0151705
-0.0182244
-0.0206686
-0.0224227
-0.0236957
-0.0246298
-0.02527
-0.025708
-0.0260066
-0.0261694
-0.0261959
-0.0260738
-0.0257809
-0.0253019
-0.0246309
-0.0237707
-0.0227444
-0.0216072
-0.0204636
-0.0194872
-0.018908
-0.018914
-0.019433
-0.0199254
-0.0194923
-0.017328
-0.0132386
-0.00784413
-0.00223555
0.00259027
0.00606351
0.00811218
0.00898898
0.00902652
0.00855586
0.00785279
0.0071059
0.00642751
0.00586523
0.00542307
0.00509087
0.00485664
0.00471161
0.00462677
-0.00129619
-0.00134168
-0.00139096
-0.00144421
-0.00150152
-0.00156292
-0.00162826
-0.00169723
-0.00176924
-0.00184333
-0.0019181
-0.0019915
-0.00206077
-0.00212218
-0.00217092
-0.00220097
-0.00220504
-0.00217473
-0.00210091
-0.0019746
-0.0017883
-0.00153819
-0.0012269
-0.000866764
-0.000483115
-0.000116538
0.000176027
0.000320307
0.000222385
-0.000236926
-0.00120937
-0.00287091
-0.00536177
-0.00865574
-0.0124492
-0.0162472
-0.0196075
-0.0223046
-0.0242871
-0.0255956
-0.0264225
-0.0269534
-0.0272985
-0.027525
-0.0276864
-0.0277928
-0.0278261
-0.0277677
-0.0275959
-0.0272905
-0.0268413
-0.0262441
-0.025501
-0.0246251
-0.0236485
-0.022638
-0.0217033
-0.0209648
-0.0204324
-0.0198285
-0.0185462
-0.0159163
-0.0116561
-0.00617875
-0.000444056
0.00456749
0.00820902
0.0102997
0.0110403
0.0107928
0.0099448
0.00885334
0.00777329
0.00685296
0.00614225
0.00561059
0.00522721
0.00496621
0.00480808
0.00473334
-0.00140563
-0.00146052
-0.00152053
-0.00158606
-0.00165748
-0.00173512
-0.00181921
-0.00190986
-0.00200694
-0.00211006
-0.00221838
-0.00233051
-0.00244428
-0.00255658
-0.00266307
-0.00275799
-0.00283401
-0.0028822
-0.00289235
-0.00285377
-0.00275681
-0.00259537
-0.0023706
-0.00209541
-0.00179921
-0.00153104
-0.00136043
-0.0013767
-0.00168815
-0.00242484
-0.0037423
-0.00580776
-0.00872767
-0.0124025
-0.0164273
-0.0202093
-0.0232672
-0.0254486
-0.0268721
-0.0277349
-0.0282231
-0.0284794
-0.02864
-0.0287628
-0.0288664
-0.0289586
-0.0290183
-0.0290169
-0.0289327
-0.0287454
-0.0284419
-0.0280164
-0.0274672
-0.0267941
-0.0259964
-0.0250767
-0.0240502
-0.0229445
-0.0217543
-0.0203509
-0.0184047
-0.0154503
-0.0111705
-0.00574829
6.46841e-05
0.00533564
0.0093353
0.0117233
0.0125614
0.0121843
0.0110338
0.00958001
0.0081611
0.00700784
0.0062046
0.00562655
0.00522743
0.00496633
0.00481484
0.00475222
-0.00151144
-0.00157535
-0.0016457
-0.00172314
-0.00180832
-0.00190192
-0.0020046
-0.00211695
-0.00223944
-0.00237233
-0.00251559
-0.00266867
-0.00283037
-0.00299857
-0.00316988
-0.0033394
-0.0035003
-0.00364372
-0.00375873
-0.00383291
-0.0038537
-0.00381123
-0.00370268
-0.00353827
-0.0033486
-0.00318971
-0.00314302
-0.00331236
-0.00381831
-0.00479485
-0.00638936
-0.00874477
-0.011921
-0.0157469
-0.0197438
-0.0232743
-0.02588
-0.0275224
-0.0284695
-0.0289618
-0.0292245
-0.0293594
-0.029466
-0.0295826
-0.0297123
-0.0298493
-0.0299709
-0.0300467
-0.0300509
-0.0299631
-0.0297695
-0.0294633
-0.0290422
-0.0285049
-0.0278444
-0.0270425
-0.0260694
-0.0248862
-0.0234397
-0.0216432
-0.0193391
-0.0162747
-0.0121855
-0.0070532
-0.00133957
0.0041638
0.00868
0.0116749
0.0129675
0.0127554
0.0114931
0.00980489
0.00800194
0.00681208
0.00598082
0.00542719
0.00506845
0.00484622
0.00472507
0.00468412
-0.00161253
-0.00168488
-0.00176494
-0.00185359
-0.00195183
-0.00206068
-0.00218126
-0.00231471
-0.00246219
-0.00262478
-0.00280338
-0.00299863
-0.00321064
-0.00343877
-0.00368128
-0.00393492
-0.00419441
-0.00445199
-0.00469698
-0.00491556
-0.0050915
-0.00520872
-0.0052563
-0.00523612
-0.00517427
-0.00513076
-0.00519773
-0.00549228
-0.00614502
-0.00728841
-0.00905136
-0.0115414
-0.0147694
-0.0185118
-0.0222604
-0.0253916
-0.027522
-0.028719
-0.0293213
-0.0296152
-0.0297736
-0.0298925
-0.0300336
-0.0302109
-0.0304194
-0.0306463
-0.0308636
-0.031039
-0.0311455
-0.0311613
-0.0310715
-0.0308673
-0.0305436
-0.030096
-0.0295159
-0.028786
-0.0278756
-0.0267342
-0.0252858
-0.0234401
-0.0211087
-0.0181807
-0.0144979
-0.00994968
-0.00470279
0.000724732
0.00565585
0.00943963
0.0115975
0.0120094
0.0109679
0.00917141
0.00728431
0.00609149
0.00538884
0.00498108
0.004743
0.00460943
0.00454629
0.00453837
-0.00170788
-0.00178787
-0.00187675
-0.00197564
-0.00208583
-0.00220873
-0.00234595
-0.00249921
-0.00267041
-0.00286157
-0.00307474
-0.00331196
-0.00357511
-0.00386563
-0.00418425
-0.00453053
-0.00490227
-0.0052946
-0.00569884
-0.00610073
-0.00647919
-0.00680839
-0.00706301
-0.00722765
-0.00731619
-0.00738824
-0.00754494
-0.00791583
-0.00864088
-0.00984959
-0.0116484
-0.0141068
-0.0171959
-0.0206729
-0.0240467
-0.02675
-0.0284792
-0.0293702
-0.0297814
-0.0300145
-0.0301809
-0.0303581
-0.0305848
-0.0308636
-0.0311808
-0.0315173
-0.0318455
-0.0321354
-0.0323584
-0.0324899
-0.0325117
-0.0324099
-0.0321729
-0.0317905
-0.031251
-0.0305382
-0.0296303
-0.0284958
-0.027085
-0.0253266
-0.0231523
-0.0205172
-0.0173612
-0.0135891
-0.0091723
-0.00431125
0.000560781
0.00487018
0.00801344
0.0095164
0.00926686
0.00772273
0.00590748
0.00478261
0.00439403
0.00429588
0.00427372
0.00428145
0.00430325
0.00433798
-0.00179658
-0.00188324
-0.00197981
-0.00208763
-0.00220829
-0.00234357
-0.00249554
-0.00266655
-0.00285925
-0.00307666
-0.00332214
-0.00359939
-0.00391242
-0.0042654
-0.00466254
-0.0051077
-0.00560379
-0.00615148
-0.00674672
-0.00737615
-0.00801161
-0.00861219
-0.00912984
-0.00951964
-0.00977597
-0.0099549
-0.0101649
-0.0105475
-0.0112543
-0.0124146
-0.0141163
-0.0163975
-0.0192064
-0.0223106
-0.0252707
-0.0275934
-0.0290371
-0.0297598
-0.0301035
-0.0303459
-0.030581
-0.0308636
-0.0312151
-0.0316278
-0.0320819
-0.0325543
-0.0330143
-0.0334367
-0.0337953
-0.034063
-0.0342131
-0.0342211
-0.0340679
-0.0337376
-0.0332162
-0.0324887
-0.0315375
-0.0303435
-0.0288842
-0.027133
-0.0250664
-0.0226742
-0.0199501
-0.0168561
-0.0133282
-0.00936285
-0.00510657
-0.000876799
0.00282599
0.00538954
0.0063403
0.0056489
0.00415536
0.00315076
0.00310017
0.0034615
0.00372987
0.00391566
0.00403959
0.00412079
-0.00187789
-0.00197006
-0.00207295
-0.00218813
-0.00231742
-0.00246295
-0.0026272
-0.00281309
-0.00302406
-0.00326412
-0.00353799
-0.0038512
-0.0042102
-0.0046225
-0.00509678
-0.00564286
-0.00627129
-0.00699155
-0.00780735
-0.00870713
-0.00965187
-0.0105778
-0.0114023
-0.0120427
-0.012471
-0.0127381
-0.0129586
-0.0132865
-0.0138877
-0.0148972
-0.0163932
-0.0183954
-0.0208452
-0.0235397
-0.0261046
-0.0281192
-0.0293764
-0.0300252
-0.0303801
-0.0306862
-0.0310304
-0.0314513
-0.0319554
-0.0325276
-0.0331463
-0.0337911
-0.0344195
-0.0350144
-0.0355461
-0.0359802
-0.03628
-0.0364105
-0.0363426
-0.0360547
-0.0355319
-0.0347624
-0.0337365
-0.0324463
-0.0308857
-0.0290517
-0.0269538
-0.0246224
-0.0220949
-0.019381
-0.016447
-0.0132435
-0.00977023
-0.00611385
-0.00250692
0.000594944
0.00259862
0.00312382
0.00241918
0.00174257
0.00177682
0.00266528
0.00322571
0.00359016
0.00381437
0.0039362
-0.00195123
-0.00204761
-0.00215531
-0.00227604
-0.00241181
-0.00256502
-0.00273853
-0.00293575
-0.00316078
-0.00341857
-0.00371516
-0.00405791
-0.00445587
-0.00492027
-0.00546507
-0.00610763
-0.00686861
-0.0077696
-0.00882487
-0.0100241
-0.0113121
-0.0125923
-0.0137362
-0.0146258
-0.0152139
-0.0155443
-0.0157378
-0.0159608
-0.0163946
-0.0171847
-0.0184101
-0.0200861
-0.0221606
-0.0244662
-0.0266908
-0.0284697
-0.0296094
-0.030242
-0.0306595
-0.031079
-0.0315692
-0.0321509
-0.0328237
-0.0335734
-0.0343906
-0.0352655
-0.0361054
-0.0369313
-0.0376895
-0.038332
-0.0388102
-0.0390791
-0.0391008
-0.0388473
-0.0383014
-0.0374553
-0.0363104
-0.0348759
-0.0331668
-0.0312021
-0.0290105
-0.0266389
-0.0241457
-0.0215748
-0.0189289
-0.0161717
-0.0132598
-0.0101786
-0.00697396
-0.00385454
-0.0012506
0.000371657
0.000872526
0.000790037
0.00104637
0.0020675
0.00289746
0.00339487
0.00369312
0.00383804
-0.00201627
-0.00211548
-0.00222632
-0.00235061
-0.00249049
-0.00264854
-0.00282785
-0.00303222
-0.00326625
-0.00353569
-0.00384767
-0.00421121
-0.00463784
-0.0051425
-0.0057448
-0.00647049
-0.00735211
-0.00842564
-0.00971724
-0.0112153
-0.0128432
-0.0144642
-0.0159054
-0.0170187
-0.0177413
-0.0181127
-0.0182585
-0.0183567
-0.0186021
-0.0191528
-0.0200973
-0.0214577
-0.0231965
-0.0251782
-0.0271375
-0.0287431
-0.0298104
-0.0304641
-0.0309801
-0.0315466
-0.0322103
-0.0329775
-0.0338463
-0.0348086
-0.0358516
-0.036942
-0.038109
-0.0392437
-0.040288
-0.041186
-0.0418773
-0.0423052
-0.0424225
-0.0421957
-0.0416069
-0.0406529
-0.0393453
-0.0377095
-0.0357819
-0.0336074
-0.0312406
-0.0287476
-0.0261986
-0.0236514
-0.0211315
-0.0186206
-0.0160618
-0.0133841
-0.010541
-0.00757971
-0.00473019
-0.00234173
-0.000659306
0.000312369
0.00122601
0.00180179
0.00290248
0.00341829
0.00373454
0.0038742
-0.0020729
-0.00217352
-0.00228581
-0.00241161
-0.0025531
-0.00271293
-0.00289433
-0.00310126
-0.00333867
-0.00361276
-0.00393146
-0.00430504
-0.00474701
-0.00527557
-0.00591554
-0.00670083
-0.00767588
-0.00889103
-0.0103834
-0.0121384
-0.0140574
-0.0159664
-0.0176555
-0.0189526
-0.0197829
-0.0201838
-0.0202856
-0.020275
-0.0203571
-0.0207019
-0.02141
-0.0225168
-0.0240006
-0.0257492
-0.0275221
-0.0290037
-0.0300271
-0.0307307
-0.031375
-0.0321102
-0.0329667
-0.0339456
-0.0350481
-0.0362748
-0.0376162
-0.0390462
-0.0405334
-0.0420006
-0.0433728
-0.0445648
-0.0454976
-0.0460971
-0.0463083
-0.0460954
-0.0454431
-0.0443558
-0.0428564
-0.040985
-0.0387946
-0.0363479
-0.0337188
-0.0309926
-0.0282571
-0.0255878
-0.0230308
-0.02059
-0.0182184
-0.0158204
-0.0132843
-0.0105446
-0.00766048
-0.00481519
-0.00219377
2.6093e-05
0.00156212
0.00238887
0.00329245
0.00371971
0.00396454
0.00406973
-0.00212129
-0.00222193
-0.00233398
-0.00245925
-0.00259986
-0.00275843
-0.00293814
-0.00314295
-0.00337785
-0.00364917
-0.00396517
-0.00433673
-0.00477857
-0.00531107
-0.00596293
-0.00677467
-0.00780073
-0.00910356
-0.0107288
-0.0126601
-0.0147841
-0.0169005
-0.0187734
-0.0202118
-0.0211313
-0.0215682
-0.0216563
-0.021588
-0.0215731
-0.0217881
-0.0223446
-0.0232927
-0.0246252
-0.0262393
-0.0278942
-0.029284
-0.0302867
-0.0310684
-0.0318644
-0.032786
-0.0338536
-0.0350711
-0.0364475
-0.0379885
-0.039682
-0.0414922
-0.0433621
-0.0452062
-0.0469261
-0.0484209
-0.0495935
-0.0503533
-0.0506368
-0.0504083
-0.0496598
-0.048408
-0.0466913
-0.0445659
-0.0420999
-0.0393696
-0.0364592
-0.0334594
-0.0304627
-0.0275541
-0.0248005
-0.0222358
-0.0198437
-0.0175459
-0.0152149
-0.0127209
-0.00997156
-0.00695143
-0.00374321
-0.000594331
0.0020619
0.00394037
0.00372631
0.00423633
0.00434862
0.00439843
-0.00216186
-0.00226121
-0.00237146
-0.00249429
-0.00263169
-0.0027861
-0.00296054
-0.00315874
-0.00338545
-0.00364676
-0.00395068
-0.004308
-0.00473357
-0.00524845
-0.00588311
-0.00668171
-0.00770482
-0.0090229
-0.0106887
-0.0126892
-0.0149084
-0.017137
-0.0191259
-0.0206706
-0.0216774
-0.0221788
-0.0223082
-0.0222574
-0.0222345
-0.0224179
-0.0229289
-0.0238324
-0.0251257
-0.0266922
-0.0282729
-0.0295921
-0.030601
-0.0314886
-0.0324541
-0.0335767
-0.034873
-0.0363548
-0.0380389
-0.039931
-0.0420115
-0.0442337
-0.046523
-0.0487744
-0.0508557
-0.0526306
-0.0540041
-0.0548799
-0.0551865
-0.0548942
-0.0540059
-0.0525543
-0.0505948
-0.0481998
-0.045452
-0.0424403
-0.039257
-0.0359955
-0.0327462
-0.0295918
-0.0266027
-0.0238273
-0.0212767
-0.0189093
-0.0166263
-0.0142872
-0.011725
-0.00875452
-0.00525665
-0.00136953
0.0022717
0.00448485
0.00443201
0.00490629
0.00484501
0.00481083
-0.00219527
-0.00229219
-0.00239924
-0.00251794
-0.00265007
-0.00279781
-0.00296384
-0.00315149
-0.00336501
-0.00360987
-0.00389336
-0.00422538
-0.00461982
-0.00509677
-0.00568597
-0.00643154
-0.00739522
-0.0086504
-0.0102556
-0.0122081
-0.0144047
-0.0166453
-0.0186821
-0.0203043
-0.0214088
-0.0220183
-0.0222573
-0.0223099
-0.0223781
-0.0226403
-0.0232262
-0.0242049
-0.0255554
-0.0271258
-0.0286496
-0.0299192
-0.0309663
-0.0319848
-0.0331319
-0.0344657
-0.0360044
-0.0377689
-0.039781
-0.0420434
-0.0445288
-0.0471789
-0.049898
-0.0525481
-0.05496
-0.0569782
-0.0584983
-0.0594247
-0.0596911
-0.0592815
-0.0582132
-0.0565343
-0.0543157
-0.0516444
-0.0486163
-0.0453309
-0.0418873
-0.0383804
-0.0348979
-0.0315185
-0.0283096
-0.0253234
-0.0225863
-0.0200851
-0.0177548
-0.0154731
-0.0130516
-0.0102284
-0.00673982
-0.00259941
0.00154103
0.00462174
0.00642226
0.00531075
0.00541077
0.00522305
-0.00222239
-0.00231591
-0.00241864
-0.00253185
-0.00265706
-0.00279612
-0.00295125
-0.00312526
-0.00332169
-0.00354513
-0.00380171
-0.00409986
-0.00445159
-0.00487459
-0.00539565
-0.00605535
-0.0069119
-0.00803682
-0.00949267
-0.0112919
-0.0133565
-0.0155114
-0.0175264
-0.0191954
-0.0204078
-0.0211713
-0.0215926
-0.0218408
-0.0221074
-0.0225667
-0.0233446
-0.0244914
-0.0259475
-0.0275284
-0.0289994
-0.0302485
-0.0313665
-0.0325329
-0.0338673
-0.0354161
-0.0372031
-0.0392575
-0.0416036
-0.0442404
-0.0471324
-0.0502032
-0.0533248
-0.0563226
-0.0590061
-0.0612029
-0.0628115
-0.0637227
-0.0638985
-0.063334
-0.0620612
-0.0601409
-0.0576575
-0.0547112
-0.0514112
-0.0478672
-0.0441846
-0.040459
-0.0367743
-0.0332022
-0.0298019
-0.0266215
-0.0236943
-0.021032
-0.0186072
-0.0163293
-0.0140185
-0.0113923
-0.00811547
-0.00399258
0.000650475
0.00479918
0.00716398
0.00499688
0.00594719
0.00554694
-0.00224422
-0.00233365
-0.00243121
-0.00253795
-0.00265509
-0.00278407
-0.00292665
-0.00308501
-0.00326187
-0.0034608
-0.00368655
-0.00394576
-0.004248
-0.00460773
-0.00504732
-0.00560153
-0.00632172
-0.00727405
-0.00852316
-0.0100977
-0.0119502
-0.0139419
-0.0158744
-0.0175596
-0.0188858
-0.0198436
-0.0205156
-0.0210482
-0.021613
-0.0223661
-0.0234091
-0.0247541
-0.0263034
-0.0278738
-0.0293013
-0.0305621
-0.031777
-0.033098
-0.0346174
-0.0363771
-0.0384086
-0.0407481
-0.0434206
-0.0464195
-0.0496964
-0.0531492
-0.0566154
-0.0598913
-0.0627732
-0.0650893
-0.0667091
-0.067565
-0.0676246
-0.0668947
-0.0654157
-0.0632571
-0.0605146
-0.0573005
-0.0537362
-0.0499427
-0.0460337
-0.0421091
-0.0382527
-0.0345312
-0.0309934
-0.0276735
-0.0245955
-0.0217782
-0.0192267
-0.0168991
-0.0146569
-0.0122337
-0.00926293
-0.00543495
-0.000824256
0.00358108
0.00594677
0.00601137
0.00620494
0.00590706
-0.00226192
-0.00234679
-0.00243868
-0.00253839
-0.00264682
-0.00276504
-0.00289429
-0.00303614
-0.00319251
-0.00336593
-0.00355977
-0.00377886
-0.00403032
-0.00432518
-0.0046811
-0.00512632
-0.00570418
-0.00647403
-0.00750088
-0.00882772
-0.0104374
-0.012231
-0.0140507
-0.0157372
-0.0171845
-0.0183669
-0.0193383
-0.0202127
-0.0211288
-0.0222074
-0.0235104
-0.0250126
-0.0266044
-0.028143
-0.0295445
-0.0308448
-0.0321691
-0.0336405
-0.0353338
-0.0372917
-0.0395535
-0.0421601
-0.0451342
-0.0484607
-0.0520734
-0.0558417
-0.059574
-0.0630479
-0.0660514
-0.0684114
-0.0700175
-0.0708057
-0.0707502
-0.0698653
-0.0681954
-0.065818
-0.0628372
-0.0593757
-0.0555651
-0.0515361
-0.0474102
-0.0432935
-0.0392751
-0.0354242
-0.0317871
-0.0283871
-0.0252311
-0.0223221
-0.0196714
-0.0172749
-0.0150532
-0.0127918
-0.0101323
-0.00671384
-0.00245082
0.00200274
0.00551237
0.00792844
0.00585538
0.00622468
-0.00227664
-0.00235677
-0.00244282
-0.00253536
-0.00263498
-0.0027424
-0.00285844
-0.00298408
-0.00312054
-0.00326944
-0.00343299
-0.00361445
-0.00381889
-0.00405446
-0.00433474
-0.00468233
-0.00513345
-0.00574108
-0.00656988
-0.00767451
-0.00906392
-0.0106764
-0.0123951
-0.014093
-0.0156736
-0.0170947
-0.018377
-0.0195932
-0.0208385
-0.0221908
-0.0236765
-0.0252547
-0.0268356
-0.0283332
-0.0297266
-0.0310824
-0.0325138
-0.0341209
-0.0359686
-0.0381026
-0.0405681
-0.0434078
-0.0466392
-0.0502357
-0.0541115
-0.0581121
-0.0620256
-0.0656208
-0.068685
-0.0710472
-0.0726179
-0.0733311
-0.0731661
-0.0721387
-0.0702968
-0.0677257
-0.0645372
-0.0608628
-0.0568426
-0.0526139
-0.0483032
-0.0440204
-0.0398579
-0.03589
-0.0321684
-0.028717
-0.0255338
-0.0226004
-0.01991
-0.0174713
-0.0152546
-0.0131124
-0.0107382
-0.0077283
-0.00379093
0.000895087
0.00526842
0.00772683
0.00489388
0.00621289
-0.00228954
-0.002365
-0.00244535
-0.00253094
-0.00262216
-0.00271939
-0.0028231
-0.00293382
-0.00305223
-0.00317927
-0.00331631
-0.00346553
-0.00363057
-0.00381765
-0.00403761
-0.00430911
-0.00466336
-0.00514867
-0.00582943
-0.00676953
-0.00799893
-0.00948647
-0.0111486
-0.0128854
-0.014608
-0.0162568
-0.017816
-0.0193135
-0.0208009
-0.0223219
-0.0238861
-0.0254618
-0.0269955
-0.0284516
-0.0298482
-0.0312599
-0.0327836
-0.0345029
-0.0364773
-0.0387555
-0.0413862
-0.0444099
-0.0478367
-0.0516277
-0.0556807
-0.0598242
-0.0638353
-0.0674815
-0.0705574
-0.0729094
-0.0744042
-0.0750296
-0.0747548
-0.073593
-0.0715962
-0.0688602
-0.0655028
-0.0616602
-0.05748
-0.0531045
-0.0486605
-0.0442608
-0.039996
-0.0359451
-0.032165
-0.0286845
-0.0255037
-0.0225928
-0.0199188
-0.0174819
-0.015288
-0.0132578
-0.0111339
-0.00846616
-0.00484413
-0.000263928
0.00411318
0.00599012
0.00488888
0.00598105
-0.00230172
-0.00237279
-0.00244785
-0.00252708
-0.00261068
-0.00269882
-0.0027917
-0.00288956
-0.00299273
-0.00310175
-0.00321751
-0.00334166
-0.00347713
-0.00362923
-0.00380748
-0.00402853
-0.00432076
-0.00472955
-0.00531901
-0.00615987
-0.00729855
-0.00872681
-0.0103834
-0.0121842
-0.0140428
-0.0158819
-0.0176507
-0.0193366
-0.0209577
-0.0225399
-0.0240959
-0.0256178
-0.0270879
-0.0285052
-0.0299061
-0.0313618
-0.0329546
-0.0347561
-0.036823
-0.0392056
-0.0419522
-0.0450985
-0.0486464
-0.0525467
-0.0566853
-0.0608825
-0.0649097
-0.0685378
-0.071568
-0.0738476
-0.0752745
-0.0758081
-0.0754258
-0.0741426
-0.0720111
-0.0691484
-0.0656701
-0.0617137
-0.0574313
-0.0529687
-0.0484513
-0.0439911
-0.0396723
-0.0355865
-0.0317889
-0.028312
-0.0251627
-0.022312
-0.0197063
-0.0173206
-0.0151672
-0.0132111
-0.0112583
-0.00889381
-0.00565649
-0.00143709
0.00285278
0.00535513
0.00622414
0.00621737
-0.00231416
-0.00238131
-0.0024517
-0.00252541
-0.00260249
-0.002683
-0.00276698
-0.00285453
-0.00294584
-0.00304129
-0.00314168
-0.00324857
-0.00336484
-0.00349574
-0.00365058
-0.00384543
-0.0041074
-0.00447989
-0.00502583
-0.00581972
-0.00692032
-0.00833693
-0.0100219
-0.0118963
-0.0138691
-0.0158472
-0.0177518
-0.0195393
-0.0212058
-0.0227741
-0.024271
-0.0257152
-0.0271175
-0.0284964
-0.029894
-0.0313744
-0.0330081
-0.0348584
-0.0369791
-0.0394198
-0.0422267
-0.0454284
-0.0490185
-0.0529395
-0.0570719
-0.0612379
-0.0652
-0.0687438
-0.0716793
-0.0738607
-0.0751906
-0.0756236
-0.0751426
-0.0737658
-0.0715121
-0.0685744
-0.065031
-0.0610242
-0.0567038
-0.0522182
-0.0476919
-0.0432345
-0.0388966
-0.0348338
-0.0310661
-0.027629
-0.0245373
-0.0217737
-0.0192773
-0.016997
-0.014934
-0.0130874
-0.0113274
-0.00928331
-0.00645384
-0.00260731
0.00185795
0.00564211
0.00809861
0.00642812
-0.00232769
-0.00239152
-0.00245803
-0.00252722
-0.0025991
-0.00267365
-0.0027509
-0.00283092
-0.00291392
-0.00300038
-0.00309128
-0.00318842
-0.00329508
-0.00341699
-0.00356387
-0.00375197
-0.00400774
-0.00437267
-0.00490686
-0.0056845
-0.00677205
-0.00819367
-0.00991323
-0.0118518
-0.0139101
-0.0159798
-0.0179625
-0.0197946
-0.0214592
-0.02298
-0.0243994
-0.0257592
-0.0270913
-0.028426
-0.0298061
-0.031288
-0.0329326
-0.0347969
-0.0369316
-0.0393832
-0.042192
-0.0453795
-0.0489324
-0.0527881
-0.0568257
-0.0609005
-0.064709
-0.0681018
-0.0708961
-0.0729457
-0.0741563
-0.0744798
-0.0739026
-0.0724472
-0.07017
-0.067192
-0.0636339
-0.0596387
-0.0553483
-0.0508998
-0.0464194
-0.0420074
-0.0377515
-0.0337467
-0.0300455
-0.0266827
-0.0236745
-0.0210144
-0.0186445
-0.0164963
-0.0145479
-0.0128046
-0.0111912
-0.00944668
-0.00710563
-0.00377421
0.000594135
0.00508778
0.00817144
0.00558313
-0.00234297
-0.00240419
-0.00246769
-0.00253348
-0.00260154
-0.00267189
-0.0027446
-0.00281985
-0.00289799
-0.00297976
-0.00306647
-0.0031604
-0.00326545
-0.003388
-0.00353841
-0.00373316
-0.00399797
-0.00437178
-0.00491011
-0.00568272
-0.00675835
-0.00817292
-0.00990429
-0.0118791
-0.0139936
-0.0161217
-0.0181511
-0.0200058
-0.0216596
-0.0231338
-0.0244805
-0.0257585
-0.0270165
-0.028295
-0.0296385
-0.0310983
-0.0327255
-0.0345703
-0.0366792
-0.039095
-0.041852
-0.044963
-0.048409
-0.0521244
-0.0559909
-0.0598412
-0.0634569
-0.0666544
-0.0692665
-0.0711524
-0.0722287
-0.0724438
-0.0717881
-0.0702895
-0.0680119
-0.0650582
-0.0615522
-0.0576314
-0.0534338
-0.0490891
-0.0447137
-0.0404103
-0.036269
-0.0323702
-0.0287749
-0.0255202
-0.0226219
-0.0200802
-0.0178501
-0.0158492
-0.0140391
-0.0124314
-0.0110044
-0.00956051
-0.00761326
-0.00471073
-0.000809447
0.00325156
0.00543353
0.00337682
-0.00236051
-0.00241985
-0.00248127
-0.00254477
-0.00261041
-0.00267827
-0.00274854
-0.00282156
-0.00289794
-0.00297874
-0.00306571
-0.00316166
-0.00327112
-0.0034011
-0.00356244
-0.00377158
-0.00405299
-0.00444229
-0.00498901
-0.00575521
-0.00680601
-0.00818523
-0.00988579
-0.0118492
-0.0139889
-0.0161507
-0.0182138
-0.0200944
-0.0217558
-0.0232072
-0.0245044
-0.0257138
-0.0268975
-0.0281068
-0.029393
-0.030806
-0.0323879
-0.0341871
-0.0362358
-0.0385725
-0.0412254
-0.0442005
-0.0474729
-0.0509758
-0.0545957
-0.0581757
-0.0615308
-0.0644839
-0.0668764
-0.0685755
-0.0695091
-0.0696233
-0.0689094
-0.067399
-0.065157
-0.0622791
-0.0588827
-0.0550958
-0.0510478
-0.0468605
-0.0426433
-0.0384969
-0.034512
-0.0307633
-0.0273115
-0.0241948
-0.021427
-0.0190131
-0.0169225
-0.0150744
-0.0134169
-0.0119543
-0.0106824
-0.0094604
-0.00788055
-0.00549957
-0.00227718
0.000888758
0.00197022
0.000751278
-0.00238062
-0.00243883
-0.00249905
-0.00256136
-0.00262589
-0.00269284
-0.00276254
-0.00283556
-0.00291279
-0.00299564
-0.00308628
-0.00318806
-0.00330599
-0.00344755
-0.00362374
-0.00385053
-0.00415063
-0.00455561
-0.005108
-0.0058611
-0.00687101
-0.00818506
-0.00980776
-0.0116829
-0.0138202
-0.0159815
-0.0180608
-0.0199752
-0.0216769
-0.0231395
-0.0244276
-0.0256022
-0.0267284
-0.0278635
-0.0290805
-0.030424
-0.0319389
-0.0336621
-0.0356209
-0.0378431
-0.0403484
-0.0431375
-0.0461822
-0.0494168
-0.0527368
-0.0560016
-0.0590486
-0.0617146
-0.0638489
-0.0653583
-0.0661458
-0.0661682
-0.0654175
-0.0639255
-0.0617559
-0.0589977
-0.0557579
-0.0521533
-0.0483005
-0.0443123
-0.0402942
-0.0363438
-0.0325508
-0.0289882
-0.0257121
-0.0227596
-0.0201419
-0.0178637
-0.0159071
-0.0142027
-0.0126884
-0.011359
-0.0102318
-0.00922395
-0.00796613
-0.00608852
-0.00363767
-0.00138847
-0.000754105
-0.00127122
-0.00240347
-0.00246125
-0.00252112
-0.00258324
-0.00264784
-0.00271524
-0.00278597
-0.00286081
-0.00294094
-0.0030281
-0.00312484
-0.0032349
-0.00336365
-0.00351878
-0.00371106
-0.00395553
-0.00427296
-0.0046905
-0.00524285
-0.00597601
-0.0069363
-0.00816529
-0.00968235
-0.0114636
-0.0134621
-0.0155515
-0.0176149
-0.0195536
-0.0213014
-0.0228311
-0.0241675
-0.0253601
-0.0264703
-0.027565
-0.0287142
-0.0299758
-0.0313987
-0.0330188
-0.0348592
-0.0369379
-0.0392649
-0.0418341
-0.0446146
-0.0475448
-0.0505304
-0.0534485
-0.0561573
-0.0585122
-0.0603859
-0.0616844
-0.0623199
-0.0622553
-0.0614857
-0.0600387
-0.057973
-0.0553686
-0.0523199
-0.0489302
-0.0453043
-0.0415468
-0.0377596
-0.0340375
-0.0304672
-0.0271181
-0.0240408
-0.0212688
-0.0188125
-0.0166752
-0.0148491
-0.0132798
-0.0119071
-0.0107213
-0.00973841
-0.00887008
-0.00783773
-0.00642421
-0.00464638
-0.00306451
-0.00251596
-0.00257196
-0.00242906
-0.00248707
-0.00254735
-0.00261016
-0.00267583
-0.00274483
-0.00281785
-0.00289592
-0.00298046
-0.00307348
-0.00317781
-0.00329743
-0.00343793
-0.00360697
-0.00381479
-0.00407501
-0.00440626
-0.0048325
-0.00538059
-0.00608831
-0.00699322
-0.00812748
-0.00951179
-0.01114
-0.0129741
-0.0149331
-0.0169198
-0.0188398
-0.0206197
-0.0222186
-0.0236343
-0.0248948
-0.0260473
-0.0271515
-0.0282724
-0.0294705
-0.0307987
-0.0322976
-0.0339936
-0.0359009
-0.0380222
-0.0403459
-0.0428396
-0.0454452
-0.0480787
-0.0506347
-0.0529935
-0.055033
-0.0566313
-0.0577164
-0.0582068
-0.0580667
-0.0572949
-0.0559154
-0.053977
-0.0515482
-0.0487099
-0.0455526
-0.0421715
-0.0386654
-0.0351327
-0.0316639
-0.0283396
-0.0252231
-0.0223584
-0.0197749
-0.0174828
-0.0154855
-0.0137816
-0.0123309
-0.0110762
-0.0100011
-0.0091224
-0.00836924
-0.00757419
-0.00654986
-0.00524289
-0.00395069
-0.00327413
-0.00320974
-0.00245731
-0.0025161
-0.00257746
-0.00264169
-0.00270926
-0.00278075
-0.00285701
-0.00293929
-0.00302922
-0.00312901
-0.00324167
-0.00337127
-0.00352332
-0.0037054
-0.00392724
-0.00420092
-0.00454179
-0.00497129
-0.0055124
-0.00619161
-0.00703808
-0.00807696
-0.00932584
-0.0107864
-0.0124358
-0.0142223
-0.0160747
-0.0179154
-0.0196755
-0.0213076
-0.0227923
-0.0241368
-0.025369
-0.0265317
-0.0276767
-0.0288581
-0.0301258
-0.0315205
-0.0330711
-0.0347937
-0.0366918
-0.0387528
-0.0409448
-0.0432148
-0.0454889
-0.0476765
-0.0496778
-0.0513901
-0.0527438
-0.053629
-0.0539889
-0.0537902
-0.0530312
-0.0517309
-0.0499279
-0.0476786
-0.0450528
-0.0421316
-0.0390045
-0.0357644
-0.0325036
-0.0293054
-0.0262408
-0.0233649
-0.0207159
-0.0183202
-0.016189
-0.0143273
-0.012739
-0.0113963
-0.0102511
-0.00928853
-0.00851815
-0.00788881
-0.00724491
-0.00645273
-0.00542243
-0.00423286
-0.0034231
-0.00332101
-0.002488
-0.00254807
-0.00261103
-0.00267728
-0.00274739
-0.00282206
-0.00290213
-0.00298927
-0.00308511
-0.00319204
-0.00331322
-0.00345271
-0.00361535
-0.00380897
-0.00404231
-0.00432625
-0.00467405
-0.00510277
-0.00563123
-0.00627976
-0.00706957
-0.00802018
-0.00914492
-0.010447
-0.0119133
-0.013512
-0.0151946
-0.016904
-0.0185842
-0.0201904
-0.0216963
-0.0230954
-0.0243993
-0.0256338
-0.0268337
-0.0280393
-0.0292904
-0.0306227
-0.0320626
-0.0336258
-0.0353159
-0.0371234
-0.0390224
-0.0409688
-0.0429
-0.0447388
-0.0464019
-0.0478245
-0.0489198
-0.0496082
-0.049839
-0.0495828
-0.0488329
-0.0476029
-0.0459238
-0.0438441
-0.0414266
-0.0387462
-0.0358851
-0.0329274
-0.0299543
-0.027037
-0.0242351
-0.0215961
-0.0191548
-0.0169369
-0.0149562
-0.0132211
-0.0117392
-0.0104929
-0.00944331
-0.00857019
-0.00786878
-0.00731551
-0.00681389
-0.00622611
-0.00534515
-0.00415175
-0.00322868
-0.00316713
-0.00252086
-0.0025826
-0.00264758
-0.00271628
-0.0027894
-0.00286785
-0.00295183
-0.00304426
-0.00314622
-0.00326023
-0.00338949
-0.00353796
-0.00371054
-0.00391394
-0.00415625
-0.00444701
-0.00479765
-0.0052218
-0.00573431
-0.00635136
-0.00708848
-0.00795991
-0.00897523
-0.010137
-0.0114372
-0.0128557
-0.0143606
-0.0159122
-0.0174691
-0.0189948
-0.0204632
-0.021862
-0.0231924
-0.0244674
-0.0257082
-0.0269412
-0.0281941
-0.0294921
-0.0308551
-0.0322955
-0.033816
-0.0354086
-0.037052
-0.0387103
-0.0403333
-0.0418587
-0.0432191
-0.0443507
-0.045196
-0.0456924
-0.0457943
-0.0454739
-0.0447238
-0.0435557
-0.0419973
-0.0400923
-0.0378975
-0.035478
-0.0329041
-0.0302452
-0.0275669
-0.0249273
-0.0223765
-0.019957
-0.017704
-0.0156464
-0.0138023
-0.0121836
-0.0108005
-0.00964114
-0.00867215
-0.00787328
-0.0072474
-0.00680078
-0.00642074
-0.005951
-0.00516392
-0.00401323
-0.00302535
-0.00296022
-0.00255556
-0.00261928
-0.00268657
-0.00275802
-0.00283435
-0.00291647
-0.00300539
-0.0031029
-0.00321082
-0.00333159
-0.00346829
-0.00362472
-0.00380557
-0.0040168
-0.00426551
-0.00456
-0.00491005
-0.0053266
-0.00582152
-0.00640725
-0.00709546
-0.00789624
-0.00881626
-0.00985699
-0.0110129
-0.0122706
-0.0136086
-0.0149998
-0.0164147
-0.0178257
-0.0192109
-0.0205569
-0.0218597
-0.023124
-0.0243616
-0.0255883
-0.0268217
-0.0280781
-0.02937
-0.0307041
-0.0320802
-0.0334895
-0.0349135
-0.0363229
-0.0376779
-0.0389301
-0.040006
-0.0408857
-0.0415122
-0.0418371
-0.0418248
-0.0414541
-0.0407205
-0.039636
-0.0382255
-0.0365257
-0.0345825
-0.0324466
-0.0301709
-0.0278084
-0.0254101
-0.0230241
-0.0206958
-0.0184672
-0.0163774
-0.0144597
-0.0127369
-0.0112241
-0.00993315
-0.00885535
-0.00796144
-0.00723402
-0.00667021
-0.00630289
-0.00597815
-0.00561752
-0.00495266
-0.00393942
-0.00304616
-0.00288567
-0.00259176
-0.00265766
-0.00272749
-0.00280186
-0.00288157
-0.00296759
-0.00306109
-0.00316368
-0.00327727
-0.00340424
-0.00354754
-0.00371074
-0.00389821
-0.00411524
-0.00436802
-0.0046637
-0.00501047
-0.00541721
-0.00589337
-0.00644844
-0.00709118
-0.00782878
-0.00866573
-0.00960266
-0.0106353
-0.0117541
-0.012944
-0.014186
-0.015459
-0.0167427
-0.0180197
-0.0192779
-0.0205113
-0.02172
-0.022909
-0.0240871
-0.0252643
-0.0264499
-0.0276505
-0.0288685
-0.0301008
-0.031338
-0.0325632
-0.0337515
-0.034869
-0.0358611
-0.0367345
-0.0374163
-0.0378735
-0.0380718
-0.0379882
-0.0376105
-0.0369368
-0.0359768
-0.0347494
-0.0332802
-0.0316008
-0.0297455
-0.0277515
-0.0256577
-0.0235052
-0.0213368
-0.0191968
-0.0171296
-0.0151789
-0.0133831
-0.0117688
-0.0103536
-0.00914917
-0.00814682
-0.00732022
-0.0066543
-0.00614816
-0.00581381
-0.00558209
-0.00531941
-0.00477254
-0.00393892
-0.00325461
-0.0030794
-0.00262907
-0.00269729
-0.00276977
-0.00284716
-0.00293029
-0.00302017
-0.00311802
-0.0032254
-0.00334419
-0.00347668
-0.00362564
-0.0037944
-0.00398693
-0.00420789
-0.00446267
-0.00475737
-0.00509876
-0.00549406
-0.00595075
-0.0064761
-0.00707665
-0.00775752
-0.0085217
-0.00936919
-0.0102965
-0.0112964
-0.0123577
-0.0134668
-0.0146081
-0.0157662
-0.0169277
-0.0180822
-0.019223
-0.0203478
-0.0214578
-0.0225564
-0.0236484
-0.0247383
-0.0258285
-0.0269182
-0.0280027
-0.0290722
-0.0301122
-0.0311026
-0.0320206
-0.0328379
-0.033534
-0.0340645
-0.0344021
-0.0345264
-0.0344226
-0.0340828
-0.0335051
-0.0326946
-0.0316616
-0.0304201
-0.0289883
-0.0273869
-0.0256408
-0.0237792
-0.0218366
-0.019853
-0.0178729
-0.0159436
-0.0141134
-0.0124253
-0.0109094
-0.00958505
-0.00846291
-0.00753359
-0.00677339
-0.0061692
-0.00572187
-0.00543493
-0.00524984
-0.00503818
-0.00461571
-0.00400159
-0.00356096
-0.00342228
-0.00266713
-0.00273774
-0.0028129
-0.0028933
-0.00297979
-0.00307337
-0.0031753
-0.00328707
-0.0034105
-0.00354776
-0.00370142
-0.00387454
-0.00407066
-0.0042939
-0.0045489
-0.0048408
-0.00517519
-0.00555793
-0.0059949
-0.00649168
-0.00705314
-0.00768293
-0.00838293
-0.00915277
-0.00998947
-0.0108872
-0.0118376
-0.0128302
-0.0138532
-0.0148947
-0.015944
-0.0169921
-0.0180325
-0.0190615
-0.0200779
-0.0210819
-0.022075
-0.0230581
-0.0240311
-0.0249916
-0.025934
-0.0268496
-0.027726
-0.0285484
-0.0292992
-0.0299787
-0.0305403
-0.0309612
-0.0312239
-0.0313153
-0.0312255
-0.0309477
-0.0304783
-0.0298172
-0.0289669
-0.0279319
-0.0267196
-0.0253404
-0.0238095
-0.0221484
-0.0203865
-0.018562
-0.0167203
-0.014912
-0.013189
-0.0115982
-0.0101726
-0.00893271
-0.00788767
-0.00702713
-0.00632825
-0.00577668
-0.00536878
-0.0051021
-0.00495151
-0.00481228
-0.00452144
-0.00411735
-0.00390565
-0.00382404
-0.00270559
-0.00277858
-0.0028564
-0.00293973
-0.00302943
-0.0031265
-0.00323216
-0.00334786
-0.00347533
-0.00361659
-0.00377401
-0.00395034
-0.00414876
-0.00437283
-0.00462654
-0.0049142
-0.00524041
-0.00560988
-0.00602725
-0.00649678
-0.00702208
-0.00760571
-0.00824878
-0.00895067
-0.00970873
-0.0105183
-0.0113726
-0.0122634
-0.0131817
-0.0141178
-0.0150629
-0.0160092
-0.0169506
-0.0178828
-0.0188029
-0.0197094
-0.0206015
-0.0214783
-0.022338
-0.0231774
-0.0239914
-0.0247728
-0.0255126
-0.0262008
-0.0268276
-0.0273799
-0.027835
-0.0281768
-0.0283933
-0.0284749
-0.0284138
-0.0282032
-0.0278377
-0.0273129
-0.0266254
-0.0257727
-0.0247539
-0.0235704
-0.0222292
-0.0207448
-0.0191426
-0.0174588
-0.0157402
-0.0140402
-0.0124145
-0.0109133
-0.00957185
-0.00841088
-0.00743794
-0.00664171
-0.00599945
-0.00549604
-0.00512911
-0.00490324
-0.00479299
-0.00468628
-0.00449339
-0.00427368
-0.0042476
-0.00423239
-0.0027441
-0.00281945
-0.00289983
-0.00298595
-0.00307866
-0.00317894
-0.00328796
-0.00340712
-0.003538
-0.00368251
-0.00384279
-0.00402131
-0.00422087
-0.00444455
-0.00469574
-0.00497806
-0.00529526
-0.00565113
-0.00604928
-0.00649299
-0.00698487
-0.00752669
-0.00811901
-0.00876103
-0.00945037
-0.0101831
-0.0109537
-0.0117557
-0.0125815
-0.0134234
-0.0142739
-0.0151262
-0.0159746
-0.0168143
-0.017642
-0.0184549
-0.0192509
-0.020028
-0.0207837
-0.0215145
-0.0222162
-0.0228829
-0.0235082
-0.0240858
-0.0246073
-0.0250607
-0.0254344
-0.0257188
-0.0259054
-0.0259867
-0.0259564
-0.0258081
-0.0255351
-0.0251307
-0.0245872
-0.0238966
-0.0230509
-0.0220441
-0.0208751
-0.019552
-0.0180959
-0.0165417
-0.0149367
-0.013337
-0.0118014
-0.010383
-0.00911931
-0.0080313
-0.0071251
-0.00638896
-0.00579983
-0.00534109
-0.00500906
-0.00480545
-0.00469935
-0.00462432
-0.00453242
-0.00445845
-0.00456184
-0.00460311
-0.00278237
-0.00285997
-0.0029428
-0.00303154
-0.00312702
-0.0032302
-0.00334219
-0.0034643
-0.00359801
-0.00374506
-0.00390738
-0.00408717
-0.00428688
-0.00450916
-0.00475688
-0.00503304
-0.00534071
-0.00568291
-0.00606245
-0.00648179
-0.00694284
-0.00744673
-0.00799364
-0.00858264
-0.00921156
-0.00987701
-0.0105744
-0.0112984
-0.0120426
-0.0128007
-0.0135662
-0.0143331
-0.0150961
-0.0158504
-0.0165924
-0.0173186
-0.0180263
-0.0187129
-0.0193755
-0.020011
-0.0206155
-0.0211849
-0.0217144
-0.0222002
-0.0226334
-0.0230086
-0.023319
-0.023559
-0.0237233
-0.0238065
-0.0238041
-0.0237105
-0.0235192
-0.0232217
-0.0228076
-0.0222647
-0.0215789
-0.0207371
-0.0197307
-0.0185611
-0.0172449
-0.0158145
-0.0143177
-0.0128126
-0.0113607
-0.0100183
-0.00882523
-0.00780248
-0.00695562
-0.00627291
-0.00573026
-0.00530886
-0.00500346
-0.00482258
-0.00473934
-0.00469749
-0.00465873
-0.00466011
-0.00483737
-0.0048993
-0.0028201
-0.00289985
-0.00298497
-0.00307613
-0.00317413
-0.00327988
-0.00339444
-0.00351901
-0.00365499
-0.00380392
-0.00396755
-0.00414783
-0.00434686
-0.00456693
-0.00481044
-0.00507989
-0.00537776
-0.00570643
-0.00606809
-0.00646457
-0.00689719
-0.00736665
-0.00787281
-0.00841467
-0.00899022
-0.00959649
-0.0102296
-0.0108849
-0.0115571
-0.0122408
-0.0129303
-0.0136204
-0.014306
-0.0149826
-0.0156464
-0.0162938
-0.0169218
-0.0175274
-0.0181078
-0.01866
-0.0191809
-0.0196671
-0.0201147
-0.0205232
-0.0208839
-0.0211954
-0.0214544
-0.0216581
-0.0218038
-0.0218888
-0.0219104
-0.0218646
-0.0217457
-0.021545
-0.0212504
-0.0208463
-0.0203135
-0.0196322
-0.0187858
-0.0177686
-0.0165913
-0.015283
-0.0138908
-0.0124745
-0.0110988
-0.0098239
-0.00869246
-0.00772595
-0.00693058
-0.00629545
-0.00579453
-0.00540604
-0.00512277
-0.00498057
-0.00489914
-0.00485751
-0.00484417
-0.00487367
-0.00507094
-0.00512054
-0.00285704
-0.00293882
-0.00302606
-0.00311942
-0.00321967
-0.00332766
-0.00344439
-0.00357099
-0.00370869
-0.00385893
-0.00402323
-0.00420331
-0.00440099
-0.00461822
-0.004857
-0.00511939
-0.00540737
-0.00572284
-0.00606746
-0.00644256
-0.00684902
-0.00728719
-0.00775673
-0.00825655
-0.0087848
-0.00933882
-0.00991522
-0.01051
-0.0111186
-0.0117363
-0.0123581
-0.0129794
-0.0135954
-0.0142021
-0.0147954
-0.015372
-0.0159285
-0.0164622
-0.0169701
-0.0174498
-0.0178986
-0.0183142
-0.0186955
-0.0190344
-0.0193338
-0.0195917
-0.0198073
-0.0199798
-0.0201089
-0.0201945
-0.0202362
-0.0202322
-0.0201785
-0.020067
-0.0198858
-0.0196167
-0.019236
-0.0187167
-0.0180337
-0.0171724
-0.016136
-0.0149486
-0.0136563
-0.012321
-0.0110117
-0.00979402
-0.00871352
-0.00779318
-0.00704128
-0.00644754
-0.00598271
-0.00562382
-0.00536745
-0.00522014
-0.00514957
-0.00512499
-0.00511578
-0.00511492
-0.00526807
-0.00526643
-0.002893
-0.00297664
-0.00306582
-0.00316116
-0.00326338
-0.00337331
-0.00349184
-0.00362003
-0.003759
-0.00391001
-0.00407444
-0.00425377
-0.00444956
-0.00466347
-0.00489716
-0.0051523
-0.0054305
-0.00573321
-0.00606168
-0.00641686
-0.00679928
-0.00720903
-0.0076456
-0.00810787
-0.0085941
-0.00910186
-0.00962816
-0.0101695
-0.0107218
-0.011281
-0.0118428
-0.0124027
-0.0129567
-0.0135006
-0.0140309
-0.0145442
-0.0150372
-0.0155071
-0.0159514
-0.0163675
-0.0167535
-0.0171076
-0.0174277
-0.017711
-0.0179589
-0.0181715
-0.0183494
-0.018494
-0.0186074
-0.018692
-0.01875
-0.0187825
-0.0187878
-0.0187604
-0.0186894
-0.0185556
-0.0183305
-0.0179787
-0.0174647
-0.0167634
-0.0158686
-0.0147987
-0.0135987
-0.0123339
-0.0110798
-0.0099085
-0.00886838
-0.00798523
-0.00727046
-0.00671261
-0.00627813
-0.0059443
-0.00570887
-0.00557573
-0.0055208
-0.00549116
-0.00545205
-0.00538608
-0.00545507
-0.00537175
-0.00292776
-0.00301313
-0.00310406
-0.00320115
-0.00330509
-0.00341664
-0.00353664
-0.00366603
-0.00380584
-0.00395719
-0.00412128
-0.00429941
-0.0044929
-0.00470314
-0.00493152
-0.00517939
-0.005448
-0.00573848
-0.00605175
-0.00638843
-0.00674881
-0.00713274
-0.00753962
-0.0079683
-0.00841712
-0.00888387
-0.00936585
-0.0098599
-0.0103625
-0.01087
-0.0113785
-0.0118839
-0.0123826
-0.0128709
-0.0133451
-0.0138021
-0.0142388
-0.0146526
-0.015041
-0.0154017
-0.015733
-0.0160337
-0.016302
-0.0165371
-0.0167404
-0.0169133
-0.0170577
-0.0171768
-0.0172747
-0.0173564
-0.017427
-0.0174908
-0.0175499
-0.0176028
-0.0176409
-0.0176444
-0.0175791
-0.0173993
-0.0170569
-0.0165148
-0.0157568
-0.0147962
-0.0136781
-0.0124728
-0.0112645
-0.0101312
-0.009124
-0.00827308
-0.00759284
-0.00706745
-0.00665918
-0.00634709
-0.00613032
-0.00600995
-0.00595689
-0.00592069
-0.00585368
-0.0057006
-0.00565462
-0.00546749
-0.00296119
-0.00304811
-0.00314061
-0.00323924
-0.00334465
-0.00345755
-0.00357869
-0.00370895
-0.00384923
-0.00400054
-0.00416392
-0.00434048
-0.00453137
-0.00473772
-0.00496069
-0.00520135
-0.00546069
-0.00573955
-0.00603856
-0.00635813
-0.00669831
-0.00705882
-0.00743895
-0.00783756
-0.00825306
-0.00868341
-0.00912614
-0.00957842
-0.0100371
-0.0104989
-0.0109602
-0.0114174
-0.0118672
-0.012306
-0.0127306
-0.0131379
-0.0135251
-0.0138896
-0.0142291
-0.0145417
-0.0148258
-0.0150802
-0.0153038
-0.0154973
-0.0156619
-0.0157997
-0.015914
-0.0160092
-0.0160914
-0.016168
-0.0162473
-0.0163376
-0.0164457
-0.0165752
-0.0167209
-0.0168617
-0.0169558
-0.0169447
-0.016767
-0.0163736
-0.0157398
-0.0148759
-0.0138292
-0.0126766
-0.0115106
-0.0104129
-0.00943815
-0.00862124
-0.00797721
-0.00748218
-0.00709706
-0.00680472
-0.00660549
-0.00649908
-0.00645799
-0.00642005
-0.00631021
-0.00605841
-0.00589232
-0.0055878
-0.00299314
-0.00308147
-0.00317535
-0.00327532
-0.00338197
-0.00349595
-0.00361797
-0.00374879
-0.00388924
-0.00404018
-0.00420255
-0.00437728
-0.00456534
-0.00476769
-0.00498524
-0.00521886
-0.00546929
-0.00573716
-0.00602289
-0.00632666
-0.00664839
-0.00698765
-0.00734371
-0.0077154
-0.00810121
-0.00849923
-0.00890721
-0.00932256
-0.00974245
-0.0101638
-0.0105835
-0.0109983
-0.0114049
-0.0118001
-0.012181
-0.0125447
-0.0128884
-0.0132098
-0.0135068
-0.0137776
-0.0140209
-0.0142356
-0.014421
-0.0145784
-0.0147093
-0.0148163
-0.0149034
-0.0149762
-0.0150425
-0.0151119
-0.015196
-0.0153074
-0.0154587
-0.0156593
-0.0159074
-0.0161786
-0.0164207
-0.0165617
-0.0165281
-0.0162619
-0.0157336
-0.0149534
-0.0139722
-0.0128741
-0.0117559
-0.0106999
-0.0097666
-0.00899352
-0.00839109
-0.00792651
-0.00756436
-0.00729269
-0.007113
-0.00702372
-0.00699129
-0.00694112
-0.00679687
-0.00645714
-0.00618129
-0.00576001
-0.00302352
-0.0031131
-0.0032082
-0.00330931
-0.00341699
-0.00353183
-0.00365447
-0.0037856
-0.00392594
-0.00407628
-0.0042374
-0.0044101
-0.0045952
-0.00479349
-0.0050057
-0.00523251
-0.00547447
-0.00573202
-0.00600539
-0.00629464
-0.00659953
-0.00691957
-0.00725395
-0.00760155
-0.00796091
-0.00833023
-0.00870744
-0.00909017
-0.00947583
-0.00986163
-0.0102447
-0.010622
-0.0109907
-0.0113477
-0.0116904
-0.0120159
-0.0123218
-0.0126058
-0.012866
-0.0131008
-0.0133091
-0.01349
-0.0136431
-0.0137695
-0.0138713
-0.0139514
-0.0140141
-0.0140661
-0.0141162
-0.0141765
-0.0142613
-0.0143878
-0.0145746
-0.0148367
-0.015174
-0.0155569
-0.0159216
-0.0161838
-0.0162616
-0.0160938
-0.015651
-0.0149455
-0.0140324
-0.0130002
-0.0119457
-0.010951
-0.0100749
-0.00935856
-0.00880381
-0.00837144
-0.00803408
-0.00778468
-0.00762529
-0.00755178
-0.00752787
-0.00747766
-0.00730746
-0.00688988
-0.00652438
-0.00599265
-0.00305223
-0.00314292
-0.00323908
-0.00334116
-0.00344967
-0.00356517
-0.00368821
-0.00381943
-0.00395947
-0.00410899
-0.00426869
-0.00443924
-0.00462132
-0.00481557
-0.00502257
-0.00524285
-0.0054768
-0.0057247
-0.00598665
-0.00626257
-0.00655213
-0.00685479
-0.0071697
-0.00749576
-0.00783156
-0.00817543
-0.00852542
-0.00887936
-0.00923486
-0.00958938
-0.00994027
-0.0102848
-0.0106203
-0.0109439
-0.0112532
-0.0115456
-0.0118187
-0.0120706
-0.0122994
-0.0125036
-0.0126821
-0.0128341
-0.01296
-0.0130607
-0.0131379
-0.0131948
-0.0132363
-0.0132692
-0.0133037
-0.0133531
-0.0134347
-0.0135694
-0.013781
-0.0140889
-0.0144931
-0.014957
-0.0154067
-0.0157497
-0.0159016
-0.0158031
-0.0154294
-0.0147965
-0.0139622
-0.0130128
-0.0120398
-0.0111252
-0.0103318
-0.00969121
-0.00918966
-0.00879281
-0.00848349
-0.00825886
-0.00812169
-0.00806548
-0.00805356
-0.00799956
-0.00781081
-0.00733893
-0.00691509
-0.00628913
-0.00307921
-0.00317088
-0.00326794
-0.00337083
-0.00348001
-0.00359598
-0.00371926
-0.00385039
-0.00398995
-0.00413851
-0.00429666
-0.00446499
-0.00464403
-0.00483432
-0.00503631
-0.00525037
-0.0054768
-0.00571572
-0.00596714
-0.00623087
-0.00650652
-0.00679349
-0.00709093
-0.00739774
-0.00771259
-0.00803389
-0.00835983
-0.0086884
-0.00901739
-0.00934447
-0.0096672
-0.00998307
-0.0102896
-0.0105842
-0.0108646
-0.0111284
-0.0113734
-0.0115978
-0.0117999
-0.0119783
-0.0121319
-0.0122602
-0.0123636
-0.012443
-0.0125
-0.0125379
-0.0125615
-0.0125779
-0.0125978
-0.0126354
-0.0127099
-0.0128449
-0.013068
-0.0134008
-0.0138416
-0.0143485
-0.0148409
-0.015224
-0.0154162
-0.0153644
-0.01505
-0.0144931
-0.0137518
-0.0129034
-0.0120316
-0.0112246
-0.0105339
-0.00997715
-0.00953138
-0.00917378
-0.00889614
-0.00869851
-0.00858557
-0.00854587
-0.00854307
-0.00848977
-0.00829963
-0.00779176
-0.00733608
-0.00663192
-0.00310441
-0.00319693
-0.00329477
-0.00339833
-0.00350802
-0.00362431
-0.00374766
-0.00387856
-0.00401751
-0.004165
-0.00432154
-0.00448762
-0.00466367
-0.00485012
-0.00504731
-0.00525552
-0.0054749
-0.00570552
-0.00594726
-0.00619988
-0.00646293
-0.00673577
-0.00701755
-0.0073072
-0.00760344
-0.00790477
-0.0082095
-0.00851574
-0.00882148
-0.00912455
-0.0094227
-0.00971362
-0.00999501
-0.0102646
-0.01052
-0.0107593
-0.0109804
-0.0111816
-0.0113612
-0.0115182
-0.0116515
-0.0117607
-0.0118461
-0.0119085
-0.0119497
-0.0119727
-0.0119821
-0.0119852
-0.0119923
-0.0120182
-0.0120823
-0.0122097
-0.0124292
-0.0127629
-0.0132075
-0.0137186
-0.014215
-0.0146044
-0.0148118
-0.0147921
-0.0145333
-0.0140564
-0.0134203
-0.0126939
-0.0119353
-0.0112595
-0.0106833
-0.0102092
-0.00981989
-0.0095046
-0.00926172
-0.00909358
-0.00900277
-0.00897943
-0.00898704
-0.00893688
-0.0087506
-0.00822536
-0.00776846
-0.00700427
-0.0031278
-0.00322105
-0.00331955
-0.00342364
-0.00353372
-0.00365021
-0.00377351
-0.00390406
-0.0040423
-0.00418866
-0.00434355
-0.00450738
-0.00468052
-0.00486329
-0.00505594
-0.00525865
-0.0054715
-0.00569445
-0.00592735
-0.00616987
-0.00642153
-0.00668168
-0.00694945
-0.00722382
-0.00750356
-0.00778725
-0.0080733
-0.00835996
-0.00864534
-0.00892746
-0.00920423
-0.00947354
-0.00973323
-0.00998121
-0.0102154
-0.0104339
-0.0106348
-0.0108165
-0.0109776
-0.0111171
-0.0112342
-0.0113284
-0.0113998
-0.0114496
-0.0114792
-0.0114915
-0.0114909
-0.0114842
-0.0114814
-0.0114965
-0.0115483
-0.0116612
-0.0118628
-0.0121741
-0.0125916
-0.0130728
-0.0135413
-0.0139122
-0.0141191
-0.0141246
-0.0139236
-0.0135234
-0.0130004
-0.0124051
-0.0118009
-0.0112533
-0.0107837
-0.0103864
-0.0100529
-0.00978155
-0.00957488
-0.00943637
-0.00936798
-0.00935931
-0.0093758
-0.00932733
-0.00915743
-0.00862782
-0.00818882
-0.0073771
-0.00314935
-0.00324324
-0.00334227
-0.00344679
-0.00355715
-0.00367372
-0.00379688
-0.003927
-0.00406446
-0.00420964
-0.00436288
-0.00452453
-0.00469486
-0.00487412
-0.0050625
-0.00526009
-0.0054669
-0.00568283
-0.00590766
-0.00614104
-0.00638244
-0.0066312
-0.00688649
-0.00714729
-0.00741242
-0.00768056
-0.0079502
-0.00821972
-0.00848735
-0.00875125
-0.0090095
-0.00926015
-0.00950122
-0.00973076
-0.0099469
-0.0101478
-0.0103319
-0.0104976
-0.0106437
-0.0107692
-0.0108737
-0.0109564
-0.0110178
-0.0110587
-0.0110808
-0.0110866
-0.0110801
-0.0110678
-0.0110587
-0.0110654
-0.0111047
-0.0111986
-0.0113716
-0.0116423
-0.0120082
-0.0124329
-0.0128501
-0.013186
-0.0133838
-0.0134096
-0.0132637
-0.0129689
-0.0125564
-0.0120977
-0.0116377
-0.0112145
-0.01084
-0.0105127
-0.0102331
-0.0100055
-0.00983497
-0.00972526
-0.00967804
-0.00968193
-0.00970586
-0.00966052
-0.00950953
-0.00898163
-0.00857862
-0.00772851
-0.00316904
-0.00326347
-0.00336296
-0.00346781
-0.00357835
-0.00369492
-0.00381785
-0.00394747
-0.00408412
-0.00422811
-0.00437973
-0.00453926
-0.00470691
-0.00488288
-0.00506726
-0.00526011
-0.00546137
-0.00567089
-0.0058884
-0.00611352
-0.00634571
-0.0065843
-0.00682847
-0.00707724
-0.0073295
-0.00758396
-0.00783923
-0.00809378
-0.00834598
-0.0085941
-0.00883638
-0.00907101
-0.00929618
-0.00951009
-0.00971102
-0.00989733
-0.0100675
-0.0102202
-0.0103544
-0.0104691
-0.0105639
-0.0106385
-0.0106931
-0.0107288
-0.0107469
-0.01075
-0.0107418
-0.010728
-0.0107166
-0.0107184
-0.0107476
-0.0108222
-0.0109622
-0.0111829
-0.0114833
-0.0118356
-0.0121874
-0.0124783
-0.0126638
-0.012711
-0.012621
-0.0124089
-0.0121304
-0.0118069
-0.0114721
-0.0111542
-0.01086
-0.0105949
-0.010366
-0.0101806
-0.0100444
-0.00996157
-0.00993373
-0.00994761
-0.00997755
-0.00993322
-0.00980542
-0.00928206
-0.008923
-0.00803668
-0.00318689
-0.00328177
-0.00338162
-0.00348672
-0.00359737
-0.00371387
-0.00383651
-0.0039656
-0.00410141
-0.00424422
-0.00439427
-0.00455177
-0.0047169
-0.00488978
-0.00507046
-0.00525894
-0.00545513
-0.00565882
-0.00586971
-0.00608741
-0.00631135
-0.00654089
-0.0067752
-0.00701335
-0.00725427
-0.00749675
-0.00773948
-0.00798101
-0.00821983
-0.00845435
-0.00868292
-0.00890387
-0.00911554
-0.00931629
-0.00950454
-0.00967879
-0.0098377
-0.00998005
-0.0101049
-0.0102114
-0.0102994
-0.0103686
-0.0104194
-0.0104527
-0.01047
-0.0104736
-0.0104672
-0.0104557
-0.0104461
-0.0104472
-0.0104705
-0.0105298
-0.0106398
-0.0108122
-0.0110467
-0.0113246
-0.0116084
-0.011854
-0.0120226
-0.0120931
-0.0120627
-0.011945
-0.0117697
-0.0115577
-0.0113133
-0.0110796
-0.0108515
-0.0106412
-0.0104588
-0.0103123
-0.0102077
-0.0101488
-0.0101381
-0.010159
-0.010193
-0.0101499
-0.0100461
-0.00952305
-0.00921507
-0.0082921
-0.00320287
-0.00329813
-0.00339827
-0.00350355
-0.00361425
-0.00373062
-0.00385295
-0.00398148
-0.00411646
-0.00425812
-0.00440666
-0.00456225
-0.00472501
-0.00489502
-0.0050723
-0.00525678
-0.00544835
-0.00564677
-0.00585171
-0.00606276
-0.00627936
-0.00650085
-0.00672645
-0.00695526
-0.00718624
-0.00741825
-0.00765006
-0.00788032
-0.00810761
-0.00833044
-0.00854731
-0.00875667
-0.00895697
-0.00914673
-0.00932451
-0.00948895
-0.00963884
-0.00977311
-0.00989085
-0.00999124
-0.010075
-0.0101412
-0.0101904
-0.0102237
-0.0102427
-0.0102495
-0.0102476
-0.0102413
-0.0102367
-0.0102411
-0.0102635
-0.0103138
-0.0104024
-0.0105369
-0.0107174
-0.0109321
-0.0111566
-0.0113602
-0.0115151
-0.0116043
-0.0116229
-0.0115768
-0.0114792
-0.0113402
-0.0111743
-0.0109986
-0.0108234
-0.0106602
-0.0105189
-0.0104071
-0.0103305
-0.0102927
-0.010295
-0.0103201
-0.0103579
-0.0103127
-0.0102342
-0.00970792
-0.00945534
-0.00849232
-0.00321701
-0.00331258
-0.00341295
-0.00351835
-0.00362904
-0.00374526
-0.00386723
-0.0039952
-0.00412937
-0.00426993
-0.00441704
-0.00457083
-0.0047314
-0.00489877
-0.00507293
-0.00525379
-0.00544118
-0.00563485
-0.00583447
-0.00603959
-0.00624967
-0.00646406
-0.00668199
-0.0069026
-0.0071249
-0.00734781
-0.00757017
-0.00779071
-0.0080081
-0.00822097
-0.00842791
-0.0086275
-0.00881831
-0.00899899
-0.00916822
-0.00932479
-0.00946762
-0.00959581
-0.00970869
-0.00980604
-0.00988626
-0.00995102
-0.0100005
-0.0100357
-0.0100581
-0.01007
-0.0100744
-0.0100753
-0.010078
-0.0100885
-0.0101138
-0.0101612
-0.0102375
-0.0103473
-0.0104906
-0.0106598
-0.0108395
-0.0110099
-0.0111516
-0.01125
-0.0112984
-0.0112959
-0.0112469
-0.011159
-0.0110436
-0.0109142
-0.0107825
-0.0106592
-0.0105531
-0.0104711
-0.0104184
-0.010398
-0.0104109
-0.0104357
-0.0104786
-0.0104262
-0.0103764
-0.00983806
-0.00964558
-0.00863822
-0.0032293
-0.00332513
-0.00342567
-0.00353115
-0.0036418
-0.00375783
-0.00387945
-0.00400686
-0.00414024
-0.00427975
-0.00442553
-0.00457767
-0.00473621
-0.00490118
-0.0050725
-0.00525008
-0.00543372
-0.00562315
-0.00581802
-0.00601789
-0.00622221
-0.00643035
-0.00664157
-0.00685503
-0.00706979
-0.00728483
-0.00749904
-0.00771124
-0.0079202
-0.00812462
-0.0083232
-0.00851462
-0.00869759
-0.00887085
-0.0090332
-0.00918357
-0.00932099
-0.00944468
-0.00955403
-0.00964861
-0.00972813
-0.00979324
-0.0098445
-0.00988289
-0.00991
-0.00992801
-0.00993981
-0.00994904
-0.00996014
-0.00997822
-0.0100087
-0.0100572
-0.010128
-0.0102239
-0.0103443
-0.010484
-0.010633
-0.0107781
-0.0109054
-0.0110029
-0.0110626
-0.0110809
-0.0110594
-0.011004
-0.0109242
-0.010831
-0.0107346
-0.0106442
-0.0105672
-0.0105099
-0.0104767
-0.0104701
-0.0104912
-0.0105109
-0.0105634
-0.0104958
-0.0104715
-0.00991476
-0.00978438
-0.00872092
-0.00323975
-0.00333579
-0.00343646
-0.00354199
-0.00365256
-0.00376839
-0.00388965
-0.00401652
-0.00414917
-0.00428771
-0.00443225
-0.00458286
-0.00473957
-0.00490235
-0.00507113
-0.00524577
-0.00542606
-0.00561172
-0.0058024
-0.00599763
-0.0061969
-0.00639958
-0.00660495
-0.0068122
-0.00702045
-0.00722872
-0.00743596
-0.00764106
-0.00784287
-0.00804018
-0.00823178
-0.00841646
-0.00859301
-0.00876029
-0.00891722
-0.00906282
-0.00919624
-0.00931678
-0.00942393
-0.00951737
-0.00959711
-0.00966368
-0.00971767
-0.00976014
-0.0097927
-0.00981743
-0.00983703
-0.00985478
-0.00987453
-0.00990054
-0.00993717
-0.00998847
-0.0100575
-0.0101458
-0.0102521
-0.0103726
-0.0105
-0.0106249
-0.0107368
-0.010826
-0.0108855
-0.0109116
-0.0109054
-0.0108717
-0.0108178
-0.0107524
-0.0106839
-0.0106195
-0.0105659
-0.0105283
-0.0105102
-0.0105139
-0.0105409
-0.0105553
-0.0106142
-0.0105218
-0.0105179
-0.00993548
-0.0098513
-0.00870239
-0.00324839
-0.00334458
-0.00344535
-0.00355089
-0.00366138
-0.00377699
-0.00389791
-0.00402428
-0.00415623
-0.00429387
-0.00443729
-0.00458652
-0.00474157
-0.00490239
-0.0050689
-0.00524093
-0.00541825
-0.0056006
-0.00578758
-0.00597877
-0.00617364
-0.00637157
-0.00657188
-0.00677379
-0.00697645
-0.00717894
-0.00738025
-0.00757936
-0.00777517
-0.00796656
-0.0081524
-0.00833157
-0.00850295
-0.00866551
-0.00881826
-0.00896031
-0.00909092
-0.00920947
-0.00931556
-0.00940897
-0.00948977
-0.00955861
-0.00961601
-0.0096631
-0.00970143
-0.00973301
-0.00976033
-0.00978631
-0.00981428
-0.00984777
-0.00989026
-0.00994476
-0.0100133
-0.0100966
-0.0101932
-0.0102997
-0.0104104
-0.0105181
-0.0106149
-0.0106933
-0.0107479
-0.0107762
-0.010779
-0.01076
-0.010725
-0.0106805
-0.010633
-0.0105887
-0.0105529
-0.01053
-0.0105229
-0.0105331
-0.0105611
-0.0105647
-0.0106395
-0.0104943
-0.0105057
-0.00988894
-0.00979832
-0.00850746
-0.00325521
-0.00335153
-0.00345237
-0.00355789
-0.00366828
-0.00378369
-0.00390428
-0.00403017
-0.00416149
-0.00429832
-0.00444072
-0.00458872
-0.00474229
-0.00490139
-0.00506588
-0.00523561
-0.00541035
-0.00558979
-0.00577357
-0.00596125
-0.00615231
-0.00634616
-0.00654214
-0.00673948
-0.00693739
-0.00713498
-0.00733132
-0.00752541
-0.00771624
-0.00790275
-0.0080839
-0.00825864
-0.00842595
-0.00858487
-0.0087345
-0.00887405
-0.00900286
-0.0091204
-0.00922634
-0.00932058
-0.00940332
-0.00947481
-0.00953606
-0.00958802
-0.00963221
-0.0096705
-0.00970515
-0.00973875
-0.00977415
-0.00981425
-0.00986178
-0.00991897
-0.00998712
-0.0100663
-0.010155
-0.0102501
-0.010347
-0.01044
-0.0105232
-0.0105912
-0.01064
-0.0106681
-0.0106762
-0.0106672
-0.0106454
-0.0106158
-0.0105837
-0.0105539
-0.0105309
-0.0105183
-0.0105181
-0.010531
-0.0105559
-0.0105465
-0.0106359
-0.0103992
-0.0104428
-0.00974633
-0.00953709
-0.00802468
-0.00326023
-0.00335665
-0.00345752
-0.00356302
-0.00367331
-0.00378852
-0.0039088
-0.00403427
-0.00416502
-0.00430113
-0.00444263
-0.00458954
-0.00474182
-0.00489939
-0.00506214
-0.00522987
-0.00540236
-0.0055793
-0.00576033
-0.005945
-0.00613281
-0.00632318
-0.00651548
-0.00670897
-0.00690289
-0.00709638
-0.00728858
-0.00747853
-0.00766528
-0.00784785
-0.00802525
-0.00819651
-0.00836069
-0.0085169
-0.00866434
-0.00880228
-0.00893012
-0.00904744
-0.00915397
-0.00924964
-0.00933464
-0.0094094
-0.00947481
-0.00953182
-0.00958179
-0.0096265
-0.00966796
-0.00970845
-0.00975037
-0.00979608
-0.00984769
-0.0099068
-0.00997416
-0.0100495
-0.0101312
-0.0102165
-0.0103017
-0.0103824
-0.0104541
-0.0105129
-0.0105562
-0.0105829
-0.0105937
-0.010591
-0.0105779
-0.0105585
-0.0105368
-0.0105168
-0.0105022
-0.0104957
-0.0104985
-0.0105101
-0.0105269
-0.0105038
-0.0105889
-0.0102449
-0.0103479
-0.0094263
-0.0089558
-0.0071373
-0.00326347
-0.00335995
-0.00346085
-0.00356631
-0.00367649
-0.00379152
-0.00391153
-0.00403662
-0.00416687
-0.00430234
-0.00444306
-0.00458902
-0.00474019
-0.00489646
-0.0050577
-0.00522374
-0.00539431
-0.00556912
-0.00574781
-0.00592994
-0.00611501
-0.00630247
-0.00649169
-0.00668198
-0.00687259
-0.00706272
-0.00725152
-0.00743811
-0.00762159
-0.00780103
-0.00797551
-0.00814412
-0.00830599
-0.0084603
-0.00860632
-0.0087434
-0.008871
-0.00898876
-0.00909646
-0.00919408
-0.00928183
-0.00936015
-0.00942982
-0.00949189
-0.00954756
-0.00959838
-0.00964615
-0.00969282
-0.0097404
-0.00979078
-0.00984559
-0.00990591
-0.00997211
-0.0100437
-0.0101191
-0.010196
-0.0102713
-0.0103417
-0.0104037
-0.0104546
-0.0104926
-0.0105171
-0.0105288
-0.0105294
-0.0105215
-0.0105082
-0.0104928
-0.0104786
-0.0104684
-0.010464
-0.0104657
-0.0104714
-0.0104743
-0.0104362
-0.0104904
-0.0100235
-0.0102276
-0.00878943
-0.00796441
-0.00574184
-0.00326493
-0.00336145
-0.00346236
-0.00356778
-0.00367786
-0.00379273
-0.00391249
-0.00403725
-0.00416707
-0.00430201
-0.00444206
-0.00458723
-0.00473745
-0.00489262
-0.00505261
-0.00521722
-0.00538619
-0.00555923
-0.00573598
-0.005916
-0.00609882
-0.00628388
-0.00647058
-0.00665825
-0.00684617
-0.00703358
-0.00721968
-0.00740361
-0.00758453
-0.00776156
-0.00793384
-0.00810052
-0.00826079
-0.0084139
-0.00855917
-0.00869601
-0.00882397
-0.0089427
-0.00905204
-0.00915202
-0.00924285
-0.00932497
-0.00939908
-0.00946613
-0.00952732
-0.00958401
-0.00963766
-0.00968995
-0.00974251
-0.00979684
-0.00985417
-0.00991521
-0.00998003
-0.010048
-0.0101178
-0.0101874
-0.0102544
-0.010316
-0.0103698
-0.0104138
-0.0104467
-0.0104683
-0.0104791
-0.0104806
-0.010475
-0.0104646
-0.0104521
-0.0104401
-0.0104305
-0.0104242
-0.0104203
-0.0104143
-0.0103962
-0.0103357
-0.0103162
-0.00974404
-0.00999204
-0.00767715
-0.00654825
-0.00373397
-0.00326463
-0.00336118
-0.00346207
-0.00356745
-0.00367744
-0.00379217
-0.00391173
-0.00403621
-0.00416568
-0.00430016
-0.00443968
-0.00458419
-0.00473364
-0.00488792
-0.00504688
-0.00521032
-0.005378
-0.0055496
-0.00572477
-0.0059031
-0.0060841
-0.00626723
-0.00645192
-0.00663751
-0.00682332
-0.00700861
-0.0071926
-0.0073745
-0.00755349
-0.00772875
-0.00789946
-0.00806483
-0.00822411
-0.0083766
-0.00852167
-0.0086588
-0.00878757
-0.0089077
-0.00901906
-0.00912169
-0.00921583
-0.0093019
-0.00938054
-0.00945262
-0.00951919
-0.00958142
-0.00964061
-0.00969819
-0.00975534
-0.00981319
-0.0098727
-0.00993424
-0.00999772
-0.0100625
-0.0101273
-0.0101905
-0.0102503
-0.0103043
-0.0103509
-0.0103886
-0.0104164
-0.0104344
-0.010443
-0.0104434
-0.0104376
-0.0104274
-0.0104148
-0.0104017
-0.0103892
-0.0103767
-0.0103616
-0.0103358
-0.0102871
-0.010182
-0.0100428
-0.00940458
-0.00939531
-0.00605375
-0.00473367
-0.000917882
-0.00326261
-0.00335916
-0.00346004
-0.00356537
-0.00367528
-0.00378989
-0.00390928
-0.00403354
-0.00416273
-0.00429686
-0.00443594
-0.00457993
-0.00472877
-0.00488235
-0.0050405
-0.00520303
-0.00536969
-0.00554018
-0.00571413
-0.00589113
-0.00607072
-0.00625237
-0.00643551
-0.00661951
-0.00680372
-0.0069874
-0.00716983
-0.00735025
-0.00752786
-0.00770189
-0.00787157
-0.00803616
-0.00819494
-0.00834727
-0.00849258
-0.00863039
-0.00876032
-0.00888214
-0.00899575
-0.00910121
-0.00919877
-0.00928884
-0.00937201
-0.00944906
-0.00952092
-0.00958857
-0.00965316
-0.00971568
-0.0097772
-0.0098384
-0.00990021
-0.00996247
-0.010025
-0.010087
-0.0101476
-0.0102054
-0.0102589
-0.0103064
-0.0103464
-0.010378
-0.0104006
-0.0104141
-0.0104193
-0.010417
-0.010409
-0.010397
-0.0103812
-0.0103639
-0.0103446
-0.0103208
-0.0102873
-0.0102299
-0.0101332
-0.00994161
-0.00963743
-0.00887397
-0.00819932
-0.00400054
-0.0023699
0.0031281
-0.00325895
-0.00335549
-0.00345634
-0.00356162
-0.00367146
-0.00378597
-0.00390523
-0.00402932
-0.00415828
-0.00429214
-0.0044309
-0.0045745
-0.00472289
-0.00487593
-0.00503349
-0.00519534
-0.00536124
-0.00553089
-0.00570392
-0.00587994
-0.00605849
-0.00623904
-0.00642105
-0.0066039
-0.00678694
-0.00696948
-0.00715082
-0.0073302
-0.0075069
-0.00768015
-0.00784923
-0.00801344
-0.0081721
-0.00832461
-0.00847044
-0.00860916
-0.00874043
-0.00886405
-0.00897997
-0.00908825
-0.00918916
-0.0092831
-0.00937063
-0.00945245
-0.00952938
-0.0096023
-0.00967213
-0.0097397
-0.00980572
-0.00987086
-0.00993498
-0.00999839
-0.0100606
-0.0101209
-0.0101782
-0.0102319
-0.0102802
-0.0103219
-0.010356
-0.0103818
-0.0103989
-0.0104074
-0.010408
-0.0104016
-0.0103894
-0.0103721
-0.0103518
-0.0103271
-0.0102966
-0.0102544
-0.0101914
-0.0100825
-0.00990483
-0.00956462
-0.00901773
-0.00790079
-0.00622432
-0.0013177
0.00127164
0.00922727
-0.00325382
-0.00335033
-0.00345113
-0.00355637
-0.00366614
-0.00378056
-0.00389972
-0.00402368
-0.00415248
-0.00428614
-0.00442466
-0.00456799
-0.00471604
-0.00486871
-0.00502583
-0.0051872
-0.00535256
-0.00552161
-0.005694
-0.00586933
-0.00604713
-0.00622692
-0.00640813
-0.00659017
-0.00677241
-0.00695417
-0.00713477
-0.00731349
-0.00748961
-0.00766241
-0.00783118
-0.00799526
-0.00815402
-0.00830687
-0.00845334
-0.00859301
-0.0087256
-0.00885093
-0.00896897
-0.00907983
-0.00918377
-0.00928119
-0.00937264
-0.00945879
-0.00954038
-0.00961819
-0.00969299
-0.00976543
-0.00983602
-0.00990512
-0.00997264
-0.0100383
-0.0101016
-0.0101617
-0.0102178
-0.0102684
-0.0103128
-0.01035
-0.0103791
-0.0103996
-0.0104114
-0.0104147
-0.0104102
-0.0103986
-0.0103809
-0.0103576
-0.010329
-0.0102926
-0.0102442
-0.0101721
-0.0100607
-0.00986487
-0.00954452
-0.00894497
-0.00797186
-0.0061016
-0.00304382
0.00290954
0.00782959
0.0189379
-0.00324752
-0.00334398
-0.00344473
-0.00354991
-0.00365962
-0.00377397
-0.00389304
-0.00401689
-0.00414557
-0.00427909
-0.00441743
-0.00456056
-0.00470838
-0.00486079
-0.0050176
-0.00517863
-0.00534361
-0.00551224
-0.00568418
-0.00585901
-0.0060363
-0.00621555
-0.0063962
-0.00657768
-0.00675937
-0.00694059
-0.00712069
-0.00729896
-0.0074747
-0.00764721
-0.00781582
-0.00797987
-0.00813876
-0.00829195
-0.00843897
-0.00857944
-0.00871311
-0.00883983
-0.00895958
-0.0090725
-0.00917887
-0.0092791
-0.00937374
-0.00946343
-0.00954889
-0.00963083
-0.00970994
-0.00978677
-0.0098617
-0.00993485
-0.010006
-0.0100748
-0.0101404
-0.0102019
-0.0102583
-0.0103086
-0.0103515
-0.0103864
-0.0104124
-0.0104292
-0.010437
-0.0104358
-0.0104265
-0.0104094
-0.0103854
-0.0103537
-0.0103138
-0.0102595
-0.0101832
-0.0100605
-0.00986443
-0.00951369
-0.00892872
-0.00785133
-0.00606314
-0.00281023
0.00241685
0.0108308
0.0202806
0.035809
-0.00324038
-0.00333679
-0.00343749
-0.00354261
-0.00365227
-0.00376655
-0.00388555
-0.00400931
-0.00413789
-0.00427129
-0.00440951
-0.00455248
-0.00470012
-0.00485232
-0.00500891
-0.00516967
-0.00533437
-0.00550268
-0.00567428
-0.00584874
-0.00602564
-0.00620446
-0.00638469
-0.00656573
-0.00674698
-0.00692778
-0.00710747
-0.00728537
-0.00746079
-0.00763304
-0.00780147
-0.00796543
-0.00812437
-0.00827772
-0.00842508
-0.00856606
-0.00870045
-0.00882808
-0.00894901
-0.00906334
-0.0091714
-0.00927359
-0.00937047
-0.00946266
-0.00955087
-0.00963578
-0.00971804
-0.00979815
-0.00987641
-0.00995287
-0.0100273
-0.0100991
-0.0101675
-0.0102314
-0.0102897
-0.0103413
-0.0103851
-0.0104201
-0.0104457
-0.0104616
-0.0104678
-0.0104643
-0.010452
-0.0104304
-0.0104002
-0.0103583
-0.0103026
-0.0102203
-0.0100971
-0.00988368
-0.00952828
-0.00888513
-0.00778865
-0.0058036
-0.00246336
0.00333511
0.0124459
0.0261347
0.0432866
0.0662214
-0.00323243
-0.00332881
-0.0034295
-0.00353458
-0.00364421
-0.00375844
-0.0038774
-0.0040011
-0.00412961
-0.00426292
-0.00440103
-0.00454387
-0.00469138
-0.0048434
-0.0049998
-0.00516033
-0.00532479
-0.00549281
-0.00566411
-0.00583823
-0.00601479
-0.00619322
-0.00637307
-0.00655368
-0.00673453
-0.00691489
-0.0070942
-0.00727168
-0.00744676
-0.00761867
-0.00778685
-0.00795059
-0.00810943
-0.00826274
-0.00841021
-0.00855139
-0.00868615
-0.00881428
-0.00893591
-0.00905108
-0.00916021
-0.00926359
-0.00936189
-0.0094556
-0.00954553
-0.00963222
-0.00971638
-0.00979839
-0.0098786
-0.00995695
-0.0100333
-0.0101069
-0.0101771
-0.0102427
-0.0103027
-0.010356
-0.0104014
-0.010438
-0.0104652
-0.0104823
-0.0104897
-0.0104868
-0.0104747
-0.0104513
-0.0104173
-0.0103644
-0.010288
-0.0101607
-0.00995565
-0.0095842
-0.0089387
-0.00776122
-0.00572023
-0.00209754
0.00399534
0.0141993
0.029958
0.052843
0.0819778
0.117352
-0.00322329
-0.0033197
-0.00342043
-0.00352554
-0.0036352
-0.00374944
-0.00386841
-0.00399208
-0.00412059
-0.00425384
-0.00439191
-0.00453464
-0.00468206
-0.00483392
-0.00499018
-0.0051505
-0.00531475
-0.00548249
-0.00565354
-0.00582731
-0.00600354
-0.00618157
-0.00636105
-0.00654121
-0.00672167
-0.00690155
-0.00708046
-0.00725746
-0.00743217
-0.00760363
-0.00777152
-0.0079349
-0.00809357
-0.00824665
-0.00839413
-0.00853526
-0.00867026
-0.00879856
-0.00892069
-0.00903628
-0.00914618
-0.00925022
-0.00934954
-0.00944408
-0.00953519
-0.00962273
-0.00970809
-0.00979081
-0.00987212
-0.00995092
-0.0100282
-0.010102
-0.010173
-0.0102387
-0.0102998
-0.010353
-0.0103999
-0.0104367
-0.0104659
-0.0104835
-0.0104939
-0.0104919
-0.0104837
-0.0104607
-0.0104284
-0.010367
-0.0102707
-0.0100853
-0.0097632
-0.00915858
-0.00808423
-0.00610706
-0.00263463
0.00345957
0.0136673
0.0303863
0.0558915
0.0922314
0.138584
0.192702
-0.00321177
-0.0033083
-0.00340917
-0.00351437
-0.00362416
-0.00373846
-0.00385753
-0.00398124
-0.00410981
-0.00424305
-0.00438115
-0.00452382
-0.00467122
-0.00482295
-0.00497914
-0.00513926
-0.00530338
-0.00547085
-0.0056417
-0.00581512
-0.00599111
-0.00616871
-0.00634791
-0.00652758
-0.00670772
-0.00688707
-0.00706566
-0.0072421
-0.00741654
-0.00758745
-0.00775515
-0.00791802
-0.00807663
-0.00822929
-0.0083769
-0.00851772
-0.0086531
-0.00878125
-0.00890405
-0.00901963
-0.00913051
-0.00923465
-0.00933522
-0.00942987
-0.0095224
-0.00960991
-0.00969673
-0.00977908
-0.00986174
-0.00993969
-0.0100182
-0.0100906
-0.0101628
-0.0102267
-0.0102892
-0.0103404
-0.0103891
-0.0104239
-0.0104561
-0.0104722
-0.0104872
-0.0104848
-0.0104832
-0.0104607
-0.0104351
-0.0103685
-0.0102615
-0.0100258
-0.00958964
-0.00872004
-0.00713026
-0.00417362
0.0010497
0.010206
0.0255037
0.0503428
0.0880693
0.141664
0.210612
0.289548
-0.0031871
-0.00328396
-0.00338516
-0.00349066
-0.00360075
-0.00371532
-0.00383465
-0.00395859
-0.00408739
-0.0042208
-0.00435908
-0.00450187
-0.0046494
-0.00480119
-0.00495745
-0.00511756
-0.0052817
-0.00544909
-0.00561989
-0.00579317
-0.00596906
-0.00614645
-0.0063255
-0.0065049
-0.00668487
-0.0068639
-0.00704232
-0.00721843
-0.00739271
-0.00756329
-0.00773089
-0.00789348
-0.0080521
-0.00820455
-0.00835231
-0.00849304
-0.00862875
-0.00875695
-0.00888028
-0.00899608
-0.00910768
-0.00921215
-0.0093136
-0.00940862
-0.00950208
-0.00958986
-0.00967752
-0.0097599
-0.00984317
-0.00992078
-0.00999955
-0.0100713
-0.0101436
-0.0102065
-0.010269
-0.0103193
-0.0103683
-0.0104026
-0.0104357
-0.0104524
-0.0104693
-0.0104692
-0.0104713
-0.0104532
-0.0104319
-0.0103681
-0.010255
-0.00999419
-0.00948377
-0.00844517
-0.00649008
-0.00282974
0.00372257
0.0152105
0.0345433
0.0660492
0.114679
0.185198
0.278017
0.383487
0.000372256
0.000372242
0.000372219
0.000372192
0.000372164
0.000372137
0.000372111
0.000372087
0.000372063
0.000372041
0.00037202
0.000372
0.00037198
0.000371961
0.000371944
0.000371927
0.00037191
0.000371895
0.00037188
0.000371866
0.000371852
0.00037184
0.000371827
0.000371816
0.000371805
0.000371794
0.000371784
0.000371775
0.000371765
0.000371757
0.000371749
0.000371741
0.000371733
0.000371726
0.000371719
0.000371713
0.000371706
0.000371699
0.000371693
0.000371687
0.000371681
0.000371674
0.000371668
0.000371662
0.000371655
0.000371649
0.000371642
0.000371635
0.000371628
0.00037162
0.000371612
0.000371604
0.000371595
0.000371586
0.000371575
0.000371565
0.000371553
0.000371541
0.000371529
0.000371515
0.000371501
0.000371487
0.000371472
0.000371457
0.000371441
0.000371424
0.000371407
0.000371389
0.00037137
0.000371351
0.000371331
0.000371311
0.000371289
0.000371267
0.000371243
0.000371218
0.000371192
0.000371167
0.000371146
0.000371133
0.00037227
0.000372256
0.000372238
0.000372215
0.000372191
0.000372167
0.000372143
0.000372119
0.000372095
0.000372073
0.000372052
0.000372031
0.000372011
0.000371991
0.000371973
0.000371955
0.000371938
0.000371922
0.000371906
0.000371891
0.000371876
0.000371862
0.000371849
0.000371836
0.000371824
0.000371812
0.000371801
0.00037179
0.00037178
0.00037177
0.000371761
0.000371751
0.000371743
0.000371734
0.000371726
0.000371718
0.00037171
0.000371702
0.000371694
0.000371687
0.000371679
0.000371671
0.000371664
0.000371656
0.000371648
0.00037164
0.000371632
0.000371624
0.000371616
0.000371607
0.000371598
0.000371588
0.000371578
0.000371568
0.000371557
0.000371545
0.000371533
0.00037152
0.000371506
0.000371492
0.000371477
0.000371462
0.000371446
0.00037143
0.000371413
0.000371396
0.000371378
0.00037136
0.000371341
0.000371321
0.000371301
0.000371281
0.00037126
0.000371238
0.000371215
0.000371193
0.000371171
0.00037115
0.000371133
0.00037112
0.000372294
0.000372275
0.000372256
0.000372235
0.000372212
0.000372188
0.000372165
0.000372141
0.000372118
0.000372095
0.000372074
0.000372053
0.000372032
0.000372013
0.000371994
0.000371975
0.000371957
0.00037194
0.000371924
0.000371908
0.000371893
0.000371878
0.000371864
0.000371851
0.000371838
0.000371825
0.000371813
0.000371801
0.00037179
0.000371779
0.000371769
0.000371759
0.000371749
0.00037174
0.00037173
0.000371721
0.000371712
0.000371704
0.000371695
0.000371686
0.000371678
0.000371669
0.000371661
0.000371652
0.000371644
0.000371635
0.000371626
0.000371617
0.000371607
0.000371598
0.000371588
0.000371578
0.000371567
0.000371556
0.000371544
0.000371531
0.000371518
0.000371505
0.00037149
0.000371476
0.00037146
0.000371444
0.000371428
0.000371411
0.000371394
0.000371376
0.000371358
0.000371339
0.00037132
0.000371301
0.00037128
0.00037126
0.000371239
0.000371217
0.000371196
0.000371174
0.000371153
0.000371133
0.000371116
0.000371098
0.000372321
0.000372296
0.000372277
0.000372256
0.000372233
0.000372209
0.000372186
0.000372163
0.00037214
0.000372117
0.000372095
0.000372074
0.000372053
0.000372033
0.000372014
0.000371995
0.000371976
0.000371959
0.000371942
0.000371925
0.000371909
0.000371894
0.000371879
0.000371864
0.000371851
0.000371837
0.000371825
0.000371812
0.0003718
0.000371788
0.000371777
0.000371766
0.000371755
0.000371745
0.000371735
0.000371725
0.000371715
0.000371705
0.000371696
0.000371686
0.000371677
0.000371667
0.000371658
0.000371649
0.000371639
0.000371629
0.00037162
0.00037161
0.0003716
0.000371589
0.000371579
0.000371567
0.000371556
0.000371544
0.000371531
0.000371518
0.000371504
0.00037149
0.000371475
0.00037146
0.000371444
0.000371427
0.00037141
0.000371393
0.000371375
0.000371357
0.000371338
0.000371319
0.0003713
0.00037128
0.00037126
0.000371239
0.000371218
0.000371197
0.000371175
0.000371154
0.000371133
0.000371113
0.000371095
0.000371073
0.000372349
0.00037232
0.000372299
0.000372278
0.000372255
0.000372232
0.000372208
0.000372185
0.000372162
0.000372139
0.000372117
0.000372095
0.000372074
0.000372054
0.000372034
0.000372014
0.000371995
0.000371977
0.000371959
0.000371942
0.000371925
0.000371909
0.000371893
0.000371878
0.000371864
0.00037185
0.000371836
0.000371823
0.00037181
0.000371797
0.000371785
0.000371773
0.000371762
0.00037175
0.000371739
0.000371728
0.000371718
0.000371707
0.000371697
0.000371686
0.000371676
0.000371666
0.000371655
0.000371645
0.000371635
0.000371624
0.000371614
0.000371603
0.000371592
0.000371581
0.000371569
0.000371557
0.000371545
0.000371532
0.000371519
0.000371505
0.000371491
0.000371476
0.00037146
0.000371444
0.000371427
0.00037141
0.000371393
0.000371375
0.000371357
0.000371338
0.000371319
0.0003713
0.00037128
0.00037126
0.00037124
0.000371219
0.000371197
0.000371176
0.000371154
0.000371133
0.000371112
0.000371091
0.000371072
0.000371046
0.000372376
0.000372346
0.000372323
0.0003723
0.000372277
0.000372254
0.00037223
0.000372206
0.000372183
0.00037216
0.000372138
0.000372116
0.000372094
0.000372073
0.000372053
0.000372033
0.000372013
0.000371994
0.000371976
0.000371958
0.00037194
0.000371923
0.000371907
0.000371891
0.000371876
0.000371861
0.000371847
0.000371833
0.000371819
0.000371806
0.000371793
0.00037178
0.000371768
0.000371755
0.000371743
0.000371732
0.00037172
0.000371709
0.000371698
0.000371686
0.000371675
0.000371664
0.000371653
0.000371642
0.000371631
0.00037162
0.000371608
0.000371597
0.000371585
0.000371573
0.00037156
0.000371548
0.000371534
0.000371521
0.000371507
0.000371492
0.000371477
0.000371462
0.000371445
0.000371429
0.000371412
0.000371394
0.000371376
0.000371358
0.000371339
0.00037132
0.0003713
0.000371281
0.00037126
0.00037124
0.000371219
0.000371198
0.000371177
0.000371155
0.000371133
0.000371112
0.00037109
0.000371069
0.000371048
0.00037102
0.000372403
0.000372371
0.000372347
0.000372323
0.000372299
0.000372275
0.000372251
0.000372228
0.000372204
0.000372181
0.000372158
0.000372136
0.000372114
0.000372092
0.000372071
0.000372051
0.000372031
0.000372011
0.000371992
0.000371973
0.000371955
0.000371938
0.000371921
0.000371904
0.000371888
0.000371872
0.000371857
0.000371842
0.000371828
0.000371814
0.0003718
0.000371787
0.000371773
0.000371761
0.000371748
0.000371735
0.000371723
0.000371711
0.000371699
0.000371687
0.000371675
0.000371663
0.000371651
0.000371639
0.000371627
0.000371615
0.000371603
0.000371591
0.000371578
0.000371565
0.000371552
0.000371538
0.000371524
0.00037151
0.000371495
0.00037148
0.000371464
0.000371448
0.000371431
0.000371414
0.000371396
0.000371378
0.00037136
0.000371341
0.000371322
0.000371302
0.000371282
0.000371262
0.000371241
0.00037122
0.000371199
0.000371178
0.000371156
0.000371134
0.000371112
0.00037109
0.000371068
0.000371046
0.000371025
0.000370995
0.000372428
0.000372395
0.00037237
0.000372346
0.000372321
0.000372297
0.000372273
0.000372248
0.000372225
0.000372201
0.000372178
0.000372155
0.000372133
0.000372111
0.000372089
0.000372068
0.000372047
0.000372027
0.000372008
0.000371988
0.00037197
0.000371951
0.000371934
0.000371916
0.0003719
0.000371883
0.000371867
0.000371852
0.000371837
0.000371822
0.000371807
0.000371793
0.000371779
0.000371766
0.000371752
0.000371739
0.000371726
0.000371713
0.0003717
0.000371687
0.000371675
0.000371662
0.000371649
0.000371637
0.000371624
0.000371611
0.000371598
0.000371585
0.000371571
0.000371557
0.000371543
0.000371529
0.000371514
0.000371499
0.000371483
0.000371467
0.000371451
0.000371434
0.000371417
0.0003714
0.000371382
0.000371363
0.000371344
0.000371325
0.000371305
0.000371285
0.000371264
0.000371244
0.000371223
0.000371201
0.00037118
0.000371158
0.000371136
0.000371114
0.000371091
0.000371069
0.000371046
0.000371024
0.000371001
0.00037097
0.000372453
0.000372418
0.000372394
0.000372369
0.000372343
0.000372318
0.000372293
0.000372269
0.000372245
0.000372221
0.000372197
0.000372174
0.000372151
0.000372128
0.000372106
0.000372085
0.000372064
0.000372043
0.000372023
0.000372003
0.000371984
0.000371965
0.000371946
0.000371928
0.000371911
0.000371894
0.000371877
0.000371861
0.000371845
0.00037183
0.000371815
0.0003718
0.000371785
0.000371771
0.000371757
0.000371743
0.000371729
0.000371715
0.000371702
0.000371688
0.000371675
0.000371661
0.000371648
0.000371634
0.000371621
0.000371607
0.000371593
0.000371579
0.000371565
0.00037155
0.000371535
0.00037152
0.000371504
0.000371488
0.000371472
0.000371455
0.000371438
0.000371421
0.000371404
0.000371386
0.000371367
0.000371348
0.000371329
0.000371309
0.000371289
0.000371268
0.000371247
0.000371226
0.000371204
0.000371182
0.00037116
0.000371138
0.000371116
0.000371093
0.00037107
0.000371047
0.000371024
0.000371001
0.000370978
0.000370947
0.000372477
0.000372441
0.000372416
0.000372391
0.000372365
0.000372339
0.000372314
0.000372289
0.000372264
0.00037224
0.000372216
0.000372192
0.000372169
0.000372145
0.000372123
0.000372101
0.000372079
0.000372058
0.000372037
0.000372017
0.000371997
0.000371978
0.000371958
0.00037194
0.000371922
0.000371904
0.000371887
0.00037187
0.000371853
0.000371837
0.000371822
0.000371806
0.000371791
0.000371776
0.000371761
0.000371746
0.000371732
0.000371717
0.000371703
0.000371689
0.000371675
0.00037166
0.000371646
0.000371632
0.000371618
0.000371603
0.000371588
0.000371574
0.000371559
0.000371543
0.000371527
0.000371511
0.000371495
0.000371478
0.000371461
0.000371444
0.000371427
0.000371409
0.000371391
0.000371372
0.000371353
0.000371334
0.000371314
0.000371293
0.000371273
0.000371251
0.00037123
0.000371208
0.000371186
0.000371164
0.000371141
0.000371119
0.000371096
0.000371073
0.00037105
0.000371026
0.000371002
0.000370979
0.000370956
0.000370923
0.000372501
0.000372464
0.000372438
0.000372412
0.000372386
0.00037236
0.000372334
0.000372309
0.000372284
0.000372259
0.000372234
0.00037221
0.000372186
0.000372162
0.000372139
0.000372117
0.000372094
0.000372073
0.000372051
0.00037203
0.00037201
0.00037199
0.00037197
0.000371951
0.000371932
0.000371914
0.000371896
0.000371879
0.000371862
0.000371845
0.000371828
0.000371812
0.000371796
0.000371781
0.000371765
0.00037175
0.000371735
0.000371719
0.000371704
0.00037169
0.000371675
0.00037166
0.000371645
0.00037163
0.000371615
0.000371599
0.000371584
0.000371568
0.000371552
0.000371536
0.00037152
0.000371503
0.000371486
0.000371469
0.000371451
0.000371433
0.000371415
0.000371397
0.000371378
0.000371359
0.000371339
0.000371319
0.000371299
0.000371278
0.000371257
0.000371235
0.000371213
0.000371191
0.000371169
0.000371146
0.000371123
0.0003711
0.000371076
0.000371053
0.000371029
0.000371005
0.000370981
0.000370957
0.000370933
0.0003709
0.000372524
0.000372487
0.00037246
0.000372434
0.000372407
0.000372381
0.000372355
0.000372329
0.000372303
0.000372277
0.000372252
0.000372227
0.000372203
0.000372179
0.000372155
0.000372132
0.000372109
0.000372087
0.000372065
0.000372043
0.000372022
0.000372002
0.000371982
0.000371962
0.000371943
0.000371924
0.000371905
0.000371887
0.00037187
0.000371852
0.000371835
0.000371818
0.000371802
0.000371785
0.000371769
0.000371753
0.000371737
0.000371722
0.000371706
0.00037169
0.000371675
0.000371659
0.000371643
0.000371628
0.000371612
0.000371596
0.00037158
0.000371563
0.000371547
0.00037153
0.000371513
0.000371495
0.000371477
0.000371459
0.000371441
0.000371423
0.000371404
0.000371385
0.000371366
0.000371346
0.000371326
0.000371305
0.000371284
0.000371263
0.000371241
0.000371219
0.000371197
0.000371174
0.000371151
0.000371128
0.000371104
0.000371081
0.000371057
0.000371033
0.000371008
0.000370984
0.000370959
0.000370935
0.000370911
0.000370877
0.000372547
0.000372509
0.000372482
0.000372455
0.000372428
0.000372401
0.000372375
0.000372348
0.000372322
0.000372296
0.00037227
0.000372244
0.000372219
0.000372194
0.00037217
0.000372147
0.000372123
0.0003721
0.000372078
0.000372056
0.000372034
0.000372013
0.000371993
0.000371972
0.000371953
0.000371933
0.000371914
0.000371895
0.000371877
0.000371859
0.000371841
0.000371824
0.000371807
0.00037179
0.000371773
0.000371756
0.00037174
0.000371723
0.000371707
0.000371691
0.000371675
0.000371658
0.000371642
0.000371626
0.000371609
0.000371592
0.000371576
0.000371558
0.000371541
0.000371524
0.000371506
0.000371488
0.000371469
0.000371451
0.000371432
0.000371413
0.000371394
0.000371374
0.000371354
0.000371333
0.000371313
0.000371291
0.00037127
0.000371248
0.000371226
0.000371203
0.000371181
0.000371157
0.000371134
0.00037111
0.000371086
0.000371062
0.000371037
0.000371013
0.000370988
0.000370963
0.000370937
0.000370913
0.000370888
0.000370854
0.000372569
0.000372531
0.000372504
0.000372476
0.000372449
0.000372421
0.000372394
0.000372367
0.00037234
0.000372313
0.000372287
0.000372261
0.000372235
0.00037221
0.000372185
0.000372161
0.000372137
0.000372113
0.00037209
0.000372068
0.000372046
0.000372024
0.000372003
0.000371982
0.000371962
0.000371942
0.000371922
0.000371903
0.000371884
0.000371866
0.000371847
0.000371829
0.000371812
0.000371794
0.000371777
0.000371759
0.000371742
0.000371725
0.000371708
0.000371692
0.000371675
0.000371658
0.000371641
0.000371624
0.000371607
0.000371589
0.000371572
0.000371554
0.000371536
0.000371518
0.000371499
0.00037148
0.000371462
0.000371442
0.000371423
0.000371403
0.000371383
0.000371363
0.000371342
0.000371321
0.0003713
0.000371278
0.000371256
0.000371234
0.000371211
0.000371188
0.000371165
0.000371141
0.000371117
0.000371092
0.000371068
0.000371043
0.000371018
0.000370992
0.000370967
0.000370941
0.000370916
0.000370891
0.000370865
0.000370831
0.000372592
0.000372553
0.000372525
0.000372497
0.000372469
0.000372441
0.000372413
0.000372385
0.000372358
0.00037233
0.000372303
0.000372277
0.000372251
0.000372225
0.0003722
0.000372175
0.00037215
0.000372126
0.000372102
0.000372079
0.000372057
0.000372035
0.000372013
0.000371992
0.000371971
0.00037195
0.00037193
0.000371911
0.000371891
0.000371872
0.000371853
0.000371835
0.000371816
0.000371798
0.00037178
0.000371762
0.000371745
0.000371727
0.00037171
0.000371692
0.000371675
0.000371658
0.00037164
0.000371622
0.000371604
0.000371586
0.000371568
0.00037155
0.000371531
0.000371512
0.000371493
0.000371474
0.000371454
0.000371434
0.000371414
0.000371394
0.000371373
0.000371353
0.000371331
0.00037131
0.000371288
0.000371265
0.000371243
0.00037122
0.000371196
0.000371173
0.000371149
0.000371124
0.0003711
0.000371075
0.000371049
0.000371024
0.000370998
0.000370972
0.000370946
0.00037092
0.000370894
0.000370868
0.000370843
0.000370808
0.000372615
0.000372575
0.000372546
0.000372518
0.000372488
0.00037246
0.000372431
0.000372403
0.000372375
0.000372347
0.000372319
0.000372292
0.000372266
0.000372239
0.000372213
0.000372188
0.000372163
0.000372138
0.000372114
0.00037209
0.000372067
0.000372045
0.000372022
0.000372001
0.000371979
0.000371958
0.000371938
0.000371918
0.000371898
0.000371878
0.000371859
0.00037184
0.000371821
0.000371802
0.000371784
0.000371765
0.000371747
0.000371729
0.000371711
0.000371693
0.000371675
0.000371657
0.000371639
0.000371621
0.000371602
0.000371584
0.000371565
0.000371546
0.000371526
0.000371507
0.000371487
0.000371467
0.000371447
0.000371427
0.000371406
0.000371385
0.000371364
0.000371342
0.000371321
0.000371298
0.000371276
0.000371253
0.00037123
0.000371206
0.000371182
0.000371158
0.000371133
0.000371108
0.000371083
0.000371057
0.000371031
0.000371005
0.000370979
0.000370952
0.000370926
0.000370899
0.000370872
0.000370846
0.00037082
0.000370784
0.000372637
0.000372596
0.000372567
0.000372537
0.000372508
0.000372478
0.000372449
0.00037242
0.000372391
0.000372363
0.000372335
0.000372307
0.00037228
0.000372253
0.000372226
0.0003722
0.000372175
0.00037215
0.000372125
0.000372101
0.000372077
0.000372054
0.000372031
0.000372009
0.000371987
0.000371966
0.000371945
0.000371924
0.000371904
0.000371884
0.000371864
0.000371844
0.000371825
0.000371806
0.000371787
0.000371768
0.00037175
0.000371731
0.000371713
0.000371694
0.000371676
0.000371657
0.000371638
0.000371619
0.0003716
0.000371581
0.000371562
0.000371542
0.000371522
0.000371502
0.000371481
0.000371461
0.00037144
0.000371419
0.000371398
0.000371376
0.000371355
0.000371333
0.00037131
0.000371287
0.000371264
0.000371241
0.000371217
0.000371193
0.000371168
0.000371143
0.000371118
0.000371092
0.000371066
0.00037104
0.000371013
0.000370986
0.00037096
0.000370932
0.000370905
0.000370878
0.000370851
0.000370824
0.000370797
0.000370761
0.000372659
0.000372617
0.000372587
0.000372557
0.000372526
0.000372496
0.000372466
0.000372436
0.000372407
0.000372378
0.000372349
0.000372321
0.000372293
0.000372266
0.000372239
0.000372212
0.000372186
0.00037216
0.000372135
0.000372111
0.000372086
0.000372063
0.00037204
0.000372017
0.000371995
0.000371973
0.000371951
0.00037193
0.000371909
0.000371889
0.000371869
0.000371849
0.000371829
0.00037181
0.00037179
0.000371771
0.000371752
0.000371733
0.000371714
0.000371695
0.000371676
0.000371657
0.000371638
0.000371618
0.000371599
0.000371579
0.000371559
0.000371539
0.000371518
0.000371497
0.000371476
0.000371455
0.000371433
0.000371412
0.00037139
0.000371368
0.000371346
0.000371323
0.0003713
0.000371277
0.000371253
0.000371229
0.000371204
0.00037118
0.000371154
0.000371129
0.000371103
0.000371076
0.00037105
0.000371023
0.000370996
0.000370968
0.000370941
0.000370913
0.000370885
0.000370857
0.000370829
0.000370802
0.000370775
0.000370738
0.000372681
0.000372638
0.000372607
0.000372576
0.000372545
0.000372514
0.000372483
0.000372452
0.000372422
0.000372392
0.000372363
0.000372334
0.000372306
0.000372278
0.000372251
0.000372223
0.000372197
0.000372171
0.000372145
0.00037212
0.000372095
0.000372071
0.000372047
0.000372024
0.000372001
0.000371979
0.000371957
0.000371936
0.000371915
0.000371894
0.000371873
0.000371853
0.000371833
0.000371813
0.000371793
0.000371774
0.000371754
0.000371735
0.000371716
0.000371696
0.000371677
0.000371657
0.000371637
0.000371617
0.000371597
0.000371577
0.000371556
0.000371535
0.000371514
0.000371493
0.000371471
0.000371449
0.000371427
0.000371405
0.000371383
0.00037136
0.000371337
0.000371314
0.00037129
0.000371266
0.000371242
0.000371217
0.000371192
0.000371167
0.000371141
0.000371115
0.000371088
0.000371061
0.000371034
0.000371006
0.000370978
0.00037095
0.000370922
0.000370893
0.000370865
0.000370836
0.000370807
0.00037078
0.000370752
0.000370714
0.000372703
0.000372659
0.000372627
0.000372595
0.000372563
0.000372531
0.000372499
0.000372468
0.000372437
0.000372407
0.000372377
0.000372347
0.000372318
0.00037229
0.000372262
0.000372234
0.000372207
0.00037218
0.000372154
0.000372128
0.000372103
0.000372078
0.000372054
0.000372031
0.000372008
0.000371985
0.000371963
0.000371941
0.00037192
0.000371898
0.000371877
0.000371857
0.000371837
0.000371816
0.000371796
0.000371776
0.000371757
0.000371737
0.000371717
0.000371697
0.000371677
0.000371657
0.000371637
0.000371617
0.000371596
0.000371575
0.000371554
0.000371532
0.00037151
0.000371489
0.000371466
0.000371444
0.000371422
0.000371399
0.000371376
0.000371353
0.000371329
0.000371305
0.000371281
0.000371256
0.000371231
0.000371206
0.00037118
0.000371154
0.000371128
0.000371101
0.000371074
0.000371046
0.000371018
0.000370989
0.000370961
0.000370932
0.000370903
0.000370874
0.000370844
0.000370815
0.000370786
0.000370757
0.000370729
0.00037069
0.000372725
0.000372679
0.000372646
0.000372613
0.00037258
0.000372547
0.000372515
0.000372483
0.000372451
0.00037242
0.00037239
0.00037236
0.00037233
0.000372301
0.000372272
0.000372244
0.000372216
0.000372189
0.000372162
0.000372136
0.00037211
0.000372085
0.000372061
0.000372037
0.000372013
0.00037199
0.000371968
0.000371946
0.000371924
0.000371902
0.000371881
0.00037186
0.00037184
0.000371819
0.000371799
0.000371779
0.000371759
0.000371738
0.000371718
0.000371698
0.000371678
0.000371657
0.000371637
0.000371616
0.000371594
0.000371573
0.000371551
0.000371529
0.000371507
0.000371485
0.000371462
0.000371439
0.000371416
0.000371393
0.000371369
0.000371345
0.000371321
0.000371297
0.000371272
0.000371246
0.000371221
0.000371195
0.000371169
0.000371142
0.000371115
0.000371087
0.000371059
0.000371031
0.000371002
0.000370973
0.000370944
0.000370914
0.000370884
0.000370854
0.000370824
0.000370794
0.000370764
0.000370734
0.000370705
0.000370666
0.000372746
0.000372699
0.000372665
0.000372632
0.000372598
0.000372564
0.00037253
0.000372498
0.000372465
0.000372433
0.000372402
0.000372371
0.000372341
0.000372311
0.000372281
0.000372252
0.000372224
0.000372197
0.000372169
0.000372143
0.000372117
0.000372092
0.000372067
0.000372042
0.000372019
0.000371995
0.000371972
0.00037195
0.000371928
0.000371906
0.000371885
0.000371864
0.000371843
0.000371822
0.000371801
0.000371781
0.00037176
0.00037174
0.000371719
0.000371699
0.000371678
0.000371657
0.000371636
0.000371615
0.000371593
0.000371571
0.000371549
0.000371527
0.000371504
0.000371481
0.000371458
0.000371435
0.000371412
0.000371388
0.000371363
0.000371339
0.000371314
0.000371288
0.000371263
0.000371237
0.000371211
0.000371184
0.000371157
0.00037113
0.000371102
0.000371074
0.000371045
0.000371016
0.000370987
0.000370957
0.000370926
0.000370896
0.000370865
0.000370834
0.000370804
0.000370773
0.000370742
0.000370712
0.000370682
0.000370641
0.000372768
0.000372719
0.000372684
0.000372649
0.000372614
0.00037258
0.000372545
0.000372512
0.000372479
0.000372446
0.000372414
0.000372382
0.000372351
0.00037232
0.00037229
0.00037226
0.000372232
0.000372204
0.000372176
0.000372149
0.000372123
0.000372097
0.000372072
0.000372047
0.000372023
0.000372
0.000371976
0.000371954
0.000371931
0.000371909
0.000371888
0.000371866
0.000371845
0.000371824
0.000371803
0.000371783
0.000371762
0.000371741
0.00037172
0.000371699
0.000371678
0.000371657
0.000371636
0.000371614
0.000371592
0.00037157
0.000371547
0.000371524
0.000371501
0.000371478
0.000371455
0.000371431
0.000371407
0.000371382
0.000371358
0.000371332
0.000371307
0.000371281
0.000371255
0.000371228
0.000371201
0.000371174
0.000371146
0.000371118
0.00037109
0.000371061
0.000371031
0.000371001
0.000370971
0.00037094
0.000370909
0.000370878
0.000370846
0.000370815
0.000370783
0.000370751
0.00037072
0.000370689
0.000370658
0.000370616
0.000372789
0.000372739
0.000372702
0.000372667
0.00037263
0.000372595
0.00037256
0.000372525
0.000372491
0.000372458
0.000372424
0.000372392
0.00037236
0.000372328
0.000372298
0.000372268
0.000372239
0.00037221
0.000372182
0.000372155
0.000372128
0.000372102
0.000372077
0.000372052
0.000372027
0.000372003
0.00037198
0.000371957
0.000371934
0.000371912
0.00037189
0.000371869
0.000371847
0.000371826
0.000371805
0.000371784
0.000371763
0.000371742
0.000371721
0.0003717
0.000371679
0.000371657
0.000371635
0.000371613
0.000371591
0.000371568
0.000371546
0.000371522
0.000371499
0.000371476
0.000371452
0.000371427
0.000371403
0.000371378
0.000371352
0.000371326
0.0003713
0.000371274
0.000371247
0.00037122
0.000371192
0.000371164
0.000371136
0.000371107
0.000371078
0.000371048
0.000371017
0.000370987
0.000370956
0.000370924
0.000370892
0.00037086
0.000370828
0.000370795
0.000370763
0.00037073
0.000370697
0.000370666
0.000370634
0.000370591
0.000372809
0.000372757
0.00037272
0.000372683
0.000372646
0.000372609
0.000372573
0.000372538
0.000372503
0.000372468
0.000372434
0.000372401
0.000372368
0.000372336
0.000372305
0.000372274
0.000372245
0.000372216
0.000372187
0.00037216
0.000372132
0.000372106
0.00037208
0.000372055
0.000372031
0.000372007
0.000371983
0.00037196
0.000371937
0.000371915
0.000371893
0.000371871
0.000371849
0.000371828
0.000371807
0.000371786
0.000371764
0.000371743
0.000371722
0.0003717
0.000371679
0.000371657
0.000371635
0.000371613
0.00037159
0.000371567
0.000371544
0.000371521
0.000371497
0.000371473
0.000371449
0.000371424
0.000371399
0.000371373
0.000371347
0.000371321
0.000371294
0.000371267
0.000371239
0.000371212
0.000371183
0.000371155
0.000371125
0.000371096
0.000371066
0.000371035
0.000371004
0.000370972
0.00037094
0.000370908
0.000370875
0.000370842
0.000370809
0.000370776
0.000370742
0.000370709
0.000370675
0.000370642
0.00037061
0.000370566
0.000372829
0.000372775
0.000372737
0.000372698
0.00037266
0.000372622
0.000372585
0.000372549
0.000372513
0.000372478
0.000372443
0.000372409
0.000372375
0.000372343
0.000372311
0.00037228
0.00037225
0.00037222
0.000372191
0.000372163
0.000372136
0.000372109
0.000372083
0.000372058
0.000372033
0.000372009
0.000371985
0.000371962
0.000371939
0.000371917
0.000371895
0.000371873
0.000371851
0.00037183
0.000371808
0.000371787
0.000371765
0.000371744
0.000371722
0.000371701
0.000371679
0.000371657
0.000371635
0.000371612
0.00037159
0.000371567
0.000371543
0.000371519
0.000371495
0.000371471
0.000371446
0.000371421
0.000371395
0.000371369
0.000371343
0.000371316
0.000371288
0.000371261
0.000371232
0.000371204
0.000371175
0.000371145
0.000371115
0.000371085
0.000371054
0.000371022
0.00037099
0.000370958
0.000370925
0.000370892
0.000370858
0.000370824
0.00037079
0.000370756
0.000370721
0.000370687
0.000370652
0.000370619
0.000370585
0.00037054
0.000372848
0.000372793
0.000372753
0.000372713
0.000372674
0.000372635
0.000372597
0.000372559
0.000372522
0.000372486
0.00037245
0.000372415
0.000372381
0.000372348
0.000372316
0.000372284
0.000372254
0.000372224
0.000372194
0.000372166
0.000372138
0.000372111
0.000372085
0.00037206
0.000372035
0.000372011
0.000371987
0.000371964
0.000371941
0.000371918
0.000371896
0.000371874
0.000371853
0.000371831
0.000371809
0.000371788
0.000371766
0.000371745
0.000371723
0.000371701
0.000371679
0.000371657
0.000371635
0.000371612
0.000371589
0.000371566
0.000371542
0.000371518
0.000371494
0.000371469
0.000371444
0.000371418
0.000371392
0.000371365
0.000371338
0.000371311
0.000371283
0.000371255
0.000371226
0.000371196
0.000371167
0.000371136
0.000371106
0.000371074
0.000371043
0.00037101
0.000370977
0.000370944
0.00037091
0.000370876
0.000370842
0.000370807
0.000370772
0.000370736
0.000370701
0.000370665
0.00037063
0.000370595
0.000370561
0.000370514
0.000372867
0.000372809
0.000372768
0.000372727
0.000372686
0.000372646
0.000372607
0.000372568
0.00037253
0.000372493
0.000372456
0.000372421
0.000372386
0.000372352
0.00037232
0.000372287
0.000372256
0.000372226
0.000372196
0.000372168
0.00037214
0.000372113
0.000372087
0.000372061
0.000372036
0.000372012
0.000371988
0.000371965
0.000371942
0.00037192
0.000371897
0.000371876
0.000371854
0.000371832
0.00037181
0.000371789
0.000371767
0.000371745
0.000371724
0.000371702
0.00037168
0.000371658
0.000371635
0.000371613
0.000371589
0.000371566
0.000371542
0.000371518
0.000371493
0.000371468
0.000371442
0.000371416
0.000371389
0.000371362
0.000371335
0.000371307
0.000371278
0.000371249
0.000371219
0.000371189
0.000371159
0.000371128
0.000371096
0.000371064
0.000371031
0.000370998
0.000370964
0.00037093
0.000370896
0.00037086
0.000370825
0.000370789
0.000370753
0.000370716
0.00037068
0.000370643
0.000370607
0.000370571
0.000370536
0.000370488
0.000372885
0.000372825
0.000372782
0.00037274
0.000372698
0.000372656
0.000372615
0.000372575
0.000372536
0.000372498
0.000372461
0.000372425
0.00037239
0.000372355
0.000372322
0.000372289
0.000372258
0.000372227
0.000372197
0.000372168
0.00037214
0.000372113
0.000372087
0.000372061
0.000372036
0.000372012
0.000371988
0.000371965
0.000371942
0.00037192
0.000371898
0.000371876
0.000371854
0.000371833
0.000371811
0.000371789
0.000371768
0.000371746
0.000371725
0.000371703
0.000371681
0.000371658
0.000371636
0.000371613
0.000371589
0.000371566
0.000371542
0.000371517
0.000371492
0.000371467
0.000371441
0.000371414
0.000371387
0.00037136
0.000371332
0.000371303
0.000371274
0.000371244
0.000371214
0.000371183
0.000371151
0.00037112
0.000371087
0.000371054
0.00037102
0.000370986
0.000370952
0.000370916
0.000370881
0.000370845
0.000370808
0.000370771
0.000370734
0.000370697
0.000370659
0.000370621
0.000370584
0.000370547
0.000370511
0.000370462
0.000372903
0.00037284
0.000372796
0.000372752
0.000372708
0.000372665
0.000372623
0.000372582
0.000372542
0.000372502
0.000372464
0.000372428
0.000372392
0.000372357
0.000372323
0.00037229
0.000372258
0.000372227
0.000372197
0.000372168
0.000372139
0.000372112
0.000372086
0.00037206
0.000372035
0.000372011
0.000371988
0.000371965
0.000371942
0.00037192
0.000371898
0.000371876
0.000371854
0.000371833
0.000371811
0.00037179
0.000371769
0.000371747
0.000371726
0.000371704
0.000371681
0.000371659
0.000371636
0.000371613
0.00037159
0.000371566
0.000371542
0.000371517
0.000371492
0.000371467
0.00037144
0.000371413
0.000371386
0.000371358
0.000371329
0.0003713
0.00037127
0.000371239
0.000371208
0.000371177
0.000371144
0.000371112
0.000371078
0.000371044
0.00037101
0.000370975
0.000370939
0.000370903
0.000370866
0.000370829
0.000370792
0.000370754
0.000370715
0.000370677
0.000370638
0.000370599
0.000370561
0.000370523
0.000370485
0.000370435
0.00037292
0.000372855
0.000372808
0.000372763
0.000372717
0.000372673
0.000372629
0.000372587
0.000372546
0.000372505
0.000372467
0.000372429
0.000372392
0.000372357
0.000372322
0.000372289
0.000372257
0.000372225
0.000372195
0.000372166
0.000372138
0.00037211
0.000372084
0.000372058
0.000372033
0.000372009
0.000371986
0.000371963
0.000371941
0.000371919
0.000371897
0.000371875
0.000371854
0.000371833
0.000371811
0.00037179
0.000371769
0.000371748
0.000371726
0.000371704
0.000371682
0.00037166
0.000371637
0.000371614
0.00037159
0.000371567
0.000371543
0.000371518
0.000371493
0.000371467
0.00037144
0.000371413
0.000371385
0.000371356
0.000371327
0.000371297
0.000371266
0.000371235
0.000371203
0.000371171
0.000371138
0.000371104
0.00037107
0.000371035
0.000370999
0.000370963
0.000370927
0.000370889
0.000370852
0.000370814
0.000370775
0.000370736
0.000370697
0.000370657
0.000370617
0.000370577
0.000370537
0.000370499
0.00037046
0.000370408
0.000372936
0.000372868
0.00037282
0.000372773
0.000372725
0.000372679
0.000372634
0.000372591
0.000372548
0.000372507
0.000372467
0.000372429
0.000372391
0.000372355
0.00037232
0.000372286
0.000372254
0.000372222
0.000372192
0.000372163
0.000372135
0.000372107
0.000372081
0.000372055
0.000372031
0.000372007
0.000371984
0.000371961
0.000371939
0.000371917
0.000371895
0.000371874
0.000371853
0.000371832
0.000371811
0.00037179
0.000371769
0.000371748
0.000371727
0.000371705
0.000371683
0.00037166
0.000371638
0.000371615
0.000371592
0.000371568
0.000371544
0.000371519
0.000371493
0.000371467
0.00037144
0.000371412
0.000371384
0.000371355
0.000371325
0.000371294
0.000371263
0.000371231
0.000371199
0.000371166
0.000371132
0.000371097
0.000371062
0.000371026
0.000370989
0.000370952
0.000370914
0.000370876
0.000370838
0.000370798
0.000370759
0.000370719
0.000370678
0.000370637
0.000370596
0.000370555
0.000370514
0.000370474
0.000370435
0.000370381
0.000372951
0.00037288
0.00037283
0.000372781
0.000372732
0.000372684
0.000372638
0.000372593
0.000372549
0.000372507
0.000372466
0.000372427
0.000372389
0.000372352
0.000372317
0.000372282
0.00037225
0.000372218
0.000372188
0.000372158
0.00037213
0.000372103
0.000372076
0.000372051
0.000372027
0.000372003
0.00037198
0.000371958
0.000371936
0.000371914
0.000371893
0.000371872
0.000371852
0.000371831
0.000371811
0.00037179
0.000371769
0.000371748
0.000371727
0.000371706
0.000371684
0.000371662
0.000371639
0.000371616
0.000371593
0.000371569
0.000371545
0.00037152
0.000371494
0.000371468
0.00037144
0.000371412
0.000371383
0.000371354
0.000371323
0.000371292
0.000371261
0.000371228
0.000371195
0.000371161
0.000371126
0.00037109
0.000371054
0.000371017
0.00037098
0.000370941
0.000370903
0.000370863
0.000370824
0.000370783
0.000370742
0.000370701
0.000370659
0.000370617
0.000370575
0.000370533
0.000370491
0.00037045
0.000370409
0.000370353
0.000372965
0.000372891
0.000372839
0.000372788
0.000372737
0.000372688
0.00037264
0.000372593
0.000372549
0.000372505
0.000372464
0.000372423
0.000372384
0.000372347
0.000372311
0.000372277
0.000372244
0.000372212
0.000372181
0.000372152
0.000372124
0.000372097
0.000372071
0.000372046
0.000372021
0.000371998
0.000371976
0.000371954
0.000371932
0.000371911
0.00037189
0.00037187
0.00037185
0.00037183
0.00037181
0.000371789
0.000371769
0.000371748
0.000371727
0.000371706
0.000371685
0.000371663
0.000371641
0.000371618
0.000371595
0.000371571
0.000371547
0.000371521
0.000371495
0.000371469
0.000371441
0.000371413
0.000371383
0.000371353
0.000371322
0.000371291
0.000371258
0.000371225
0.000371191
0.000371156
0.000371121
0.000371084
0.000371047
0.000371009
0.00037097
0.000370931
0.000370891
0.000370851
0.00037081
0.000370768
0.000370726
0.000370684
0.000370641
0.000370598
0.000370554
0.000370511
0.000370467
0.000370425
0.000370383
0.000370326
0.000372978
0.0003729
0.000372846
0.000372793
0.00037274
0.000372689
0.00037264
0.000372592
0.000372546
0.000372502
0.000372459
0.000372418
0.000372378
0.00037234
0.000372304
0.000372269
0.000372235
0.000372203
0.000372173
0.000372144
0.000372116
0.000372089
0.000372063
0.000372039
0.000372015
0.000371992
0.00037197
0.000371948
0.000371927
0.000371907
0.000371887
0.000371867
0.000371847
0.000371828
0.000371808
0.000371788
0.000371769
0.000371748
0.000371728
0.000371707
0.000371686
0.000371665
0.000371643
0.00037162
0.000371597
0.000371573
0.000371549
0.000371523
0.000371497
0.00037147
0.000371442
0.000371414
0.000371384
0.000371353
0.000371322
0.00037129
0.000371257
0.000371223
0.000371188
0.000371152
0.000371116
0.000371078
0.00037104
0.000371001
0.000370961
0.000370921
0.00037088
0.000370838
0.000370796
0.000370753
0.00037071
0.000370666
0.000370622
0.000370578
0.000370533
0.000370488
0.000370443
0.0003704
0.000370356
0.000370297
0.000372989
0.000372908
0.000372851
0.000372796
0.000372742
0.000372689
0.000372638
0.000372589
0.000372541
0.000372496
0.000372452
0.00037241
0.000372369
0.000372331
0.000372294
0.000372258
0.000372225
0.000372193
0.000372163
0.000372133
0.000372106
0.000372079
0.000372054
0.00037203
0.000372007
0.000371985
0.000371963
0.000371942
0.000371922
0.000371902
0.000371883
0.000371864
0.000371845
0.000371826
0.000371806
0.000371787
0.000371768
0.000371748
0.000371729
0.000371708
0.000371688
0.000371667
0.000371645
0.000371623
0.0003716
0.000371576
0.000371551
0.000371526
0.000371499
0.000371472
0.000371444
0.000371415
0.000371385
0.000371354
0.000371322
0.000371289
0.000371256
0.000371221
0.000371185
0.000371149
0.000371111
0.000371073
0.000371034
0.000370993
0.000370953
0.000370911
0.000370869
0.000370826
0.000370783
0.000370739
0.000370694
0.000370649
0.000370604
0.000370558
0.000370512
0.000370466
0.000370419
0.000370374
0.00037033
0.000370269
0.000372999
0.000372914
0.000372855
0.000372798
0.000372741
0.000372686
0.000372634
0.000372583
0.000372534
0.000372487
0.000372442
0.000372399
0.000372358
0.000372319
0.000372281
0.000372246
0.000372212
0.00037218
0.00037215
0.000372121
0.000372094
0.000372068
0.000372043
0.00037202
0.000371997
0.000371976
0.000371955
0.000371935
0.000371915
0.000371896
0.000371878
0.000371859
0.000371841
0.000371823
0.000371804
0.000371786
0.000371767
0.000371749
0.000371729
0.00037171
0.000371689
0.000371669
0.000371647
0.000371625
0.000371602
0.000371579
0.000371554
0.000371529
0.000371502
0.000371475
0.000371446
0.000371417
0.000371387
0.000371355
0.000371323
0.000371289
0.000371255
0.000371219
0.000371183
0.000371146
0.000371107
0.000371068
0.000371027
0.000370986
0.000370944
0.000370902
0.000370858
0.000370814
0.000370769
0.000370724
0.000370678
0.000370632
0.000370585
0.000370538
0.00037049
0.000370443
0.000370395
0.000370349
0.000370303
0.00037024
0.000373007
0.000372918
0.000372856
0.000372797
0.000372738
0.000372681
0.000372627
0.000372574
0.000372524
0.000372476
0.00037243
0.000372386
0.000372344
0.000372304
0.000372266
0.000372231
0.000372197
0.000372165
0.000372135
0.000372107
0.00037208
0.000372055
0.000372031
0.000372008
0.000371987
0.000371966
0.000371946
0.000371927
0.000371908
0.00037189
0.000371872
0.000371854
0.000371837
0.00037182
0.000371802
0.000371785
0.000371767
0.000371749
0.00037173
0.000371711
0.000371691
0.000371671
0.00037165
0.000371628
0.000371605
0.000371582
0.000371557
0.000371532
0.000371506
0.000371478
0.000371449
0.00037142
0.000371389
0.000371357
0.000371324
0.00037129
0.000371255
0.000371219
0.000371181
0.000371143
0.000371103
0.000371063
0.000371022
0.000370979
0.000370936
0.000370892
0.000370848
0.000370802
0.000370756
0.00037071
0.000370662
0.000370614
0.000370566
0.000370518
0.000370469
0.00037042
0.000370371
0.000370323
0.000370276
0.000370211
0.000373013
0.00037292
0.000372855
0.000372793
0.000372732
0.000372673
0.000372617
0.000372563
0.000372511
0.000372462
0.000372414
0.00037237
0.000372327
0.000372287
0.000372249
0.000372213
0.00037218
0.000372148
0.000372118
0.000372091
0.000372065
0.00037204
0.000372017
0.000371995
0.000371974
0.000371954
0.000371935
0.000371917
0.000371899
0.000371882
0.000371865
0.000371849
0.000371832
0.000371816
0.0003718
0.000371783
0.000371766
0.000371749
0.000371731
0.000371712
0.000371693
0.000371673
0.000371653
0.000371631
0.000371609
0.000371586
0.000371561
0.000371536
0.00037151
0.000371482
0.000371453
0.000371423
0.000371392
0.000371359
0.000371326
0.000371291
0.000371255
0.000371218
0.00037118
0.000371141
0.0003711
0.000371059
0.000371016
0.000370973
0.000370929
0.000370883
0.000370838
0.000370791
0.000370743
0.000370695
0.000370647
0.000370597
0.000370548
0.000370498
0.000370447
0.000370397
0.000370346
0.000370297
0.000370248
0.000370181
0.000373016
0.000372919
0.000372851
0.000372786
0.000372723
0.000372662
0.000372603
0.000372548
0.000372494
0.000372444
0.000372396
0.00037235
0.000372307
0.000372267
0.000372229
0.000372193
0.000372159
0.000372128
0.000372099
0.000372072
0.000372047
0.000372023
0.000372001
0.00037198
0.00037196
0.000371941
0.000371923
0.000371906
0.00037189
0.000371874
0.000371858
0.000371843
0.000371827
0.000371812
0.000371797
0.000371781
0.000371765
0.000371749
0.000371731
0.000371714
0.000371695
0.000371676
0.000371656
0.000371635
0.000371613
0.00037159
0.000371566
0.000371541
0.000371514
0.000371486
0.000371457
0.000371427
0.000371395
0.000371362
0.000371328
0.000371293
0.000371256
0.000371218
0.000371179
0.000371139
0.000371097
0.000371055
0.000371011
0.000370967
0.000370921
0.000370875
0.000370828
0.00037078
0.000370731
0.000370681
0.000370631
0.00037058
0.000370529
0.000370478
0.000370426
0.000370374
0.000370322
0.000370271
0.00037022
0.000370152
0.000373017
0.000372915
0.000372844
0.000372776
0.00037271
0.000372647
0.000372587
0.000372529
0.000372474
0.000372422
0.000372373
0.000372327
0.000372284
0.000372243
0.000372205
0.000372169
0.000372136
0.000372106
0.000372077
0.000372051
0.000372026
0.000372004
0.000371982
0.000371963
0.000371944
0.000371926
0.00037191
0.000371894
0.000371878
0.000371864
0.00037185
0.000371836
0.000371822
0.000371808
0.000371793
0.000371779
0.000371764
0.000371748
0.000371732
0.000371715
0.000371698
0.000371679
0.00037166
0.000371639
0.000371618
0.000371595
0.000371571
0.000371546
0.000371519
0.000371491
0.000371462
0.000371431
0.000371399
0.000371366
0.000371331
0.000371295
0.000371258
0.000371219
0.000371179
0.000371138
0.000371095
0.000371051
0.000371007
0.000370961
0.000370914
0.000370867
0.000370818
0.000370769
0.000370718
0.000370667
0.000370616
0.000370564
0.000370511
0.000370458
0.000370404
0.000370351
0.000370297
0.000370245
0.000370192
0.000370121
0.000373015
0.000372908
0.000372834
0.000372763
0.000372694
0.000372628
0.000372566
0.000372507
0.00037245
0.000372397
0.000372347
0.0003723
0.000372257
0.000372216
0.000372178
0.000372143
0.00037211
0.00037208
0.000372052
0.000372027
0.000372003
0.000371982
0.000371962
0.000371943
0.000371926
0.000371909
0.000371894
0.00037188
0.000371866
0.000371853
0.00037184
0.000371828
0.000371815
0.000371802
0.000371789
0.000371776
0.000371762
0.000371748
0.000371733
0.000371717
0.0003717
0.000371683
0.000371664
0.000371644
0.000371623
0.000371601
0.000371577
0.000371552
0.000371525
0.000371497
0.000371467
0.000371436
0.000371404
0.00037137
0.000371335
0.000371298
0.00037126
0.00037122
0.000371179
0.000371137
0.000371094
0.000371049
0.000371003
0.000370956
0.000370908
0.000370859
0.000370809
0.000370758
0.000370706
0.000370654
0.000370601
0.000370547
0.000370493
0.000370438
0.000370383
0.000370328
0.000370272
0.000370218
0.000370164
0.00037009
0.00037301
0.000372897
0.00037282
0.000372746
0.000372674
0.000372606
0.000372541
0.00037248
0.000372422
0.000372368
0.000372317
0.00037227
0.000372226
0.000372185
0.000372147
0.000372112
0.00037208
0.000372051
0.000372024
0.000372
0.000371977
0.000371957
0.000371938
0.000371921
0.000371905
0.00037189
0.000371877
0.000371864
0.000371852
0.000371841
0.00037183
0.000371819
0.000371808
0.000371796
0.000371785
0.000371773
0.000371761
0.000371748
0.000371734
0.000371719
0.000371703
0.000371687
0.000371668
0.000371649
0.000371629
0.000371607
0.000371583
0.000371558
0.000371531
0.000371503
0.000371474
0.000371442
0.00037141
0.000371375
0.000371339
0.000371302
0.000371263
0.000371223
0.000371181
0.000371137
0.000371093
0.000371047
0.000371
0.000370951
0.000370902
0.000370852
0.0003708
0.000370748
0.000370695
0.000370641
0.000370586
0.00037053
0.000370474
0.000370418
0.000370361
0.000370304
0.000370246
0.00037019
0.000370134
0.000370058
0.000373002
0.000372883
0.000372802
0.000372725
0.00037265
0.000372579
0.000372512
0.000372449
0.00037239
0.000372334
0.000372283
0.000372235
0.000372191
0.00037215
0.000372112
0.000372077
0.000372046
0.000372018
0.000371992
0.000371969
0.000371948
0.000371929
0.000371912
0.000371896
0.000371882
0.000371869
0.000371858
0.000371847
0.000371837
0.000371827
0.000371818
0.000371808
0.000371799
0.00037179
0.00037178
0.00037177
0.000371759
0.000371748
0.000371735
0.000371722
0.000371707
0.000371691
0.000371674
0.000371655
0.000371635
0.000371613
0.00037159
0.000371565
0.000371539
0.00037151
0.000371481
0.000371449
0.000371416
0.000371381
0.000371345
0.000371307
0.000371267
0.000371225
0.000371182
0.000371138
0.000371092
0.000371045
0.000370997
0.000370947
0.000370897
0.000370845
0.000370792
0.000370738
0.000370683
0.000370628
0.000370571
0.000370514
0.000370456
0.000370398
0.000370339
0.00037028
0.00037022
0.000370162
0.000370105
0.000370026
0.00037299
0.000372865
0.00037278
0.000372699
0.000372621
0.000372547
0.000372478
0.000372413
0.000372352
0.000372296
0.000372243
0.000372195
0.00037215
0.000372109
0.000372072
0.000372038
0.000372008
0.000371981
0.000371956
0.000371935
0.000371915
0.000371898
0.000371882
0.000371869
0.000371857
0.000371846
0.000371836
0.000371828
0.00037182
0.000371812
0.000371804
0.000371797
0.00037179
0.000371783
0.000371775
0.000371767
0.000371758
0.000371748
0.000371736
0.000371724
0.00037171
0.000371696
0.000371679
0.000371661
0.000371642
0.000371621
0.000371598
0.000371573
0.000371547
0.000371519
0.000371489
0.000371457
0.000371423
0.000371388
0.000371351
0.000371312
0.000371271
0.000371229
0.000371185
0.00037114
0.000371093
0.000371044
0.000370995
0.000370944
0.000370892
0.000370838
0.000370784
0.000370728
0.000370672
0.000370615
0.000370556
0.000370497
0.000370438
0.000370377
0.000370317
0.000370255
0.000370194
0.000370134
0.000370075
0.000369994
0.000372974
0.000372842
0.000372753
0.000372668
0.000372587
0.00037251
0.000372438
0.000372372
0.000372309
0.000372252
0.000372198
0.000372149
0.000372105
0.000372064
0.000372027
0.000371994
0.000371965
0.000371939
0.000371916
0.000371896
0.000371878
0.000371863
0.00037185
0.000371838
0.000371829
0.00037182
0.000371813
0.000371806
0.0003718
0.000371795
0.00037179
0.000371785
0.00037178
0.000371775
0.000371769
0.000371763
0.000371756
0.000371747
0.000371738
0.000371727
0.000371714
0.000371701
0.000371685
0.000371668
0.000371649
0.000371629
0.000371606
0.000371582
0.000371556
0.000371528
0.000371497
0.000371466
0.000371432
0.000371396
0.000371358
0.000371318
0.000371277
0.000371234
0.000371189
0.000371142
0.000371094
0.000371044
0.000370993
0.000370941
0.000370887
0.000370832
0.000370776
0.000370719
0.000370661
0.000370601
0.000370541
0.00037048
0.000370419
0.000370357
0.000370294
0.000370231
0.000370168
0.000370106
0.000370044
0.00036996
0.000372953
0.000372814
0.00037272
0.000372632
0.000372547
0.000372467
0.000372393
0.000372324
0.00037226
0.000372201
0.000372147
0.000372098
0.000372053
0.000372013
0.000371977
0.000371945
0.000371917
0.000371892
0.000371871
0.000371853
0.000371838
0.000371825
0.000371814
0.000371805
0.000371798
0.000371792
0.000371787
0.000371783
0.00037178
0.000371777
0.000371775
0.000371772
0.00037177
0.000371767
0.000371764
0.000371759
0.000371754
0.000371747
0.000371739
0.00037173
0.000371719
0.000371706
0.000371692
0.000371676
0.000371658
0.000371638
0.000371616
0.000371592
0.000371566
0.000371538
0.000371507
0.000371475
0.000371441
0.000371405
0.000371366
0.000371326
0.000371283
0.000371239
0.000371193
0.000371145
0.000371095
0.000371044
0.000370992
0.000370938
0.000370883
0.000370826
0.000370769
0.00037071
0.000370649
0.000370588
0.000370526
0.000370464
0.0003704
0.000370336
0.000370271
0.000370206
0.000370141
0.000370077
0.000370013
0.000369926
0.000372927
0.00037278
0.000372681
0.000372589
0.0003725
0.000372417
0.000372341
0.00037227
0.000372204
0.000372144
0.00037209
0.00037204
0.000371995
0.000371956
0.00037192
0.00037189
0.000371863
0.000371841
0.000371821
0.000371805
0.000371792
0.000371782
0.000371774
0.000371768
0.000371764
0.000371761
0.000371759
0.000371758
0.000371757
0.000371757
0.000371758
0.000371758
0.000371759
0.000371758
0.000371757
0.000371755
0.000371752
0.000371747
0.000371741
0.000371733
0.000371724
0.000371712
0.000371699
0.000371684
0.000371667
0.000371648
0.000371626
0.000371603
0.000371577
0.000371549
0.000371518
0.000371486
0.000371451
0.000371414
0.000371375
0.000371334
0.000371291
0.000371245
0.000371198
0.000371149
0.000371098
0.000371046
0.000370992
0.000370936
0.000370879
0.000370821
0.000370761
0.0003707
0.000370639
0.000370576
0.000370512
0.000370447
0.000370381
0.000370315
0.000370248
0.000370181
0.000370113
0.000370047
0.000369981
0.000369892
0.000372895
0.00037274
0.000372636
0.000372539
0.000372446
0.00037236
0.000372281
0.000372208
0.000372141
0.00037208
0.000372024
0.000371975
0.000371931
0.000371892
0.000371858
0.000371828
0.000371804
0.000371783
0.000371766
0.000371753
0.000371743
0.000371735
0.00037173
0.000371728
0.000371726
0.000371727
0.000371728
0.00037173
0.000371733
0.000371737
0.00037174
0.000371744
0.000371747
0.000371749
0.00037175
0.00037175
0.000371749
0.000371747
0.000371742
0.000371737
0.000371729
0.000371719
0.000371708
0.000371694
0.000371677
0.000371659
0.000371638
0.000371614
0.000371589
0.000371561
0.00037153
0.000371498
0.000371463
0.000371425
0.000371385
0.000371343
0.000371299
0.000371252
0.000371204
0.000371154
0.000371101
0.000371047
0.000370992
0.000370935
0.000370876
0.000370816
0.000370754
0.000370692
0.000370628
0.000370563
0.000370497
0.00037043
0.000370363
0.000370294
0.000370225
0.000370155
0.000370085
0.000370017
0.000369949
0.000369857
0.000372856
0.000372692
0.000372583
0.000372481
0.000372384
0.000372295
0.000372213
0.000372137
0.000372069
0.000372007
0.000371951
0.000371902
0.000371858
0.00037182
0.000371788
0.00037176
0.000371738
0.000371719
0.000371705
0.000371695
0.000371688
0.000371684
0.000371682
0.000371683
0.000371685
0.000371689
0.000371694
0.0003717
0.000371707
0.000371714
0.000371721
0.000371728
0.000371734
0.000371739
0.000371743
0.000371746
0.000371747
0.000371747
0.000371745
0.000371741
0.000371735
0.000371727
0.000371716
0.000371704
0.000371688
0.00037167
0.00037165
0.000371627
0.000371602
0.000371574
0.000371543
0.000371511
0.000371475
0.000371437
0.000371397
0.000371354
0.000371308
0.000371261
0.000371211
0.000371159
0.000371105
0.00037105
0.000370993
0.000370934
0.000370873
0.000370811
0.000370748
0.000370683
0.000370618
0.000370551
0.000370483
0.000370414
0.000370344
0.000370273
0.000370201
0.000370129
0.000370057
0.000369986
0.000369916
0.000369821
0.000372811
0.000372637
0.000372521
0.000372414
0.000372313
0.00037222
0.000372135
0.000372058
0.000371988
0.000371925
0.000371869
0.00037182
0.000371777
0.000371741
0.00037171
0.000371685
0.000371665
0.000371649
0.000371638
0.000371631
0.000371628
0.000371628
0.00037163
0.000371634
0.000371641
0.000371649
0.000371658
0.000371668
0.000371679
0.00037169
0.0003717
0.00037171
0.00037172
0.000371728
0.000371735
0.000371741
0.000371745
0.000371747
0.000371747
0.000371746
0.000371742
0.000371735
0.000371726
0.000371715
0.0003717
0.000371683
0.000371664
0.000371641
0.000371616
0.000371588
0.000371558
0.000371525
0.000371489
0.00037145
0.000371409
0.000371365
0.000371319
0.00037127
0.000371219
0.000371166
0.00037111
0.000371053
0.000370994
0.000370933
0.000370871
0.000370807
0.000370742
0.000370675
0.000370607
0.000370538
0.000370468
0.000370397
0.000370324
0.000370251
0.000370177
0.000370102
0.000370028
0.000369955
0.000369882
0.000369784
0.000372757
0.000372573
0.000372451
0.000372338
0.000372232
0.000372135
0.000372048
0.000371968
0.000371897
0.000371834
0.000371778
0.000371729
0.000371687
0.000371653
0.000371624
0.000371601
0.000371584
0.000371572
0.000371565
0.000371561
0.000371562
0.000371566
0.000371572
0.000371582
0.000371593
0.000371605
0.000371619
0.000371633
0.000371648
0.000371663
0.000371678
0.000371692
0.000371705
0.000371717
0.000371727
0.000371736
0.000371743
0.000371748
0.000371751
0.000371751
0.000371749
0.000371745
0.000371737
0.000371727
0.000371714
0.000371697
0.000371678
0.000371657
0.000371632
0.000371604
0.000371574
0.00037154
0.000371504
0.000371465
0.000371423
0.000371378
0.00037133
0.00037128
0.000371228
0.000371173
0.000371116
0.000371057
0.000370996
0.000370934
0.000370869
0.000370804
0.000370736
0.000370667
0.000370597
0.000370526
0.000370453
0.000370379
0.000370304
0.000370229
0.000370152
0.000370075
0.000369998
0.000369923
0.000369848
0.000369746
0.000372694
0.000372498
0.000372369
0.000372251
0.00037214
0.000372039
0.000371949
0.000371867
0.000371795
0.000371731
0.000371675
0.000371627
0.000371587
0.000371555
0.000371529
0.000371509
0.000371495
0.000371487
0.000371484
0.000371485
0.00037149
0.000371499
0.00037151
0.000371524
0.00037154
0.000371558
0.000371576
0.000371596
0.000371615
0.000371635
0.000371654
0.000371672
0.000371689
0.000371705
0.000371719
0.000371731
0.000371741
0.000371749
0.000371755
0.000371758
0.000371758
0.000371755
0.000371749
0.00037174
0.000371728
0.000371713
0.000371695
0.000371673
0.000371649
0.000371622
0.000371591
0.000371557
0.00037152
0.00037148
0.000371437
0.000371391
0.000371343
0.000371291
0.000371237
0.000371181
0.000371122
0.000371062
0.000370999
0.000370935
0.000370868
0.0003708
0.000370731
0.00037066
0.000370587
0.000370513
0.000370438
0.000370362
0.000370284
0.000370206
0.000370127
0.000370047
0.000369968
0.00036989
0.000369813
0.000369708
0.00037262
0.000372412
0.000372276
0.000372152
0.000372036
0.000371931
0.000371837
0.000371754
0.00037168
0.000371616
0.000371561
0.000371514
0.000371476
0.000371446
0.000371423
0.000371408
0.000371398
0.000371394
0.000371395
0.000371401
0.000371412
0.000371425
0.000371442
0.000371462
0.000371483
0.000371506
0.000371531
0.000371555
0.00037158
0.000371604
0.000371628
0.000371651
0.000371672
0.000371692
0.00037171
0.000371726
0.00037174
0.000371751
0.000371759
0.000371765
0.000371767
0.000371766
0.000371762
0.000371755
0.000371744
0.00037173
0.000371713
0.000371692
0.000371668
0.00037164
0.000371609
0.000371575
0.000371538
0.000371497
0.000371453
0.000371406
0.000371356
0.000371304
0.000371248
0.00037119
0.00037113
0.000371067
0.000371003
0.000370936
0.000370868
0.000370798
0.000370726
0.000370652
0.000370577
0.000370501
0.000370423
0.000370344
0.000370264
0.000370183
0.000370101
0.000370019
0.000369937
0.000369856
0.000369776
0.000369668
0.000372536
0.000372314
0.00037217
0.000372039
0.000371917
0.000371808
0.000371711
0.000371626
0.000371551
0.000371487
0.000371433
0.000371389
0.000371353
0.000371326
0.000371307
0.000371296
0.000371291
0.000371292
0.000371299
0.00037131
0.000371326
0.000371346
0.000371369
0.000371395
0.000371422
0.000371451
0.000371481
0.000371511
0.000371542
0.000371572
0.000371601
0.000371628
0.000371655
0.000371679
0.000371701
0.000371721
0.000371739
0.000371753
0.000371765
0.000371773
0.000371778
0.000371779
0.000371777
0.000371771
0.000371762
0.000371749
0.000371732
0.000371712
0.000371688
0.000371661
0.00037163
0.000371595
0.000371557
0.000371516
0.000371471
0.000371423
0.000371371
0.000371317
0.00037126
0.0003712
0.000371138
0.000371074
0.000371007
0.000370938
0.000370868
0.000370795
0.000370721
0.000370645
0.000370567
0.000370488
0.000370408
0.000370326
0.000370243
0.000370159
0.000370075
0.00036999
0.000369905
0.000369821
0.000369739
0.000369627
0.000372438
0.000372202
0.000372049
0.000371911
0.000371783
0.00037167
0.00037157
0.000371483
0.000371408
0.000371344
0.000371291
0.000371249
0.000371217
0.000371194
0.000371179
0.000371172
0.000371173
0.00037118
0.000371193
0.000371211
0.000371234
0.00037126
0.00037129
0.000371322
0.000371356
0.000371392
0.000371428
0.000371465
0.000371501
0.000371537
0.000371572
0.000371605
0.000371636
0.000371666
0.000371693
0.000371717
0.000371738
0.000371756
0.000371771
0.000371782
0.00037179
0.000371793
0.000371793
0.000371789
0.000371781
0.000371769
0.000371753
0.000371734
0.00037171
0.000371683
0.000371652
0.000371617
0.000371578
0.000371536
0.00037149
0.00037144
0.000371388
0.000371332
0.000371273
0.000371212
0.000371148
0.000371081
0.000371012
0.000370941
0.000370868
0.000370793
0.000370716
0.000370637
0.000370557
0.000370475
0.000370392
0.000370307
0.000370222
0.000370135
0.000370048
0.00036996
0.000369872
0.000369786
0.000369701
0.000369586
0.000372327
0.000372074
0.000371911
0.000371766
0.000371632
0.000371514
0.000371411
0.000371322
0.000371247
0.000371184
0.000371134
0.000371095
0.000371066
0.000371047
0.000371038
0.000371037
0.000371044
0.000371057
0.000371077
0.000371103
0.000371133
0.000371167
0.000371204
0.000371243
0.000371285
0.000371328
0.000371371
0.000371415
0.000371458
0.0003715
0.000371541
0.00037158
0.000371617
0.000371652
0.000371684
0.000371713
0.000371738
0.00037176
0.000371778
0.000371793
0.000371803
0.000371809
0.000371811
0.000371809
0.000371802
0.000371791
0.000371776
0.000371757
0.000371734
0.000371707
0.000371675
0.00037164
0.000371601
0.000371557
0.00037151
0.00037146
0.000371406
0.000371348
0.000371288
0.000371224
0.000371158
0.000371089
0.000371018
0.000370944
0.000370869
0.000370791
0.000370711
0.00037063
0.000370547
0.000370462
0.000370376
0.000370288
0.0003702
0.00037011
0.00037002
0.000369929
0.000369838
0.000369749
0.000369661
0.000369543
0.000372199
0.000371929
0.000371755
0.000371601
0.000371461
0.000371338
0.000371233
0.000371143
0.000371068
0.000371007
0.000370959
0.000370923
0.000370899
0.000370886
0.000370882
0.000370888
0.000370902
0.000370924
0.000370952
0.000370985
0.000371024
0.000371066
0.000371111
0.000371159
0.000371209
0.00037126
0.000371311
0.000371362
0.000371413
0.000371462
0.000371509
0.000371555
0.000371598
0.000371638
0.000371675
0.000371709
0.000371739
0.000371765
0.000371787
0.000371804
0.000371818
0.000371826
0.00037183
0.00037183
0.000371825
0.000371815
0.000371801
0.000371783
0.00037176
0.000371733
0.000371701
0.000371665
0.000371625
0.000371581
0.000371532
0.00037148
0.000371425
0.000371366
0.000371303
0.000371238
0.000371169
0.000371098
0.000371024
0.000370948
0.00037087
0.000370789
0.000370707
0.000370622
0.000370536
0.000370448
0.000370359
0.000370269
0.000370177
0.000370084
0.000369991
0.000369897
0.000369803
0.000369711
0.000369621
0.000369498
0.000372053
0.000371763
0.000371579
0.000371416
0.000371269
0.000371141
0.000371033
0.000370942
0.000370868
0.000370809
0.000370764
0.000370733
0.000370715
0.000370708
0.000370712
0.000370725
0.000370748
0.000370778
0.000370815
0.000370857
0.000370905
0.000370956
0.000371011
0.000371068
0.000371127
0.000371187
0.000371247
0.000371306
0.000371365
0.000371421
0.000371476
0.000371529
0.000371578
0.000371624
0.000371667
0.000371706
0.000371741
0.000371771
0.000371797
0.000371818
0.000371834
0.000371845
0.000371852
0.000371853
0.00037185
0.000371842
0.000371829
0.000371811
0.000371788
0.000371761
0.000371729
0.000371692
0.000371651
0.000371606
0.000371556
0.000371503
0.000371445
0.000371384
0.00037132
0.000371252
0.000371181
0.000371107
0.000371031
0.000370952
0.000370871
0.000370788
0.000370702
0.000370615
0.000370526
0.000370435
0.000370342
0.000370248
0.000370153
0.000370057
0.000369961
0.000369864
0.000369767
0.000369672
0.000369579
0.000369453
0.000371887
0.000371576
0.000371379
0.000371206
0.000371052
0.00037092
0.000370809
0.000370718
0.000370645
0.000370589
0.000370548
0.000370523
0.000370511
0.000370512
0.000370524
0.000370547
0.000370579
0.000370619
0.000370666
0.000370718
0.000370776
0.000370838
0.000370903
0.000370971
0.00037104
0.000371109
0.000371178
0.000371247
0.000371314
0.000371379
0.000371442
0.000371502
0.000371558
0.000371611
0.000371659
0.000371703
0.000371743
0.000371778
0.000371808
0.000371833
0.000371852
0.000371866
0.000371875
0.000371879
0.000371877
0.00037187
0.000371858
0.000371841
0.000371818
0.000371791
0.000371758
0.000371721
0.000371679
0.000371632
0.000371581
0.000371526
0.000371467
0.000371404
0.000371337
0.000371267
0.000371194
0.000371118
0.000371039
0.000370957
0.000370873
0.000370786
0.000370698
0.000370607
0.000370515
0.00037042
0.000370325
0.000370228
0.000370129
0.00037003
0.00036993
0.00036983
0.00036973
0.000369632
0.000369536
0.000369406
0.000371699
0.000371363
0.000371152
0.000370969
0.000370807
0.00037067
0.000370558
0.000370467
0.000370396
0.000370343
0.000370309
0.00037029
0.000370286
0.000370296
0.000370318
0.000370351
0.000370394
0.000370445
0.000370503
0.000370568
0.000370638
0.000370711
0.000370788
0.000370867
0.000370947
0.000371027
0.000371106
0.000371185
0.000371261
0.000371335
0.000371406
0.000371474
0.000371537
0.000371597
0.000371652
0.000371702
0.000371747
0.000371787
0.000371821
0.000371849
0.000371872
0.00037189
0.000371901
0.000371907
0.000371907
0.000371901
0.00037189
0.000371873
0.000371851
0.000371823
0.00037179
0.000371752
0.000371709
0.000371661
0.000371609
0.000371551
0.00037149
0.000371425
0.000371356
0.000371284
0.000371208
0.000371129
0.000371047
0.000370962
0.000370875
0.000370785
0.000370693
0.000370599
0.000370503
0.000370406
0.000370307
0.000370206
0.000370105
0.000370002
0.000369899
0.000369795
0.000369691
0.000369591
0.000369491
0.000369357
0.000371485
0.000371122
0.000370896
0.000370702
0.000370532
0.00037039
0.000370275
0.000370185
0.000370117
0.00037007
0.000370042
0.000370032
0.000370038
0.000370058
0.000370092
0.000370137
0.000370192
0.000370256
0.000370328
0.000370405
0.000370488
0.000370575
0.000370664
0.000370755
0.000370847
0.000370939
0.00037103
0.000371119
0.000371205
0.000371289
0.000371369
0.000371445
0.000371517
0.000371584
0.000371645
0.000371702
0.000371752
0.000371797
0.000371836
0.000371869
0.000371895
0.000371915
0.000371929
0.000371937
0.000371939
0.000371935
0.000371924
0.000371908
0.000371886
0.000371858
0.000371825
0.000371786
0.000371741
0.000371692
0.000371637
0.000371578
0.000371515
0.000371448
0.000371376
0.000371301
0.000371223
0.000371141
0.000371056
0.000370968
0.000370877
0.000370784
0.000370688
0.000370591
0.000370492
0.000370391
0.000370288
0.000370184
0.000370079
0.000369972
0.000369866
0.000369758
0.000369651
0.000369547
0.000369445
0.000369307
0.000371242
0.000370848
0.000370605
0.000370399
0.00037022
0.000370074
0.000369958
0.00036987
0.000369807
0.000369766
0.000369747
0.000369747
0.000369764
0.000369797
0.000369844
0.000369903
0.000369973
0.000370051
0.000370137
0.00037023
0.000370327
0.000370428
0.000370532
0.000370637
0.000370742
0.000370846
0.000370949
0.00037105
0.000371147
0.000371241
0.000371331
0.000371416
0.000371496
0.000371571
0.00037164
0.000371703
0.00037176
0.00037181
0.000371853
0.00037189
0.00037192
0.000371944
0.000371961
0.000371971
0.000371974
0.000371971
0.000371962
0.000371946
0.000371924
0.000371896
0.000371861
0.000371821
0.000371775
0.000371724
0.000371668
0.000371607
0.000371542
0.000371472
0.000371398
0.00037132
0.000371238
0.000371153
0.000371065
0.000370974
0.000370879
0.000370783
0.000370684
0.000370583
0.00037048
0.000370375
0.000370268
0.000370161
0.000370051
0.000369941
0.000369831
0.00036972
0.000369609
0.000369502
0.000369396
0.000369254
0.000370967
0.000370537
0.000370276
0.000370056
0.000369868
0.000369718
0.000369602
0.000369516
0.000369459
0.000369428
0.000369419
0.000369432
0.000369463
0.000369511
0.000369573
0.000369648
0.000369734
0.000369829
0.000369932
0.000370041
0.000370155
0.000370272
0.000370391
0.000370511
0.00037063
0.000370748
0.000370864
0.000370977
0.000371087
0.000371192
0.000371292
0.000371387
0.000371476
0.000371559
0.000371636
0.000371706
0.000371769
0.000371824
0.000371873
0.000371915
0.000371949
0.000371975
0.000371995
0.000372007
0.000372012
0.000372011
0.000372002
0.000371987
0.000371964
0.000371936
0.000371901
0.000371859
0.000371812
0.000371759
0.000371701
0.000371638
0.00037157
0.000371497
0.000371421
0.00037134
0.000371255
0.000371167
0.000371075
0.00037098
0.000370882
0.000370781
0.000370679
0.000370574
0.000370467
0.000370358
0.000370248
0.000370136
0.000370023
0.000369909
0.000369795
0.00036968
0.000369566
0.000369455
0.000369346
0.0003692
0.000370653
0.000370184
0.000369901
0.000369666
0.000369469
0.000369315
0.0003692
0.00036912
0.000369071
0.000369051
0.000369056
0.000369083
0.000369131
0.000369196
0.000369276
0.00036937
0.000369475
0.000369589
0.000369711
0.000369839
0.00036997
0.000370105
0.000370241
0.000370377
0.000370512
0.000370645
0.000370775
0.000370902
0.000371024
0.000371141
0.000371252
0.000371357
0.000371456
0.000371548
0.000371633
0.00037171
0.00037178
0.000371842
0.000371896
0.000371942
0.00037198
0.00037201
0.000372033
0.000372047
0.000372054
0.000372053
0.000372046
0.00037203
0.000372008
0.000371979
0.000371943
0.0003719
0.000371851
0.000371796
0.000371736
0.00037167
0.0003716
0.000371525
0.000371445
0.000371361
0.000371272
0.00037118
0.000371085
0.000370986
0.000370884
0.00037078
0.000370673
0.000370564
0.000370453
0.00037034
0.000370226
0.00037011
0.000369993
0.000369875
0.000369756
0.000369638
0.00036952
0.000369406
0.000369293
0.000369143
0.000370297
0.000369781
0.000369474
0.000369223
0.000369016
0.000368859
0.000368747
0.000368675
0.000368637
0.000368631
0.000368652
0.000368698
0.000368765
0.00036885
0.000368952
0.000369067
0.000369194
0.00036933
0.000369473
0.000369621
0.000369773
0.000369927
0.000370081
0.000370235
0.000370387
0.000370537
0.000370682
0.000370823
0.000370959
0.000371089
0.000371212
0.000371328
0.000371437
0.000371539
0.000371632
0.000371717
0.000371794
0.000371862
0.000371922
0.000371973
0.000372015
0.000372048
0.000372074
0.00037209
0.000372099
0.0003721
0.000372093
0.000372078
0.000372055
0.000372025
0.000371987
0.000371943
0.000371893
0.000371836
0.000371773
0.000371705
0.000371632
0.000371553
0.00037147
0.000371383
0.000371291
0.000371195
0.000371095
0.000370992
0.000370887
0.000370778
0.000370667
0.000370554
0.000370438
0.000370321
0.000370202
0.000370082
0.000369961
0.000369839
0.000369717
0.000369594
0.000369472
0.000369354
0.000369239
0.000369084
0.000369891
0.00036932
0.000368986
0.000368717
0.000368501
0.000368342
0.000368236
0.000368174
0.000368151
0.000368163
0.000368204
0.000368272
0.000368362
0.000368472
0.000368599
0.000368739
0.00036889
0.00036905
0.000369217
0.000369388
0.000369562
0.000369738
0.000369913
0.000370086
0.000370257
0.000370424
0.000370586
0.000370743
0.000370893
0.000371037
0.000371172
0.0003713
0.00037142
0.000371531
0.000371633
0.000371727
0.000371811
0.000371886
0.000371951
0.000372007
0.000372053
0.000372091
0.000372119
0.000372138
0.000372148
0.00037215
0.000372143
0.000372128
0.000372105
0.000372074
0.000372035
0.000371989
0.000371937
0.000371878
0.000371813
0.000371742
0.000371665
0.000371584
0.000371497
0.000371405
0.000371309
0.000371209
0.000371106
0.000370999
0.000370889
0.000370776
0.00037066
0.000370542
0.000370423
0.000370301
0.000370178
0.000370053
0.000369927
0.000369801
0.000369674
0.000369548
0.000369422
0.000369301
0.000369181
0.000369022
0.000369428
0.000368793
0.000368426
0.000368138
0.000367913
0.000367755
0.000367656
0.000367609
0.000367606
0.00036764
0.000367707
0.000367802
0.00036792
0.000368058
0.000368213
0.000368382
0.000368561
0.000368749
0.000368942
0.000369139
0.000369338
0.000369537
0.000369735
0.00036993
0.000370121
0.000370307
0.000370487
0.00037066
0.000370826
0.000370984
0.000371133
0.000371274
0.000371405
0.000371526
0.000371638
0.00037174
0.000371831
0.000371913
0.000371984
0.000372045
0.000372096
0.000372137
0.000372168
0.000372189
0.000372201
0.000372204
0.000372197
0.000372182
0.000372158
0.000372126
0.000372086
0.000372039
0.000371984
0.000371923
0.000371855
0.000371781
0.000371701
0.000371615
0.000371525
0.000371429
0.000371329
0.000371225
0.000371117
0.000371005
0.00037089
0.000370773
0.000370653
0.00037053
0.000370405
0.000370279
0.000370151
0.000370022
0.000369892
0.000369761
0.00036963
0.000369499
0.000369369
0.000369244
0.000369121
0.000368957
0.000368898
0.000368186
0.000367782
0.000367472
0.000367239
0.000367084
0.000366999
0.000366972
0.000366994
0.000367058
0.000367156
0.000367283
0.000367434
0.000367606
0.000367795
0.000367996
0.000368207
0.000368425
0.000368648
0.000368874
0.0003691
0.000369325
0.000369548
0.000369766
0.000369979
0.000370186
0.000370385
0.000370576
0.000370759
0.000370932
0.000371095
0.000371249
0.000371392
0.000371524
0.000371646
0.000371756
0.000371856
0.000371944
0.000372022
0.000372088
0.000372143
0.000372188
0.000372222
0.000372245
0.000372258
0.000372262
0.000372256
0.00037224
0.000372215
0.000372182
0.00037214
0.000372091
0.000372034
0.00037197
0.000371899
0.000371821
0.000371738
0.000371648
0.000371553
0.000371454
0.000371349
0.00037124
0.000371128
0.000371011
0.000370892
0.000370769
0.000370644
0.000370516
0.000370387
0.000370256
0.000370123
0.000369989
0.000369854
0.000369718
0.000369583
0.000369448
0.000369313
0.000369184
0.000369057
0.000368888
0.000368292
0.000367484
0.000367037
0.000366703
0.000366463
0.000366317
0.000366252
0.000366253
0.000366308
0.000366407
0.000366544
0.000366711
0.000366902
0.000367113
0.00036734
0.000367579
0.000367826
0.000368079
0.000368335
0.000368592
0.000368849
0.000369102
0.000369352
0.000369595
0.000369832
0.000370061
0.000370281
0.000370491
0.000370692
0.000370881
0.00037106
0.000371227
0.000371382
0.000371526
0.000371658
0.000371778
0.000371885
0.000371981
0.000372064
0.000372135
0.000372195
0.000372243
0.00037228
0.000372306
0.00037232
0.000372324
0.000372318
0.000372302
0.000372277
0.000372242
0.000372198
0.000372147
0.000372087
0.00037202
0.000371945
0.000371864
0.000371776
0.000371683
0.000371583
0.000371479
0.00037137
0.000371256
0.000371138
0.000371017
0.000370892
0.000370764
0.000370634
0.000370501
0.000370367
0.00037023
0.000370092
0.000369953
0.000369813
0.000369673
0.000369533
0.000369393
0.000369254
0.000369121
0.00036899
0.000368817
0.000367595
0.000366669
0.000366168
0.000365809
0.000365565
0.000365435
0.000365399
0.000365437
0.000365536
0.000365682
0.000365866
0.000366081
0.000366319
0.000366576
0.000366847
0.000367129
0.000367417
0.000367709
0.000368002
0.000368295
0.000368584
0.000368869
0.000369147
0.000369418
0.00036968
0.000369933
0.000370175
0.000370406
0.000370625
0.000370832
0.000371026
0.000371208
0.000371377
0.000371532
0.000371674
0.000371803
0.000371919
0.000372022
0.000372112
0.000372189
0.000372253
0.000372304
0.000372344
0.000372371
0.000372387
0.000372392
0.000372386
0.000372369
0.000372342
0.000372306
0.00037226
0.000372206
0.000372143
0.000372072
0.000371994
0.000371909
0.000371817
0.000371719
0.000371615
0.000371505
0.000371391
0.000371272
0.000371149
0.000371022
0.000370892
0.000370758
0.000370623
0.000370484
0.000370344
0.000370202
0.000370059
0.000369915
0.00036977
0.000369624
0.000369479
0.000369335
0.000369192
0.000369054
0.000368919
0.000368741
0.000366792
0.000365712
0.000365147
0.000364761
0.000364521
0.000364417
0.000364423
0.000364514
0.000364668
0.000364873
0.000365116
0.000365388
0.000365682
0.000365993
0.000366316
0.000366646
0.00036698
0.000367316
0.00036765
0.000367981
0.000368307
0.000368625
0.000368935
0.000369235
0.000369525
0.000369803
0.000370068
0.000370321
0.00037056
0.000370785
0.000370996
0.000371193
0.000371375
0.000371543
0.000371696
0.000371835
0.000371959
0.000372069
0.000372165
0.000372248
0.000372316
0.000372371
0.000372413
0.000372443
0.00037246
0.000372465
0.000372458
0.000372441
0.000372413
0.000372374
0.000372326
0.000372268
0.000372202
0.000372128
0.000372045
0.000371956
0.000371859
0.000371756
0.000371647
0.000371532
0.000371412
0.000371287
0.000371159
0.000371026
0.00037089
0.000370751
0.00037061
0.000370466
0.00037032
0.000370172
0.000370023
0.000369873
0.000369723
0.000369572
0.000369422
0.000369273
0.000369125
0.000368983
0.000368845
0.000368662
0.000365867
0.000364579
0.000363935
0.000363523
0.000363296
0.000363237
0.000363305
0.000363465
0.000363694
0.000363972
0.000364287
0.000364629
0.000364989
0.000365362
0.000365744
0.00036613
0.000366516
0.0003669
0.000367279
0.000367652
0.000368017
0.000368372
0.000368716
0.000369048
0.000369367
0.000369672
0.000369962
0.000370237
0.000370497
0.000370741
0.00037097
0.000371183
0.000371379
0.00037156
0.000371724
0.000371873
0.000372006
0.000372123
0.000372226
0.000372313
0.000372386
0.000372445
0.000372489
0.00037252
0.000372538
0.000372544
0.000372537
0.000372518
0.000372488
0.000372447
0.000372396
0.000372335
0.000372265
0.000372186
0.000372099
0.000372005
0.000371903
0.000371794
0.000371679
0.000371559
0.000371433
0.000371303
0.000371168
0.00037103
0.000370888
0.000370743
0.000370595
0.000370445
0.000370293
0.000370139
0.000369984
0.000369829
0.000369673
0.000369517
0.000369361
0.000369207
0.000369055
0.000368908
0.000368766
0.000368577
0.0003648
0.000363217
0.000362475
0.000362043
0.000361851
0.000361862
0.000362019
0.000362275
0.0003626
0.000362971
0.000363375
0.000363799
0.000364237
0.000364683
0.000365132
0.00036558
0.000366024
0.000366462
0.000366891
0.00036731
0.000367717
0.000368112
0.000368492
0.000368858
0.000369207
0.00036954
0.000369857
0.000370156
0.000370438
0.000370702
0.000370949
0.000371178
0.000371389
0.000371583
0.000371759
0.000371918
0.00037206
0.000372185
0.000372294
0.000372386
0.000372463
0.000372525
0.000372572
0.000372605
0.000372623
0.000372628
0.00037262
0.0003726
0.000372568
0.000372524
0.00037247
0.000372405
0.000372331
0.000372247
0.000372155
0.000372056
0.000371948
0.000371834
0.000371713
0.000371587
0.000371455
0.000371318
0.000371177
0.000371032
0.000370884
0.000370732
0.000370578
0.000370421
0.000370263
0.000370103
0.000369942
0.00036978
0.000369618
0.000369457
0.000369296
0.000369137
0.000368979
0.000368828
0.000368681
0.000368488
0.00036357
0.000361545
0.000360685
0.000360253
0.000360133
0.000360256
0.000360541
0.000360927
0.000361376
0.000361863
0.000362374
0.000362898
0.000363426
0.000363955
0.00036448
0.000364998
0.000365507
0.000366003
0.000366487
0.000366956
0.000367409
0.000367845
0.000368264
0.000368665
0.000369047
0.000369411
0.000369754
0.000370079
0.000370384
0.000370669
0.000370934
0.00037118
0.000371406
0.000371613
0.000371801
0.00037197
0.000372121
0.000372254
0.000372369
0.000372467
0.000372548
0.000372613
0.000372662
0.000372696
0.000372715
0.000372719
0.00037271
0.000372688
0.000372653
0.000372606
0.000372548
0.000372479
0.0003724
0.000372312
0.000372214
0.000372109
0.000371995
0.000371875
0.000371748
0.000371615
0.000371476
0.000371333
0.000371185
0.000371033
0.000370878
0.000370719
0.000370558
0.000370394
0.000370229
0.000370063
0.000369896
0.000369728
0.00036956
0.000369393
0.000369226
0.000369061
0.000368899
0.000368743
0.000368592
0.000368394
0.000362152
0.00035943
0.00035844
0.000358057
0.000358074
0.000358375
0.000358844
0.000359404
0.000360012
0.000360644
0.000361285
0.000361924
0.000362558
0.000363181
0.000363792
0.000364387
0.000364966
0.000365527
0.000366069
0.000366591
0.000367093
0.000367575
0.000368035
0.000368473
0.00036889
0.000369284
0.000369657
0.000370007
0.000370335
0.000370642
0.000370926
0.000371189
0.000371431
0.000371652
0.000371852
0.000372032
0.000372192
0.000372332
0.000372453
0.000372556
0.000372642
0.000372709
0.00037276
0.000372795
0.000372813
0.000372817
0.000372806
0.000372781
0.000372743
0.000372693
0.000372631
0.000372557
0.000372473
0.000372379
0.000372276
0.000372164
0.000372044
0.000371917
0.000371783
0.000371643
0.000371497
0.000371347
0.000371192
0.000371032
0.000370869
0.000370704
0.000370535
0.000370365
0.000370193
0.000370019
0.000369845
0.000369671
0.000369497
0.000369323
0.000369151
0.00036898
0.000368813
0.000368652
0.000368497
0.000368294
0.000360471
0.000356629
0.000355543
0.000355324
0.000355596
0.000356173
0.000356903
0.000357695
0.000358506
0.000359314
0.000360108
0.000360883
0.000361635
0.000362365
0.00036307
0.00036375
0.000364405
0.000365035
0.00036564
0.00036622
0.000366774
0.000367303
0.000367806
0.000368284
0.000368736
0.000369163
0.000369565
0.000369942
0.000370295
0.000370623
0.000370928
0.000371208
0.000371466
0.000371701
0.000371913
0.000372103
0.000372272
0.00037242
0.000372547
0.000372655
0.000372744
0.000372814
0.000372866
0.000372901
0.000372919
0.000372921
0.000372908
0.000372881
0.00037284
0.000372785
0.000372718
0.000372639
0.00037255
0.00037245
0.00037234
0.000372221
0.000372094
0.00037196
0.000371819
0.000371671
0.000371518
0.000371359
0.000371196
0.000371029
0.000370859
0.000370685
0.000370509
0.000370331
0.000370152
0.000369971
0.00036979
0.000369609
0.000369428
0.000369249
0.00036907
0.000368894
0.000368721
0.000368556
0.000368396
0.000368188
0.000358334
0.000352733
0.000351706
0.000351895
0.000352618
0.000353615
0.000354705
0.000355798
0.00035686
0.000357879
0.000358852
0.00035978
0.000360666
0.000361512
0.00036232
0.000363092
0.000363829
0.000364533
0.000365205
0.000365845
0.000366454
0.000367032
0.00036758
0.000368099
0.000368588
0.000369049
0.000369482
0.000369887
0.000370264
0.000370615
0.000370939
0.000371238
0.000371511
0.00037176
0.000371984
0.000372185
0.000372362
0.000372518
0.000372651
0.000372763
0.000372855
0.000372928
0.000372981
0.000373016
0.000373033
0.000373033
0.000373018
0.000372987
0.000372942
0.000372883
0.00037281
0.000372726
0.00037263
0.000372523
0.000372407
0.000372281
0.000372146
0.000372004
0.000371855
0.000371699
0.000371538
0.000371371
0.000371199
0.000371024
0.000370845
0.000370664
0.00037048
0.000370294
0.000370107
0.000369919
0.00036973
0.000369542
0.000369354
0.000369168
0.000368983
0.000368801
0.000368623
0.000368453
0.000368289
0.000368075
0.00035529
0.000347178
0.000346562
0.000347604
0.000349083
0.00035069
0.000352261
0.000353732
0.000355094
0.000356356
0.000357531
0.000358629
0.00035966
0.000360632
0.00036155
0.00036242
0.000363244
0.000364026
0.000364767
0.00036547
0.000366136
0.000366766
0.000367361
0.000367922
0.000368449
0.000368945
0.000369409
0.000369842
0.000370245
0.000370618
0.000370963
0.00037128
0.000371569
0.000371831
0.000372068
0.000372278
0.000372465
0.000372627
0.000372766
0.000372882
0.000372977
0.000373051
0.000373105
0.000373139
0.000373155
0.000373154
0.000373135
0.0003731
0.00037305
0.000372986
0.000372908
0.000372817
0.000372714
0.0003726
0.000372476
0.000372342
0.0003722
0.000372049
0.000371891
0.000371726
0.000371556
0.00037138
0.0003712
0.000371016
0.000370829
0.000370639
0.000370446
0.000370252
0.000370057
0.000369861
0.000369665
0.000369469
0.000369274
0.000369081
0.00036889
0.000368702
0.000368518
0.000368342
0.000368174
0.000367954
0.000347707
0.000338274
0.000339402
0.000342222
0.000344961
0.000347436
0.000349621
0.000351541
0.000353244
0.000354775
0.000356168
0.000357447
0.000358632
0.000359736
0.00036077
0.000361742
0.000362656
0.000363519
0.000364332
0.0003651
0.000365825
0.000366507
0.00036715
0.000367755
0.000368322
0.000368853
0.000369348
0.00036981
0.000370239
0.000370635
0.000371
0.000371335
0.00037164
0.000371916
0.000372164
0.000372385
0.00037258
0.000372749
0.000372893
0.000373013
0.00037311
0.000373185
0.000373239
0.000373273
0.000373287
0.000373282
0.00037326
0.00037322
0.000373165
0.000373095
0.00037301
0.000372912
0.000372802
0.00037268
0.000372548
0.000372405
0.000372254
0.000372094
0.000371927
0.000371753
0.000371573
0.000371388
0.000371199
0.000371006
0.000370809
0.00037061
0.000370409
0.000370206
0.000370002
0.000369798
0.000369593
0.00036939
0.000369187
0.000368987
0.000368789
0.000368594
0.000368404
0.000368224
0.000368051
0.000367827
)
;
boundaryField
{
movingWall
{
type zeroGradient;
}
fixedWalls
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"tbindas@pop-os.localdomain"
] | tbindas@pop-os.localdomain | |
4896fb8aa85e6372cfcf890d34b3d5985cdf4f43 | 569e079f8cc8bc4a1b6918137c951c0a049ea593 | /src/vid/CVideoModeList.h | 28b5502dc54e2b63decb22128fbdc71da8b64491 | [] | no_license | zdementor/my-base | c741daee7f032408fa47f02f715f9066f1f9871f | 2635462c0a57bd423551251f04da10bada277821 | refs/heads/master | 2021-01-10T01:43:03.318268 | 2020-11-19T18:18:32 | 2020-11-19T18:18:32 | 51,708,595 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,744 | h | //|-------------------------------------------------------------------------
//| File: CVideoModeList.h
//|
//| Descr: This file is a part of the 'MyEngine'
//| Author: Zhuk 'zdementor' Dmitry (aka ZDimitor)
//| Email: zdimitor@pochta.ru, sibergames@nm.ru
//|
//| Copyright (c) 2004-2009 by Zhuk Dmitry, Krasnoyarsk - Moscow
//| All Rights Reserved.
//|-------------------------------------------------------------------------
#ifndef CVideoModeListHPP
#define CVideoModeListHPP
//---------------------------------------------------------------------------
#include <my_inc.h>
#include <vid/IVideoModeList.h>
//---------------------------------------------------------------------------
namespace my {
namespace vid {
//---------------------------------------------------------------------------
class CVideoModeList : public IVideoModeList
{
public:
//! constructor
CVideoModeList();
//! destructor
virtual ~CVideoModeList();
//! Gets amount of video modes in the list.
virtual s32 getVideoModeCount() const;
//! Returns the screen size of a video mode in pixels.
virtual core::dimension2d<s32> getVideoModeResolution(s32 modeNumber) const;
//! Returns the pixel depth of a video mode in bits.
virtual s32 getVideoModeDepth(s32 modeNumber) const;
//! Returns current desktop screen resolution.
virtual core::dimension2d<s32> getDesktopResolution() const;
//! Returns the pixel depth of a video mode in bits.
virtual s32 getDesktopDepth() const;
//! adds a new mode to the list
virtual void addMode(const core::dimension2d<s32>& size, s32 depth);
virtual void setDesktop(s32 desktopDepth, const core::dimension2d<s32>& desktopSize);
private:
struct SVideoMode
{
core::dimension2d<s32> size;
s32 depth;
bool operator==(const SVideoMode& other) const
{
return size == other.size && depth == other.depth;
}
bool operator <(const SVideoMode& other) const
{
return (size.Width < other.size.Width ||
(size.Width == other.size.Width &&
size.Height < other.size.Height) ||
(size.Width == other.size.Width &&
size.Height == other.size.Height &&
depth < other.depth));
}
};
core::array<SVideoMode> VideoModes;
SVideoMode Desktop;
};
//---------------------------------------------------------------------------
} // end namespace vid
} // end namespace my
//---------------------------------------------------------------------------
#endif
| [
"zdimitor@gmail.com"
] | zdimitor@gmail.com |
6fb661984d1b3062ccc468b77ed891300a836ee5 | 5b46738402f4c4f3c46d0e67c0e6fdc08031d9fa | /Contests/GCPC15/Csu.cpp | 2fe5c7d79488af163e69105d3740046ada4a39a6 | [] | no_license | gafeol/competitive-programming | a57dcd6fbcc7eed9e4aa77815e7cb525c9ace30c | 1af50554afe4b869f341b16681618aef0e291534 | refs/heads/master | 2021-07-07T09:23:51.984327 | 2021-04-18T18:20:21 | 2021-04-18T18:20:21 | 67,904,346 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,419 | cpp | #include <bits/stdc++.h>
using namespace std;
#define fst first
#define snd second
typedef unsigned long long ull;
typedef long long ll;
#define double long double
typedef pair <double, double> pii;
#define pb push_back
#define for_tests(t, tt) int t; scanf("%d", &t); for(int tt = 1; tt <= t; tt++)
#ifndef ONLINE_JUDGE
#define debug(args...) fprintf(stderr,args)
#else
#define debug(args...)
#endif //ONLINE_JUDGE
template<typename T> inline T abs(T t) { return t < 0? -t : t; }
const ll modn = 1000000007;
inline ll mod(ll x) { return x % modn; }
const int MAXN = 212345;
const double EPS = 1e-8;
int n, m, k;
pii s[MAXN];
double r;
double d(pii a, pii b){
return sqrt((a.fst - b.fst)*(a.fst - b.fst) + (a.snd - b.snd)*(a.snd - b.snd));
}
double area(double a, double b, double c){
double p = (a+b+c)/2.;
return sqrt(p*(p-a)*(p-b)*(p-c));
}
int main (){
clock_t clk = clock();
scanf("%Lf %d", &r, &n);
double A = 0;
for(int a=0;a<n;a++){
scanf("%Lf %Lf", &s[a].fst, &s[a].snd);
}
for(int a=1;a<n-1;a++){
A += area(d(s[0], s[a]), d(s[0], s[a+1]), d(s[a], s[a+1]));
}
double m = 2;
double ar = A;
for(int a=0;a<n;a++){
pii nxt = pii((s[a].fst + s[(a+1)%n].fst)/m, (s[a].snd + s[(a+1)%n].snd)/m);
pii bef = pii((s[a].fst + s[(a+n-1)%n].fst)/m, (s[a].snd + s[(a+n-1)%n].snd)/m);
ar -= area(d(s[a], nxt), d(s[a], bef), d(nxt, bef));
}
printf("%.10Lf\n", 2.*sqrt((A - ar)/(A*(1-r))));
}
| [
"gabfeol@gmail.com"
] | gabfeol@gmail.com |
4a9ef7d8089acc5b3fce02ff7dcaf89fc145efb1 | 2261394d88f27d76e094ab64453f4756c12cb9ca | /libvpvl2/src/qt/common/Encoding.cc | d94326ac7abb1ca09e14fe807b74cc677b32803c | [
"BSD-3-Clause"
] | permissive | hiphi/MMDAI | 14f258fb2f7e8ff3f970e5a5ec07de808f3899ed | 6d307862eed9c7296bbf404847e06c04db6010e7 | refs/heads/master | 2021-01-18T03:24:56.068659 | 2012-08-30T17:15:10 | 2012-08-30T17:15:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,298 | cc | /* ----------------------------------------------------------------- */
/* */
/* Copyright (c) 2010-2012 hkrn */
/* */
/* All rights reserved. */
/* */
/* Redistribution and use in source and binary forms, with or */
/* without modification, are permitted provided that the following */
/* conditions are met: */
/* */
/* - Redistributions of source code must retain the above copyright */
/* notice, this list of conditions and the following disclaimer. */
/* - Redistributions in binary form must reproduce the above */
/* copyright notice, this list of conditions and the following */
/* disclaimer in the documentation and/or other materials provided */
/* with the distribution. */
/* - Neither the name of the MMDAI project team nor the names of */
/* its contributors may be used to endorse or promote products */
/* derived from this software without specific prior written */
/* permission. */
/* */
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */
/* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */
/* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
/* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
/* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */
/* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */
/* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */
/* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
/* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
/* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */
/* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */
/* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
/* POSSIBILITY OF SUCH DAMAGE. */
/* ----------------------------------------------------------------- */
#include "vpvl2/qt/Encoding.h"
#include "vpvl2/qt/CString.h"
#include <QtCore/QtCore>
namespace vpvl2
{
namespace qt
{
Encoding::Encoding()
: m_sjis(QTextCodec::codecForName("Shift-JIS")),
m_utf8(QTextCodec::codecForName("UTF-8")),
m_utf16(QTextCodec::codecForName("UTF-16"))
{
}
Encoding::~Encoding() {
}
const IString *Encoding::stringConstant(ConstantType value) const
{
switch (value) {
case kLeft: {
static const CString s("左");
return &s;
}
case kRight: {
static const CString s("右");
return &s;
}
case kFinger: {
static const CString s("指");
return &s;
}
case kElbow: {
static const CString s("ひじ");
return &s;
}
case kArm: {
static const CString s("腕");
return &s;
}
case kWrist: {
static const CString s("手首");
return &s;
}
case kCenter: {
static const CString s("センター");
return &s;
}
default: {
static const CString s("");
return &s;
}
}
}
IString *Encoding::toString(const uint8_t *value, size_t size, IString::Codec codec) const
{
IString *s = 0;
const char *str = reinterpret_cast<const char *>(value);
switch (codec) {
case IString::kShiftJIS:
s = new CString(m_sjis->toUnicode(str, size));
break;
case IString::kUTF8:
s = new CString(m_utf8->toUnicode(str, size));
break;
case IString::kUTF16:
s = new CString(m_utf16->toUnicode(str, size));
break;
default:
break;
}
return s;
}
IString *Encoding::toString(const uint8_t *value, IString::Codec codec, size_t maxlen) const
{
size_t size = qstrnlen(reinterpret_cast<const char *>(value), maxlen);
return toString(value, size, codec);
}
uint8_t *Encoding::toByteArray(const IString *value, IString::Codec codec) const
{
if (value) {
const CString *s = static_cast<const CString *>(value);
QByteArray bytes;
switch (codec) {
case IString::kShiftJIS:
bytes = m_sjis->fromUnicode(s->value());
break;
case IString::kUTF8:
bytes = m_utf8->fromUnicode(s->value());
break;
case IString::kUTF16:
bytes = m_utf16->fromUnicode(s->value());
break;
default:
break;
}
size_t size = bytes.length();
uint8_t *data = new uint8_t[size + 1];
memcpy(data, bytes.constData(), size);
data[size] = 0;
return data;
}
else {
uint8_t *s = new uint8_t[1];
s[0] = 0;
return s;
}
}
void Encoding::disposeByteArray(uint8_t *value) const
{
delete[] value;
}
}
}
| [
"hikarin.jp@gmail.com"
] | hikarin.jp@gmail.com |
b7ad1b3ad1a8d51a0de9679123d8deeb530d1d7f | 9bf063f6c46777d15e82a1ab45d5a03449412fe4 | /transactions/test/TransactionsCSVReaderTest.cpp | 91e4f3c33782662d390db1e38e5eb1d68402a411 | [] | no_license | arctgarg/rewards_calculator | 7b68e4a9497ab3e4846f80eb7da64bb1c322cdd8 | ebbb5e3292652f6385a7afacad54c6ca84e175cf | refs/heads/master | 2021-01-07T21:59:48.187876 | 2020-02-24T18:00:29 | 2020-02-24T18:00:29 | 241,831,882 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,322 | cpp | //
// Created by agarg145 on 2/19/20.
//
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <TransactionsCSVReader.h>
using std::string;
using ::testing::Return;
class MockTransactionsCSVReader : public TransactionsCSVReader
{
public:
MockTransactionsCSVReader(std::string filepath) : TransactionsCSVReader(filepath) {
}
MOCK_METHOD(std::vector<std::vector<std::string> > , getNextRecords, (int numberOfRecords));
};
class TransactionsCSVReaderTest : public ::testing::Test
{
protected:
std::vector<string> d_transaction1{"id1","f411d086-85fd-4904-8c33-e32a008abf0a","Jane Doe","Archaic Big Bank","12.2","McDonalds","Fast Food","Germany","CHIP AND PIN"};
std::vector<string> d_transaction2{"id2","a234509b-88a9-4451-9d92-21d8475e8def","John Smith","Shady Bank","2.5","Starbucks","Fast Food","Latvia","CONTACTLESS"};
};
TEST_F(TransactionsCSVReaderTest, testReadCSV)
{
MockTransactionsCSVReader reader("");
vector<vector<string>> transactions{d_transaction1, d_transaction2};
EXPECT_CALL(reader, getNextRecords(1000)).Times(1).WillOnce(Return(transactions));
auto result = reader.getNextTransactions(1000);
ASSERT_EQ(result.size(), 2);
ASSERT_EQ( result[0].getTransactionId(), d_transaction1[0]);
ASSERT_EQ( result[1].getTransactionId(), d_transaction2[0]);
}
| [
"agarg145@bloomberg.net"
] | agarg145@bloomberg.net |
8faaa1718f224cfefeb849a75689717548a40400 | 5fd6c602d57b1714c2f204c8348c6d3cad808f28 | /Rust_and_murderer.cpp | e35ed2520f48c3ef7fb28b48ede807b7f397dd62 | [] | no_license | shubhammatta/hackerrank | bd57c2fb8ab3469b2305998c52cba2f9dd629660 | b17894c468a4e9d8d3a8a51432d39f8484a94538 | refs/heads/master | 2021-01-21T14:24:33.691390 | 2016-08-01T20:02:46 | 2016-08-01T20:02:46 | 58,963,470 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,433 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <queue>
#include <climits>
using namespace std;
void djikstra(int s, vector<string> adjList, int N, int m){
bool visited[N+1];
int dists[N+1],v;
for(int i=1; i<=N; i++){
visited[i] = false;
dists[i] = INT_MAX;
}
dists[s] = 0;
priority_queue<int> Q;
Q.push(s);
visited[s] = false;
while(!Q.empty()){
int ui = Q.top();
Q.pop();
if(visited[ui]) continue;
visited[ui] = true;
for(int i=1; i<=N; i++){
if(adjList[ui][i]=='0' && i!=ui)
{
v = i;
if(!visited[v] && dists[ui] + 1 < dists[v]){
dists[v] = dists[ui] + 1;
Q.push(v);
}
}
}
}
for(int i=1;i<=N;i++){
if(i!=s) cout << dists[i] << " ";
}
cout << endl;
}
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
int t;cin >> t;
while(t--)
{int n,m;cin>>n>>m;
string t(n+1,'0');
//cout << t << endl;
vector<string> adj(n+1,t);
int fr,to;
for(int i=0;i<m;i++){
cin >> fr >> to;
adj[fr][to] = '1';
adj[to][fr] = '1';
}
int s;
cin >> s;
djikstra(s,adj,n,m);}
return 0;
}
| [
"shubhammatta1@gmail.com"
] | shubhammatta1@gmail.com |
ce251f6d8a3af5c37ac2090eccd100adff5e36d7 | 7a979c3f10cc2c565ab5c012e9b91ad8c02fc488 | /Polynomial.cpp | 79794d00625afaa0b100b4871e15ac13227d26f8 | [] | no_license | e-mohammadzadeh/Polynomial-Expression | c43c4b3340939f1f73ba4be85cbc8718a1dd8a6a | a1de7e62a31f950a14aeccdd72c0d6eefb107357 | refs/heads/main | 2023-02-18T10:30:59.892336 | 2021-01-21T09:22:13 | 2021-01-21T09:22:13 | 331,327,755 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,147 | cpp | #include "stdafx.h"
#include "Polynomial.h"
#include "Terms.h"
#include "Components.h"
#include<iostream>
using namespace std;
void Polynomial::setPoly(double coef, int exp)
{
terms.setTerms(coef, exp);
}
int Polynomial::polySize(Polynomial poly)
{
return poly.terms.length;
}
Polynomial Polynomial::polySingleMultiplication(Polynomial poly, double coef, int exp)
{
Polynomial answerPoly;
for (int i = 0; i < polySize(poly); i++)
{
answerPoly.setPoly(poly.terms.getTerms(i).coefficient * coef, poly.terms.getTerms(i).exponent + exp);
}
answerPoly.terms.sameTerms();
answerPoly.terms.sortTerms();
answerPoly.terms.length = answerPoly.terms.setSize();
return answerPoly;
}
Polynomial Polynomial::polyMultiplication(Polynomial firstPoly, Polynomial secondPoly)
{
Polynomial answerPoly;
for (int i = 0; i < polySize(firstPoly); i++)
{
for (int j = 0; j < polySize(secondPoly); j++)
{
answerPoly.setPoly(firstPoly.terms.getTerms(i).coefficient * secondPoly.terms.getTerms(j).coefficient,
firstPoly.terms.getTerms(i).exponent + secondPoly.terms.getTerms(j).exponent);
}
}
answerPoly.terms.sameTerms();
answerPoly.terms.sortTerms();
answerPoly.terms.length = answerPoly.terms.setSize();
return answerPoly;
}
Polynomial Polynomial::polySummation(Polynomial firstPoly, Polynomial secondPoly)
{
Polynomial answerPoly;
double coefficient;
int startA = 0, startB = 0, finishA = firstPoly.terms.length, finishB = secondPoly.terms.length;
while (startA <= finishA && startB <= finishB)
{
switch (compare2Exponent(firstPoly.terms.getTerms(startA).exponent, secondPoly.terms.getTerms(startB).exponent))
{
case -1:
{
answerPoly.terms.setTerms(secondPoly.terms.getTerms(startB).coefficient, secondPoly.terms.getTerms(startB).exponent);
startB++;
break;
}
case 0:
{
coefficient = firstPoly.terms.getTerms(startA).coefficient + secondPoly.terms.getTerms(startB).coefficient;
if (coefficient)
{
answerPoly.terms.setTerms(coefficient, firstPoly.terms.getTerms(startA).exponent);
}
startA++;
startB++;
break;
}
case 1:
{
answerPoly.terms.setTerms(firstPoly.terms.getTerms(startA).coefficient, firstPoly.terms.getTerms(startA).exponent);
startA++;
//break;
}
}
}
for (; startA <= finishA; startA++)
{
answerPoly.terms.setTerms(firstPoly.terms.getTerms(startA).coefficient, firstPoly.terms.getTerms(startA).exponent);
}
for (; startB <= finishB; startB++)
{
answerPoly.terms.setTerms(secondPoly.terms.getTerms(startB).coefficient, secondPoly.terms.getTerms(startB).exponent);
}
answerPoly.terms.sameTerms();
answerPoly.terms.sortTerms();
answerPoly.terms.length = answerPoly.terms.setSize();
return answerPoly;
}
Polynomial Polynomial::polySubtraction(Polynomial firstPoly, Polynomial secondPoly)
{
Polynomial answerPoly, negetivePoly;
for (int i = 0; i < polySize(secondPoly); i++)
{
negetivePoly.setPoly((secondPoly.terms.getTerms(i).coefficient * -1), secondPoly.terms.getTerms(i).exponent);
answerPoly = polySummation(firstPoly, negetivePoly);
}
answerPoly.terms.sameTerms();
answerPoly.terms.sortTerms();
return answerPoly;
}
int Polynomial::compare2Exponent(int firstExp, int secondExp)
{
if (firstExp > secondExp)
{
return 1;
}
if (firstExp == secondExp)
{
return 0;
}
if (firstExp < secondExp)
{
return -1;
}
}
bool Polynomial::isZero(Polynomial poly)
{
if (poly.terms.getTerms(0).coefficient == NULL && poly.terms.getTerms(0).exponent == NULL && poly.terms.length == 0)
{
return true;
}
else
{
return false;
}
}
void Polynomial::polyShow(Polynomial poly)
{
if (isZero(poly))
{
cout << "This Polynomial is Empty\n";
}
else
{
if (poly.terms.length == 1)
{
if (poly.terms.getTerms(0).exponent == 0)
{
cout << poly.terms.getTerms(0).coefficient;
}
else if (poly.terms.getTerms(0).exponent == 1)
{
cout << poly.terms.getTerms(0).coefficient << "x";
}
else
{
cout << poly.terms.getTerms(0).coefficient << "x^" << poly.terms.getTerms(0).exponent;
}
}
else
{
cout << poly.terms.getTerms(0).coefficient << "x ^" << noshowpos << poly.terms.getTerms(0).exponent << " ";
for (int i = 1; i < poly.terms.length; i++)
{
if (poly.terms.getTerms(i).exponent == 0 && poly.terms.getTerms(i).coefficient == 0)
{
poly.terms.deleteTerms(poly.terms.getTerms(i).coefficient, poly.terms.getTerms(i).exponent, i);
}
else if (poly.terms.getTerms(i).exponent == 0 && poly.terms.getTerms(i).coefficient != 0)
{
cout << " " << showpos << poly.terms.getTerms(i).coefficient;
}
else if (poly.terms.getTerms(i).exponent == '1' || poly.terms.getTerms(i).exponent == 1)
{
cout << " " << showpos << poly.terms.getTerms(i).coefficient << "x";
}
else
{
cout << " " << showpos << poly.terms.getTerms(i).coefficient << "x ^" << noshowpos << poly.terms.getTerms(i).exponent;
}
}
}
}
cin.get();
} | [
"noreply@github.com"
] | noreply@github.com |
6e61aa464675eac8153039e243e6402e45d37d9e | 3e0405e67a035d3b9ce31a6e83bd805b6dc94041 | /src/windows/kernel/nt/const/SECURITY_IMPERSONATION_LEVEL.cc | a396cfc02bf61ade093d31c85eee6d499bdb1e27 | [
"Apache-2.0"
] | permissive | IntroVirt/IntroVirt | 33ec7fab4424656717d6ccb9ee87ba77e8f69b1f | e0953d1c9a12b6e501f6a876a07d188b7b80254a | refs/heads/main | 2022-12-22T05:47:27.038862 | 2022-12-15T22:52:21 | 2022-12-16T00:50:10 | 339,445,106 | 46 | 10 | Apache-2.0 | 2022-12-08T17:01:42 | 2021-02-16T15:37:13 | C++ | UTF-8 | C++ | false | false | 1,874 | cc | /*
* Copyright 2021 Assured Information Security, Inc.
*
* 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 <introvirt/windows/kernel/nt/const/SECURITY_IMPERSONATION_LEVEL.hh>
namespace introvirt {
namespace windows {
namespace nt {
const std::string& to_string(SECURITY_IMPERSONATION_LEVEL level) {
static const std::string SecurityAnonymousStr("SecurityAnonymous");
static const std::string SecurityIdentificationStr("SecurityIdentification");
static const std::string SecurityImpersonationStr("SecurityImpersonation");
static const std::string SecurityDelegationStr("SecurityDelegation");
static const std::string SecurityUnknownStr("SecurityUnknown");
switch (level) {
case SECURITY_IMPERSONATION_LEVEL::SecurityAnonymous:
return SecurityAnonymousStr;
case SECURITY_IMPERSONATION_LEVEL::SecurityIdentification:
return SecurityIdentificationStr;
case SECURITY_IMPERSONATION_LEVEL::SecurityImpersonation:
return SecurityImpersonationStr;
case SECURITY_IMPERSONATION_LEVEL::SecurityDelegation:
return SecurityDelegationStr;
default:
return SecurityUnknownStr;
}
}
std::ostream& operator<<(std::ostream& os, SECURITY_IMPERSONATION_LEVEL level) {
os << to_string(level);
return os;
}
} // namespace nt
} // namespace windows
} // namespace introvirt
| [
"srpape@gmail.com"
] | srpape@gmail.com |
e661f7a14a83460f095f980dadc276cab78bb7e7 | 208650de138a6b05b8b8e7e4ca6df9dc72290402 | /Problems/Practice/C/235.cpp | 29849662c9bf4a88521385bdb06037dbb69d9afc | [] | no_license | cs15b047/CF | 9fcf83c5fd09124b6eaebbd4ecd67d19a1302582 | d220d73a2d8739bbb10f4ed71437c06625870490 | refs/heads/master | 2021-08-20T06:21:24.577260 | 2021-06-09T04:56:47 | 2021-06-09T04:57:29 | 177,541,957 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 950 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main(){
ll n, m; scanf("%lld%lld",&n, &m);
vector<ll> arr(n);for(int i = 0;i < n;i++)scanf("%lld",&arr[i]);
map<ll, vector<ll>> element_locns;
for(int i = 0;i < n; i++)element_locns[arr[i]].push_back(i);
vector<ll> to_be_removed;
for(auto it: element_locns){
if(it.first > it.second.size()){
to_be_removed.push_back(it.first);
}
}
for(auto it: to_be_removed){
element_locns.erase(it);
}
map<ll, vector<ll>> locations;
for(auto it: element_locns){
vector<ll> arr(n + 1, 0);
for(auto it2: it.second){
arr[it2 + 1] = 1;
}
for(int i = 1;i <= n;i++)arr[i] += arr[i - 1];
locations[it.first] = arr;
}
for(int i = 0;i < m; i++){
ll left, right; scanf("%lld%lld",&left, &right);
ll ans = 0;
for(auto it: element_locns){
if(locations[it.first][right] - locations[it.first][left - 1] == it.first)ans++;
}
printf("%lld\n",ans);
}
} | [
"cs15b047@smail.iitm.ac.in"
] | cs15b047@smail.iitm.ac.in |
740e7a7f9361d93e990ab97cdfb5b376663c4372 | 5771db7d72f925a5c4ea967ce3bf2fa3bd8788be | /Snake/tail.cpp | 9ed07fc5a62b4132e816d02abcfb60ed8d911cb1 | [] | no_license | adamloch/Snake | c90313b2b3500cd15889f29fc95774d9715115c7 | 190c6553f023ba470a8f3d437bc2ee03f21d6e74 | refs/heads/master | 2020-04-03T02:41:32.851680 | 2018-11-25T16:42:10 | 2018-11-25T16:42:10 | 154,963,637 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19 | cpp | #include "tail.h"
| [
"kacper.luk@o2.pl"
] | kacper.luk@o2.pl |
030d9f467567694a11c6b04e06b2bf43bdfeba7b | f0efa33b2abb26627495f79369b0f9a176a61549 | /CodeChef/main.cpp | 2d5e4bcc90c7711a16e8c2e475365ccc6be80f9e | [] | no_license | jaibeer72/CodeChef | 18a29c8b7502370326b3da8e8cecc3160e19a337 | d2708c5800a7b3865770fb046423ac2f48d514a4 | refs/heads/master | 2021-05-11T23:39:22.172485 | 2018-01-15T08:05:25 | 2018-01-15T08:05:25 | 117,515,739 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,357 | cpp | #include<iostream>
using namespace std;
// so here is the thing we can use binarry search but it needs to be an ordered list
// so first sorting and then solving is a good idea
int main() {
// input setup
// variables
int T;
//input
//cout << "\n enter the number of rects to check ";
cin >> T;
auto rect = new int[T][4];
for (int i = 0; i < T; i++)
{
for (int j = 0; j < 4; j++)
{
cin >> rect[i][j];
}
}
cout << "\n";
//Bubble sort
for (int no = 0; no < T; no++)
{
//it actually starts here making the time taken increased bt n^3 but... well
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 4 - i - 1; j++)
{
if (rect[no][j] > rect[no][j + 1]) {
//the swapping
int temp = rect[no][j];
rect[no][j] = rect[no][j + 1];
rect[no][j + 1] = temp;
}
}
}
}
//now for debugging lets print it
/*for (int no = 0; no < T; no++)
{
for (int i = 0; i < 4; i++)
{
cout << " " << rect[no][i];
}
cout << "\n ";
}*/
//Now binarry search wait no ...
//wait its sorted from low to high if 1 =2 and 3=4 its a rectangle
for (int no = 0; no < T; no++)
{
if ((rect[no][0] == rect[no][1]) && (rect[no][2] == rect[no][3])&&(rect[no][1]!= rect[no][2])) {
cout << "\n Yes";
}
else {
cout << "\n No";
}
}
cout << "\n";
system("pause");
return 0;
}
| [
"jaibeer72@gmail.com"
] | jaibeer72@gmail.com |
515555243141bdaea5330abd27a0f91f428b999c | c27b10a7d33e5cde8ff69a2e4c3fe75401328257 | /uiDraw.cpp | 5a5a682c9ca5b571bed045012b679cd29ab2efd5 | [] | no_license | TheCoderHero/cpp-asteroids | b3c3f1bb6e9754ec4ae8816955629d8142c37675 | f42d06f756ecaaf89f53c041b6d7ad2e8b381a5e | refs/heads/master | 2022-11-16T10:52:42.960263 | 2020-07-17T06:39:29 | 2020-07-17T06:39:29 | 280,346,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,731 | cpp | /***********************************************************************
* Source File:
* User Interface Draw : put pixels on the screen
*
* Summary:
* This is the code necessary to draw on the screen. We have a collection
* of procedural functions here because each draw function does not
* retain state. In other words, they are verbs (functions), not nouns
* (variables) or a mixture (objects)
************************************************************************/
#include <string> // need you ask?
#include <sstream> // convert an integer into text
#include <cassert> // I feel the need... the need for asserts
#include <time.h> // for clock
#ifdef __APPLE__
#include <openGL/gl.h> // Main OpenGL library
#include <GLUT/glut.h> // Second OpenGL library
#endif // __APPLE__
#ifdef __linux__
#include <GL/gl.h> // Main OpenGL library
#include <GL/glut.h> // Second OpenGL library
#endif // __linux__
#ifdef _WIN32
#include <stdio.h>
#include <stdlib.h>
#include <GL/glut.h> // OpenGL library we copied
#define _USE_MATH_DEFINES
#include <math.h>
#endif // _WIN32
#include "point.h"
#include "uiDraw.h"
using namespace std;
#define deg2rad(value) ((M_PI / 180) * (value))
/*********************************************
* NUMBER OUTLINES
* We are drawing the text for score and things
* like that by hand to make it look "old school."
* These are how we render each individual charactger.
* Note how -1 indicates "done". These are paired
* coordinates where the even are the x and the odd
* are the y and every 2 pairs represents a point
********************************************/
const char NUMBER_OUTLINES[10][20] =
{
{0, 0, 7, 0, 7, 0, 7,10, 7,10, 0,10, 0,10, 0, 0, -1,-1, -1,-1},//0
{7, 0, 7,10, -1,-1, -1,-1, -1,-1, -1,-1, -1,-1, -1,-1, -1,-1, -1,-1},//1
{0, 0, 7, 0, 7, 0, 7, 5, 7, 5, 0, 5, 0, 5, 0,10, 0,10, 7,10},//2
{0, 0, 7, 0, 7, 0, 7,10, 7,10, 0,10, 4, 5, 7, 5, -1,-1, -1,-1},//3
{0, 0, 0, 5, 0, 5, 7, 5, 7, 0, 7,10, -1,-1, -1,-1, -1,-1, -1,-1},//4
{7, 0, 0, 0, 0, 0, 0, 5, 0, 5, 7, 5, 7, 5, 7,10, 7,10, 0,10},//5
{7, 0, 0, 0, 0, 0, 0,10, 0,10, 7,10, 7,10, 7, 5, 7, 5, 0, 5},//6
{0, 0, 7, 0, 7, 0, 7,10, -1,-1, -1,-1, -1,-1, -1,-1, -1,-1, -1,-1},//7
{0, 0, 7, 0, 0, 5, 7, 5, 0,10, 7,10, 0, 0, 0,10, 7, 0, 7,10},//8
{0, 0, 7, 0, 7, 0, 7,10, 0, 0, 0, 5, 0, 5, 7, 5, -1,-1, -1,-1} //9
};
/************************************************************************
* DRAW DIGIT
* Draw a single digit in the old school line drawing style. The
* size of the glyph is 8x11 or x+(0..7), y+(0..10)
* INPUT topLeft The top left corner of the character
* digit The digit we are rendering: '0' .. '9'
*************************************************************************/
void drawDigit(const Point & topLeft, char digit)
{
// we better be only drawing digits
assert(isdigit(digit));
if (!isdigit(digit))
return;
// compute the row as specified by the digit
int r = digit - '0';
assert(r >= 0 && r <= 9);
// go through each segment.
for (int c = 0; c < 20 && NUMBER_OUTLINES[r][c] != -1; c += 4)
{
assert(NUMBER_OUTLINES[r][c ] != -1 &&
NUMBER_OUTLINES[r][c + 1] != -1 &&
NUMBER_OUTLINES[r][c + 2] != -1 &&
NUMBER_OUTLINES[r][c + 3] != -1);
//Draw a line based off of the num structure for each number
Point start;
start.setX(topLeft.getX() + NUMBER_OUTLINES[r][c]);
start.setY(topLeft.getY() - NUMBER_OUTLINES[r][c + 1]);
Point end;
end.setX(topLeft.getX() + NUMBER_OUTLINES[r][c + 2]);
end.setY(topLeft.getY() - NUMBER_OUTLINES[r][c + 3]);
drawLine(start, end);
}
}
/*************************************************************************
* DRAW NUMBER
* Display an integer on the screen using the 7-segment method
* INPUT topLeft The top left corner of the character
* digit The digit we are rendering: '0' .. '9'
*************************************************************************/
void drawNumber(const Point & topLeft, int number)
{
// our cursor, if you will. It will advance as we output digits
Point point = topLeft;
// is this negative
bool isNegative = (number < 0);
number *= (isNegative ? -1 : 1);
// render the number as text
ostringstream sout;
sout << number;
string text = sout.str();
// handle the negative
if (isNegative)
{
glBegin(GL_LINES);
glVertex2f(point.getX() + 1, point.getY() - 5);
glVertex2f(point.getX() + 5, point.getY() - 5);
glEnd();
point.addX(11);
}
// walk through the text one digit at a time
for (const char *p = text.c_str(); *p; p++)
{
assert(isdigit(*p));
drawDigit(point, *p);
point.addX(11);
}
}
/*************************************************************************
* DRAW TEXT
* Draw text using a simple bitmap font
* INPUT topLeft The top left corner of the text
* text The text to be displayed
************************************************************************/
void drawText(const Point & topLeft, const char * text)
{
void *pFont = GLUT_BITMAP_HELVETICA_12; // also try _18
// prepare to draw the text from the top-left corner
glRasterPos2f(topLeft.getX(), topLeft.getY());
// loop through the text
for (const char *p = text; *p; p++)
glutBitmapCharacter(pFont, *p);
}
/************************************************************************
* DRAW POLYGON
* Draw a POLYGON from a given location (center) of a given size (radius).
* INPUT center Center of the polygon
* radius Size of the polygon
* points How many points will we draw it. Larger the number,
* the more line segments we will use
* rotation True circles are rotation independent. However, if you
* are drawing a 3-sided polygon (triangle), this matters!
*************************************************************************/
void drawPolygon(const Point & center, int radius, int points, int rotation)
{
// begin drawing
glBegin(GL_LINE_LOOP);
//loop around a circle the given number of times drawing a line from
//one point to the next
for (double i = 0; i < 2 * M_PI; i += (2 * M_PI) / points)
{
Point temp(false /*check*/);
temp.setX(center.getX() + (radius * (float)cos(i)));
temp.setY(center.getY() + (radius * (float)sin(i)));
rotate(temp, center, rotation);
glVertex2f(temp.getX(), temp.getY());
}
// complete drawing
glEnd();
}
/************************************************************************
* ROTATE
* Rotate a given point (point) around a given origin (center) by a given
* number of degrees (angle).
* INPUT point The point to be moved
* center The center point we will rotate around
* rotation Rotation in degrees
* OUTPUT point The new position
*************************************************************************/
void rotate(Point & point, const Point & origin, int rotation)
{
// because sine and cosine are expensive, we want to call them only once
double cosA = cos(deg2rad(rotation));
double sinA = sin(deg2rad(rotation));
// remember our original point
Point tmp(false /*check*/);
tmp.setX(point.getX() - origin.getX());
tmp.setY(point.getY() - origin.getY());
// find the new values
point.setX(static_cast<int> (tmp.getX() * cosA -
tmp.getY() * sinA) +
origin.getX());
point.setY(static_cast<int> (tmp.getX() * sinA +
tmp.getY() * cosA) +
origin.getY());
}
/************************************************************************
* DRAW LINE
* Draw a line on the screen from the beginning to the end.
* INPUT begin The position of the beginning of the line
* end The position of the end of the line
*************************************************************************/
void drawLine(const Point & begin, const Point & end,
float red, float green, float blue)
{
// Get ready...
glBegin(GL_LINES);
glColor3f(red, green, blue);
// Draw the actual line
glVertex2f(begin.getX(), begin.getY());
glVertex2f( end.getX(), end.getY());
// Complete drawing
glColor3f(1.0 /* red % */, 1.0 /* green % */, 1.0 /* blue % */);
glEnd();
}
/******************************************************************
* RANDOM
* This function generates a random number.
*
* INPUT: min, max : The number of values (min <= num <= max)
* OUTPUT <return> : Return the integer
****************************************************************/
int random(int min, int max)
{
assert(min < max);
int num = (rand() % (max - min)) + min;
assert(min <= num && num <= max);
return num;
}
/******************************************************************
* RANDOM
* This function generates a random number.
*
* INPUT: min, max : The number of values (min <= num <= max)
* OUTPUT <return> : Return the double
****************************************************************/
double random(double min, double max)
{
assert(min <= max);
double num = min + ((double)rand() / (double)RAND_MAX * (max - min));
assert(min <= num && num <= max);
return num;
}
/************************************************************************
* DRAW RECTANGLE
* Draw a rectangle on the screen centered on a given point (center) of
* a given size (width, height), and at a given orientation (rotation)
* INPUT center Center of the rectangle
* width Horizontal size
* height Vertical size
* rotation Orientation
*************************************************************************/
void drawRect(const Point & center, int width, int height, int rotation)
{
Point tl(false /*check*/); // top left
Point tr(false /*check*/); // top right
Point bl(false /*check*/); // bottom left
Point br(false /*check*/); // bottom right
//Top Left point
tl.setX(center.getX() - (width / 2));
tl.setY(center.getY() + (height / 2));
//Top right point
tr.setX(center.getX() + (width / 2));
tr.setY(center.getY() + (height / 2));
//Bottom left point
bl.setX(center.getX() - (width / 2));
bl.setY(center.getY() - (height / 2));
//Bottom right point
br.setX(center.getX() + (width / 2));
br.setY(center.getY() - (height / 2));
//Rotate all points the given degrees
rotate(tl, center, rotation);
rotate(tr, center, rotation);
rotate(bl, center, rotation);
rotate(br, center, rotation);
//Finally draw the rectangle
glBegin(GL_LINE_STRIP);
glVertex2f(tl.getX(), tl.getY());
glVertex2f(tr.getX(), tr.getY());
glVertex2f(br.getX(), br.getY());
glVertex2f(bl.getX(), bl.getY());
glVertex2f(tl.getX(), tl.getY());
glEnd();
}
/************************************************************************
* DRAW CIRCLE
* Draw a circle from a given location (center) of a given size (radius).
* INPUT center Center of the circle
* radius Size of the circle
*************************************************************************/
void drawCircle(const Point & center, int radius)
{
assert(radius > 1.0);
const double increment = 1.0 / (double)radius;
// begin drawing
glBegin(GL_LINE_LOOP);
// go around the circle
for (double radians = 0; radians < M_PI * 2.0; radians += increment)
glVertex2f(center.getX() + (radius * (float)cos(radians)),
center.getY() + (radius * (float)sin(radians)));
// complete drawing
glEnd();
}
/************************************************************************
* DRAW DOT
* Draw a single point on the screen, 2 pixels by 2 pixels
* INPUT point The position of the dow
*************************************************************************/
void drawDot(const Point & point)
{
// Get ready, get set...
glBegin(GL_POINTS);
// Go...
glVertex2f(point.getX(), point.getY() );
glVertex2f(point.getX() + 1, point.getY() );
glVertex2f(point.getX() + 1, point.getY() + 1);
glVertex2f(point.getX(), point.getY() + 1);
// Done! OK, that was a bit too dramatic
glEnd();
}
/**********************************************************************
* DRAW SMALL ASTEROID
**********************************************************************/
void drawSmallAsteroid( const Point & center, int rotation)
{
// ultra simple point
struct PT
{
int x;
int y;
} points[] =
{
{-5, 9}, {4, 8}, {8, 4},
{8, -5}, {-2, -8}, {-2, -3},
{-8, -4}, {-8, 4}, {-5, 10}
};
glBegin(GL_LINE_STRIP);
for (int i = 0; i < sizeof(points)/sizeof(PT); i++)
{
Point pt(center.getX() + points[i].x,
center.getY() + points[i].y);
rotate(pt, center, rotation);
glVertex2f(pt.getX(), pt.getY());
}
glEnd();
}
/**********************************************************************
* DRAW MEDIUM ASTEROID
**********************************************************************/
void drawMediumAsteroid( const Point & center, int rotation)
{
// ultra simple point
struct PT
{
int x;
int y;
} points[] =
{
{2, 8}, {8, 15}, {12, 8},
{6, 2}, {12, -6}, {2, -15},
{-6, -15}, {-14, -10}, {-15, 0},
{-4, 15}, {2, 8}
};
glBegin(GL_LINE_STRIP);
for (int i = 0; i < sizeof(points)/sizeof(PT); i++)
{
Point pt(center.getX() + points[i].x,
center.getY() + points[i].y);
rotate(pt, center, rotation);
glVertex2f(pt.getX(), pt.getY());
}
glEnd();
}
/**********************************************************************
* DRAW LARGE ASTEROID
**********************************************************************/
void drawLargeAsteroid( const Point & center, int rotation)
{
// ultra simple point
struct PT
{
int x;
int y;
} points[] =
{
{0, 12}, {8, 20}, {16, 14},
{10, 12}, {20, 0}, {0, -20},
{-18, -10}, {-20, -2}, {-20, 14},
{-10, 20}, {0, 12}
};
glBegin(GL_LINE_STRIP);
for (int i = 0; i < sizeof(points)/sizeof(PT); i++)
{
Point pt(center.getX() + points[i].x,
center.getY() + points[i].y);
rotate(pt, center, rotation);
glVertex2f(pt.getX(), pt.getY());
}
glEnd();
}
/************************************************************************
* DRAW Ship
* Draw a spaceship on the screen
* INPUT point The position of the ship
* angle Which direction it is ponted
*************************************************************************/
void drawShip(const Point & center, int rotation, bool thrust)
{
// ultra simple point
struct PT
{
int x;
int y;
};
// draw the ship
const PT pointsShip[] =
{ // top r.wing r.engine l.engine l.wing top
{0, 6}, {6, -6}, {2, -3}, {-2, -3}, {-6, -6}, {0, 6}
};
glBegin(GL_LINE_STRIP);
for (int i = 0; i < sizeof(pointsShip)/sizeof(PT); i++)
{
Point pt(center.getX() + pointsShip[i].x,
center.getY() + pointsShip[i].y);
rotate(pt, center, rotation);
glVertex2f(pt.getX(), pt.getY());
}
glEnd();
// draw the flame if necessary
if (thrust)
{
const PT pointsFlame[3][5] =
{
{ {-2, -3}, {-2, -13}, { 0, -6}, { 2, -13}, {2, -3} },
{ {-2, -3}, {-4, -9}, {-1, -7}, { 1, -14}, {2, -3} },
{ {-2, -3}, {-1, -14}, { 1, -7}, { 4, -9}, {2, -3} }
};
glBegin(GL_LINE_STRIP);
glColor3f(1.0 /* red % */, 0.0 /* green % */, 0.0 /* blue % */);
int iFlame = random(0, 3);
for (int i = 0; i < 5; i++)
{
Point pt(center.getX() + pointsFlame[iFlame][i].x,
center.getY() + pointsFlame[iFlame][i].y);
rotate(pt, center, rotation);
glVertex2f(pt.getX(), pt.getY());
}
glColor3f(1.0, 1.0, 1.0); // reset to white
glEnd();
}
} | [
"thecoderhero@gmail.com"
] | thecoderhero@gmail.com |
5fd49fef86df9ed53495c4c6e9538728881da846 | 9a8da795babf21d3109d311984b09f647e4bebc2 | /Practicas/11/solucion/ballhausen.cc | 4e64c49851434bf14adb9c160bcc6671b1141914 | [
"MIT"
] | permissive | josepadial/AS | 83938a29187d339e66c6a6e93ad33f1ac42fa482 | 772861175888b94d11f5cc12ab89432d659a4df1 | refs/heads/master | 2021-05-23T14:03:27.669290 | 2020-04-05T23:10:07 | 2020-04-05T23:10:07 | 253,326,150 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,735 | cc | //---------------------------------------------------------
// ballhausen.cc
//---------------------------------------------------------
#include <semaphore.h>
#include <atomic>
#include <chrono>
#include <iostream>
#include <mutex>
#include <random>
#include <thread>
//---------------------------------------------------------
using namespace std;
//---------------------------------------------------------
const unsigned N = 8;
atomic<bool> run(true);
mutex em; // exclusión mutua
sem_t justicia;
//---------------------------------------------------------
void seccion_critica(char c)
{
for (char i = 0; i < 10; ++i)
cout << c++;
cout << endl;
}
//---------------------------------------------------------
void lector()
{
while (run)
{
sem_wait(&justicia);
seccion_critica('0');
sem_post(&justicia);
}
}
//---------------------------------------------------------
void escritor()
{
while (run)
{
em.lock();
for (unsigned i = 0; i < N; ++i)
sem_wait(&justicia);
em.unlock();
seccion_critica('a');
for (unsigned i = 0; i < N; ++i)
sem_post(&justicia);
}
}
//---------------------------------------------------------
int main()
{
thread lectores[N], escritores[N];
std::default_random_engine engine;
sem_init(&justicia, 0, N); // N = número de lectores
for (unsigned i = 0; i < N; ++i)
if (engine() & 1)
{
lectores[i] = thread( lector);
escritores[i] = thread(escritor);
}
else
{
escritores[i] = thread(escritor);
lectores[i] = thread( lector);
}
this_thread::sleep_for(1s);
run = false;
for(thread& i: lectores) i.join();
for(thread& i: escritores) i.join();
}
//---------------------------------------------------------
| [
"joseismael511@gmail.com"
] | joseismael511@gmail.com |
2100b95e7777ea22afdc38985ede03954475c839 | 3bcbbcb988c0d6a9ed06cb865f7fbb6876e0fb9f | /vislib/tests/clusterTest/PlainServer.h | 8af60810b3bfa50982a4cbab1fcfe720c2c8cea3 | [] | permissive | voei/megamol | 7afd26ff7bd106ecf99e56393593a8b92f978207 | 569b7b58c1f9bc5405b79549b86f84009329f668 | refs/heads/master | 2022-12-26T08:18:13.553724 | 2020-10-03T13:26:49 | 2020-10-03T13:26:49 | 263,350,326 | 0 | 0 | BSD-3-Clause | 2020-05-12T13:49:50 | 2020-05-12T13:49:50 | null | UTF-8 | C++ | false | false | 1,000 | h | /*
* PlainServer.h
*
* Copyright (C) 2008 by Universitaet Stuttgart (VIS). Alle Rechte vorbehalten.
*/
#ifndef VISLIBTEST_PLAINSERVER_H_INCLUDED
#define VISLIBTEST_PLAINSERVER_H_INCLUDED
#if (defined(_MSC_VER) && (_MSC_VER > 1000))
#pragma once
#endif /* (defined(_MSC_VER) && (_MSC_VER > 1000)) */
#include "vislib/net/cluster/AbstractServerNode.h"
/**
* This is an empty server node that just reports messages to the console.
*/
class PlainServer : public vislib::net::cluster::AbstractServerNode {
public:
static PlainServer& GetInstance(void);
virtual ~PlainServer(void);
virtual void Initialise(vislib::sys::CmdLineProviderA& inOutCmdLine);
virtual void Initialise(vislib::sys::CmdLineProviderW& inOutCmdLine);
virtual DWORD Run(void);
protected:
PlainServer(void);
virtual bool onMessageReceived(const vislib::net::Socket& src,
const UINT msgId, const BYTE *body, const SIZE_T cntBody);
};
#endif /* VISLIBTEST_PLAINSERVER_H_INCLUDED */
| [
"guido.reina@informatik.uni-stuttgart.de"
] | guido.reina@informatik.uni-stuttgart.de |
96b3635225000befa114d53eb468d1704fba7cfc | 0a6ce712507faa2150733dc8b93ab16d02085ded | /src/Core.cpp | ea2371a574752119655122a02a76515b6923fa73 | [] | no_license | pierre-rebut/Arcade | 2464c303d02a70ba2f2da4ccb22f82915d9216a4 | 87c521f7522567318c8b9968d094f47b9aa886e1 | refs/heads/master | 2021-01-21T10:00:22.635175 | 2017-02-27T22:05:36 | 2017-02-27T22:05:36 | 83,355,974 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,716 | cpp | //
// Core.cpp for core in /home/rebut_p/Programmation/CPP/cpp_arcade/src
//
// Made by Pierre Rebut
// Login <rebut_p@epitech.net>
//
// Started on Tue Mar 15 17:40:11 2016 Pierre Rebut
// Last update Mon Apr 4 01:05:30 2016 Pierre Rebut
//
#include <dlfcn.h>
#include <iostream>
#include <iterator>
#include "Core.hpp"
#include "Map.hpp"
#include "utils.hpp"
arcade::Core::Core()
{
_player = "Pierre";
_menu._player = _player;
_lstGame = open_dir("./games/");
_lstDisplay = open_dir("./lib/");
if (_lstGame.size() == 0 || _lstDisplay.size() == 0)
throw std::runtime_error("List game or display empty !");
_currentDisplay = -1;
_currentGame = -1;
_game = NULL;
_display = NULL;
_displayLD = NULL;
_gameLD = NULL;
}
arcade::Core::~Core()
{
if (_game != NULL)
delete _game;
if (_display != NULL)
delete _display;
if (_displayLD != NULL)
dlclose(_displayLD);
if (_gameLD != NULL)
dlclose(_gameLD);
}
template<typename T>
T loadLibrary(const std::string &file, void **lib, const std::string &cmd)
{
T ptr;
if (file == "")
{
std::cerr << "ERROR: file not set or is not in list" << std::endl;
return (NULL);
}
if (*lib != NULL)
dlclose(*lib);
ptr = open_lib<T>(file, cmd, lib);
if (ptr == NULL)
{
if (*lib != NULL)
dlclose(*lib);
throw std::runtime_error(" Core: file is not arcade library > exit");
}
return (ptr);
}
bool arcade::Core::changeDisplay(const std::string &file)
{
IDisplay *(*ptr)(const size_t, const size_t);
if (_display != NULL)
_display->destroyWin();
delete _display;
ptr = loadLibrary<IDisplay *(*)(const size_t,
const size_t)>(file, &_displayLD, "init_screen");
if (ptr == NULL)
return (false);
_display = ptr(800, 600);
if (_display == NULL)
throw std::runtime_error(" Core: init error");
_display->newWin();
return (true);
}
bool arcade::Core::changeGame(const std::string &file)
{
IGame *(*ptr)(const size_t, const size_t);
delete _game;
ptr = loadLibrary<IGame *(*)(const size_t,
const size_t)>(file, &_gameLD, "init_game");
if (ptr == NULL)
return (false);
_game = ptr(40, 30);
if (_game == NULL)
throw std::runtime_error(" Core: init error");
_display->setSpriteSheet(_game->getSpriteSheet());
_pause = true;
_gameName = _lstGame.at(_currentGame).first;
initScore();
return (true);
}
void arcade::Core::changeDisplayByLst(const int id)
{
if (id > 0)
{
if (_currentDisplay == 0)
_currentDisplay = _lstDisplay.size();
_currentDisplay -= 1;
}
else
{
_currentDisplay += 1;
_currentDisplay %= _lstDisplay.size();
}
changeDisplay(_lstDisplay.at(_currentDisplay).second);
}
void arcade::Core::changeGameByLst(const int id)
{
if (id > 0)
{
if (_currentGame == 0)
_currentGame = _lstGame.size();
_currentGame -= 1;
}
else
{
_currentGame += 1;
_currentGame %= _lstGame.size();
}
changeGame(_lstGame.at(_currentGame).second);
}
bool arcade::Core::getInitDisplay(const std::string &line)
{
for (unsigned int i = 0; i < _lstDisplay.size(); i++)
{
if (line == _lstDisplay.at(i).first)
{
_currentDisplay = i;
if (changeDisplay(_lstDisplay.at(i).second) == false)
return (false);
return (true);
}
}
return (false);
}
bool arcade::Core::initCore(const std::string &filename)
{
void *tmp;
std::string const (*ptr)();
std::string line;
ptr = open_lib<std::string const (*)()>(filename, "getName", &tmp);
if (ptr == NULL)
throw std::runtime_error(" Core: file is not arcade lib");
line = ptr();
if (getInitDisplay(line) == false)
{
std::cerr << "Can't find graphic lib in list" << std::endl;
return (false);
}
if (tmp != NULL)
dlclose(tmp);
_currentGame = 0;
if (changeGame(_lstGame.at(0).second) == false)
return (false);
return (true);
}
void arcade::Core::switch_cmd(const arcade::CommandType cmd, bool &menu, bool &loopPlay)
{
switch (cmd)
{
case CommandType::EXIT:
loopPlay = false;
break;
case CommandType::DISPLAY_PREV:
this->changeDisplayByLst(-1);
_display->setSpriteSheet(_game->getSpriteSheet());
break;
case CommandType::DISPLAY_NEXT:
this->changeDisplayByLst(1);
_display->setSpriteSheet(_game->getSpriteSheet());
break;
case CommandType::GAME_PREV:
this->changeGameByLst(-1);
break;
case CommandType::GAME_NEXT:
this->changeGameByLst(1);
break;
case CommandType::PLAY:
if (menu == false)
_pause = !_pause;
break;
case CommandType::ENTER:
if (menu == true)
{
_player = _display->getUserName();
_menu._player = _player;
}
break;
case CommandType::MENU:
menu = true;
_pause = menu;
break;
default:
if (_pause == false)
_game->playMove(cmd);
};
}
void arcade::Core::loopGame()
{
bool menu = true;
bool loopPlay;
CommandType cmd;
loopPlay = true;
while (loopPlay == true)
{
cmd = _display->getEvent();
switch_cmd(cmd, menu, loopPlay);
_display->drawHeader(_player, _gameName, _game->getScore());
_display->drawMap(_game->getMap());
if (_game->isAlive() == false)
{
_display->printText("Game Over", 250, 250, 60, 0xffff0000);
if (cmd == CommandType::PLAY && menu == false)
{
updateScore();
if (_game->Reload() == false)
return;
}
else if (cmd == CommandType::MENU)
updateScore();
_pause = true;
}
if (menu == true)
{
printMenu(cmd, &menu);
_pause = menu;
}
_display->updateWindow(_game->getUpdateTimer());
}
}
| [
"pierre.rebut@epitech.eu"
] | pierre.rebut@epitech.eu |
885227e8292b88f1578df324c270336015c30d0d | 611dcc464c9a44c85690025eb8c92397487e6150 | /Source Files/Lab Exercise 4/Lab Exercise 4 (6).cpp | e85228e117c78608c19e0a91f5d08af062f610a2 | [] | no_license | angelikavalerio/Data-Struct | 9ac852eb122df2462a78b37e724628f909a80832 | d39c30402d7e5640506823ebfaacc2609914c38d | refs/heads/master | 2022-12-05T12:41:58.605543 | 2019-10-28T16:05:07 | 2019-10-28T16:05:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 341 | cpp | #include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string str;
cout << "Enter a string: ";
getline(cin, str);
cout << "Reverse: ";
for (string::const_reverse_iterator p = str.rbegin(); p != str.rend(); ++p)
cout << *p;
cout << endl;
system("pause>0");
return 0;
}
| [
"angelikacvalerio@gmail.com"
] | angelikacvalerio@gmail.com |
6a4bf611f1fa46ed5200d34d021f73f09a42633e | dfe17656275246adba7598053461e3ae9ee8cfad | /Db/vHash.h | 6dd863e492f80f0446132d06b055b598fb5f9292 | [] | no_license | weijunbao/Db | 911bbafd524a43bfa1c1619a4d085bc8214decbe | 455aa72fd86ee928c31063e88dc7717cc67bc0b0 | refs/heads/master | 2020-05-27T04:11:20.499418 | 2013-06-25T07:40:23 | 2013-06-25T07:40:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 567 | h | #pragma once
#include <stdint.h>
typedef enum HashType HashType;
typedef union HashKey HashKey;
enum HashType{
HT_INT=0x00,
HT_CHAR=0x01
};
union HashKey{
uint32_t iKey;
const char* pKey;
};
class vHash
{
public:
class vHashElement{
friend class vHash;
HashKey hashKey;
void* pValue;
vHashElement* next;
};
vHash(HashType hashType);
~vHash(void);
public:
int insert(HashKey hashKey,const void* pValue);
void* get(HashKey hashKey);
bool reHash(unsigned int n);
private:
HashType hashType;
vHashElement** elements;
int size;
int capacity;
}; | [
"weijunbao0317"
] | weijunbao0317 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.