diff --git a/App/inc/StandardSamples.h b/App/inc/StandardSamples.h index 1e07282ab0156590ae9ac5140a8b965b9d86d240..c4d5a8345f7460795b095a3c58d933d1bf6e95f0 100644 --- a/App/inc/StandardSamples.h +++ b/App/inc/StandardSamples.h @@ -40,7 +40,7 @@ ISample *MesoCrystal1(); //ISample *FormFactor_Sphere(); //ISample *FormFactor_Ellipsoid(); //ISample *FormFactor_FullSpheroid(); -//ISample *FormFactor_HemiSpheroid(); +//ISample *FormFactor_HemiEllipsoid(); //ISample *FormFactor_Parallelpiped(); //ISample *FormFactor_Cylinder(); //ISample *FormFactor_Pyramid(); diff --git a/App/src/IsGISAXSTools.cpp b/App/src/IsGISAXSTools.cpp index a1a25529e4822906a798bbbf1b12f3a8cea96c00..f52b04ce79034e54de169e080f518aed3c4e3891 100644 --- a/App/src/IsGISAXSTools.cpp +++ b/App/src/IsGISAXSTools.cpp @@ -168,7 +168,7 @@ TH2D *IsGISAXSTools::getOutputDataTH2D(const OutputData<double>& output, assert(&output); if (output.getRank() !=2) throw( "IsGISAXSTools::getOutputDataTH2D() -> " - "Warning! Expected number of dimensiobs is 2."); + "Warning! Expected number of dimensions is 2."); std::vector<AxisStructure > haxises; haxises.resize(output.getRank()); diff --git a/App/src/SampleFactory.cpp b/App/src/SampleFactory.cpp index 8d909b4ab230a1a6366a8b4a7e4949d088fa6f32..b66c658ac1baf29f201af5ee4d0fb99687fb73c9 100644 --- a/App/src/SampleFactory.cpp +++ b/App/src/SampleFactory.cpp @@ -60,9 +60,9 @@ SampleFactory::SampleFactory() // registerItem("FormFactor_Box", StandardSamples::FormFactor_Box); // registerItem("FormFactor_Cone", StandardSamples::FormFactor_Cone); // registerItem("FormFactor_Sphere", StandardSamples::FormFactor_Sphere); -// registerItem("FormFactor_Ellipsoid", StandardSamples::FormFactor_Ellipsoid); +// registerItem("FormFactor_EllipsoidalCylinder", StandardSamples::FormFactor_EllipsoidalCylinder); // registerItem("FormFactor_FullSpheroid", StandardSamples::FormFactor_FullSpheroid); -// registerItem("FormFactor_HemiSpheroid", StandardSamples::FormFactor_HemiSpheroid); +// registerItem("FormFactor_HemiEllipsoid", StandardSamples::FormFactor_HemiEllipsoid; // registerItem("FormFactor_Parallelepiped", StandardSamples::FormFactor_Parallelpiped); // registerItem("FormFactor_Cylinder", StandardSamples::FormFactor_Cylinder); // registerItem("FormFactor_Pyramid", StandardSamples::FormFactor_Pyramid); diff --git a/App/src/StandardSamples.cpp b/App/src/StandardSamples.cpp index 74c1dd855d830eb9e1d5f1359ff955b9864ec917..7774abd1b081a8b605809d0f1faa6f8b39a24780 100644 --- a/App/src/StandardSamples.cpp +++ b/App/src/StandardSamples.cpp @@ -532,32 +532,31 @@ ISample *StandardSamples::MesoCrystal1() // return p_multi_layer; //} -//// Functional test: Formfactor of an ellipsoid. +// Functional test: Formfactor of an ellipsoidal cylinder. -//ISample *StandardSamples::FormFactor_Ellipsoid() -//{ -// MultiLayer *p_multi_layer = new MultiLayer(); -// complex_t n_air(1.0, 0.0); -// complex_t n_substrate(1.0-6e-6, 2e-8); -// complex_t n_particle(1.0-6e-4, 2e-8); -// const IMaterial *p_air_material = -// MaterialManager::getHomogeneousMaterial("Air", n_air); -// const IMaterial *p_substrate_material = -// MaterialManager::getHomogeneousMaterial("Substrate", n_substrate); -// const IMaterial *particle_material = -// MaterialManager::getHomogeneousMaterial("Particle", n_particle); -// Layer air_layer; -// air_layer.setMaterial(p_air_material); -// Layer substrate_layer; -// substrate_layer.setMaterial(p_substrate_material); -// ParticleDecoration particle_decoration -// (new Particle(particle_material, -// new FormFactorEllipsoid(5*Units::nanometer, -// 5*Units::nanometer, -// 5*Units::nanometer, -// Units::deg2rad(54.73 )))); -// particle_decoration.addInterferenceFunction -// (new InterferenceFunctionNone()); +ISample *StandardSamples::FormFactor_EllipsoidalCylinder() +{ + MultiLayer *p_multi_layer = new MultiLayer(); + complex_t n_air(1.0, 0.0); + complex_t n_substrate(1.0-6e-6, 2e-8); + complex_t n_particle(1.0-6e-4, 2e-8); + const IMaterial *p_air_material = + MaterialManager::getHomogeneousMaterial("Air", n_air); + const IMaterial *p_substrate_material = + MaterialManager::getHomogeneousMaterial("Substrate", n_substrate); + const IMaterial *particle_material = + MaterialManager::getHomogeneousMaterial("Particle", n_particle); + Layer air_layer; + air_layer.setMaterial(p_air_material); + Layer substrate_layer; + substrate_layer.setMaterial(p_substrate_material); + ParticleDecoration particle_decoration + (new Particle(particle_material, + new FormFactorEllipsoidalCylinder(5*Units::nanometer, + 5*Units::nanometer, + 5*Units::nanometer))); + particle_decoration.addInterferenceFunction + (new InterferenceFunctionNone()); // air_layer.setDecoration(particle_decoration); @@ -600,30 +599,30 @@ ISample *StandardSamples::MesoCrystal1() ////! Functional test: Formfactor of a hemi spheroid. -//ISample *StandardSamples::FormFactor_HemiSpheroid() -//{ -// MultiLayer *p_multi_layer = new MultiLayer(); -// complex_t n_air(1.0, 0.0); -// complex_t n_substrate(1.0-6e-7, 2e-8); -// complex_t n_particle(1.0-6e-5, 2e-8); -// const IMaterial *p_air_material = -// MaterialManager::getHomogeneousMaterial("Air", n_air); -// const IMaterial *p_substrate_material = -// MaterialManager::getHomogeneousMaterial("Substrate", n_substrate); -// const IMaterial *particle_material = -// MaterialManager::getHomogeneousMaterial("Particle", n_particle); +ISample *StandardSamples::FormFactor_HemiEllipsoid() +{ + MultiLayer *p_multi_layer = new MultiLayer(); + complex_t n_air(1.0, 0.0); + complex_t n_substrate(1.0-6e-7, 2e-8); + complex_t n_particle(1.0-6e-5, 2e-8); + const IMaterial *p_air_material = + MaterialManager::getHomogeneousMaterial("Air", n_air); + const IMaterial *p_substrate_material = + MaterialManager::getHomogeneousMaterial("Substrate", n_substrate); + const IMaterial *particle_material = + MaterialManager::getHomogeneousMaterial("Particle", n_particle); -// Layer air_layer; -// air_layer.setMaterial(p_air_material); -// Layer substrate_layer; -// substrate_layer.setMaterial(p_substrate_material); -// ParticleDecoration particle_decoration -// (new Particle(particle_material, -// new FormFactorHemiSpheroid(5*Units::nanometer, -// 4*Units::nanometer, -// 2*Units::nanometer))); -// particle_decoration.addInterferenceFunction -// (new InterferenceFunctionNone()); + Layer air_layer; + air_layer.setMaterial(p_air_material); + Layer substrate_layer; + substrate_layer.setMaterial(p_substrate_material); + ParticleDecoration particle_decoration + (new Particle(particle_material, + new FormFactorHemiEllipsoid(5*Units::nanometer, + 4*Units::nanometer, + 2*Units::nanometer))); + particle_decoration.addInterferenceFunction + (new InterferenceFunctionNone()); // air_layer.setDecoration(particle_decoration); diff --git a/App/src/TestFormFactors.cpp b/App/src/TestFormFactors.cpp index 30c12c605954abacc8203fc20c39c084f15e5376..8f45ed86e36a69ebd2ed2838991543d1cfae7086 100644 --- a/App/src/TestFormFactors.cpp +++ b/App/src/TestFormFactors.cpp @@ -34,61 +34,93 @@ TestFormFactors::TestFormFactors() } void TestFormFactors::execute() -{ +{ // no rotation of particles angle =54.73deg + // For Cone6 and prism6 radius = 2./sqrt(3.)R_{IsGiSaXs} + // Length unit : nanometers //Cylinder FormFactorCylinder ff_cyl(5.0, 5.0); - IFormFactor* p_form_factor0 =& ff_cyl; - run_isgisaxs_simulation(p_form_factor0->clone()); + IFormFactor* p_ff_cyl =& ff_cyl; + run_isgisaxs_simulation(p_ff_cyl->clone()); //Box FormFactorBox ff_box(10.0, 20.0, 5.0); - IFormFactor* p_form_factor1 =& ff_box; - run_isgisaxs_simulation(p_form_factor1->clone()); + IFormFactor* p_ff_box =& ff_box; + run_isgisaxs_simulation(p_ff_box->clone()); //Cone FormFactorCone ff_cone(5.0, 5.0, Units::deg2rad(54.73 )); - IFormFactor* p_form_factor2 =& ff_cone; - run_isgisaxs_simulation(p_form_factor2->clone()); + IFormFactor* p_ff_cone =& ff_cone; + run_isgisaxs_simulation(p_ff_cone->clone()); //Cone6 FormFactorCone6 ff_cone6(2./sqrt(3.)*5.0, 5.0, Units::deg2rad(54.73)); - IFormFactor* p_form_factor3 =& ff_cone6; - run_isgisaxs_simulation(p_form_factor3->clone()); + IFormFactor* p_ff_cone6 =& ff_cone6; + run_isgisaxs_simulation(p_ff_cone6->clone()); //FullSphere FormFactorFullSphere ff_fsph(5.0); - IFormFactor* p_form_factor4 =& ff_fsph; - run_isgisaxs_simulation(p_form_factor4->clone()); + IFormFactor* p_ff_fsph =& ff_fsph; + run_isgisaxs_simulation(p_ff_fsph->clone()); //Parallelepiped FormFactorParallelepiped ff_par(5.0, 5.0); - IFormFactor* p_form_factor5 =& ff_par; - run_isgisaxs_simulation(p_form_factor5->clone()); + IFormFactor* p_ff_par =& ff_par; + run_isgisaxs_simulation(p_ff_par->clone()); //Prism3 FormFactorPrism3 ff_pr3(5.0, 5.0); - IFormFactor* p_form_factor6 =& ff_pr3; - run_isgisaxs_simulation(p_form_factor6->clone()); + IFormFactor* p_ff_pr3 =& ff_pr3; + run_isgisaxs_simulation(p_ff_pr3->clone()); //Prism6 FormFactorPrism6 ff_pr6(2./sqrt(3.)*5.0, 5.0); - IFormFactor* p_form_factor7 =& ff_pr6; - run_isgisaxs_simulation(p_form_factor7->clone()); + IFormFactor* p_ff_pr6 =& ff_pr6; + run_isgisaxs_simulation(p_ff_pr6->clone()); //Pyramid FormFactorPyramid ff_pyr(5.0, 5.0, Units::deg2rad(54.73 )); - IFormFactor* p_form_factor8 =& ff_pyr; - run_isgisaxs_simulation(p_form_factor8->clone()); + IFormFactor* p_ff_pyr =& ff_pyr; + run_isgisaxs_simulation(p_ff_pyr->clone()); //Sphere FormFactorSphere ff_sph(5.0, 5.0); - IFormFactor* p_form_factor9 =& ff_sph; - run_isgisaxs_simulation(p_form_factor9->clone()); + IFormFactor* p_ff_sph =& ff_sph; + run_isgisaxs_simulation(p_ff_sph->clone()); // Tetrahedron - FormFactorTetrahedron ff_tetr(5.0, 5.0, Units::deg2rad(54.73 )); - IFormFactor* p_form_factor10 =& ff_tetr; - run_isgisaxs_simulation(p_form_factor10->clone()); + FormFactorTetrahedron ff_tetr(5.0, 4.0, Units::deg2rad(54.73 )); + IFormFactor* p_ff_tetr =& ff_tetr; + run_isgisaxs_simulation(p_ff_tetr->clone()); + + // Cuboctahedron + FormFactorCuboctahedron ff_cuboc(5.0, 5.0, 1.0, Units::deg2rad(54.73 )); + IFormFactor* p_ff_cuboc =& ff_cuboc; + run_isgisaxs_simulation(p_ff_cuboc->clone()); + + // Anisotropic Pyramid + FormFactorAnisoPyramid ff_anipyr(10.0, 20.0, 5.0, Units::deg2rad(54.73 )); + IFormFactor* p_ff_anipyr =& ff_anipyr; + run_isgisaxs_simulation(p_ff_anipyr->clone()); + + // Ellipsoidal cylinder + FormFactorEllipsoidalCylinder ff_ellipscyl(5.0, 10.0, 5.0); + IFormFactor* p_ff_ellipscyl =& ff_ellipscyl; + run_isgisaxs_simulation(p_ff_ellipscyl->clone()); + + // Full Spheroid + FormFactorFullSpheroid ff_fspheroid(5.0, 5.0); + IFormFactor* p_ff_fspheroid =& ff_fspheroid; + run_isgisaxs_simulation(p_ff_fspheroid->clone()); + + // Spheroid + FormFactorSpheroid ff_spheroid(5.0, 5.0, 1.0); + IFormFactor* p_ff_spheroid =& ff_spheroid; + run_isgisaxs_simulation(p_ff_spheroid->clone()); + + // Anisotropic HemiEllipsoid + FormFactorHemiEllipsoid ff_hellipsoid(5.0, 10.0, 5.0); + IFormFactor* p_ff_hellipsoid=& ff_hellipsoid; + run_isgisaxs_simulation(p_ff_hellipsoid->clone()); } @@ -99,9 +131,7 @@ void TestFormFactors::run_isgisaxs_simulation(IFormFactor *p_form_factor) const IMaterial *particle_material = MaterialManager::getHomogeneousMaterial("Particle", 6e-4, 2e-8); - // R=H=5nm W=2R, no rotation of particles angle =54.73deg - // For Cone6 and prism6 radius = 2./sqrt(3.)R_{IsGiSaXs} - // Length unit : nanometers + //building sample MultiLayer multi_layer; @@ -197,8 +227,8 @@ void TestFormFactors::run_isgisaxs_simulation(IFormFactor *p_form_factor) void TestFormFactors::finalise() { - std::vector< CompareStruct > tocompare; - tocompare.push_back( CompareStruct(getOutputPath()+"isgi_cylinder_BA.ima", + std::vector< CompareStruct > tocompare; + tocompare.push_back( CompareStruct(getOutputPath()+"isgi_cylinder_BA.ima", "this_Cylinder_BA.ima", "Cylinder BA Formfactor")); @@ -235,6 +265,28 @@ void TestFormFactors::finalise() "isgi_tetrahedron_BA.ima", "this_Tetrahedron_BA.ima","Tetrahedron BA Formfactor")); + tocompare.push_back( CompareStruct(getOutputPath()+ + "isgi_cuboctahedron_BA.ima", + "this_Cuboctahedron_BA.ima","Cuboctahedron BA Formfactor")); + + tocompare.push_back( CompareStruct(getOutputPath()+ + "isgi_aniso_pyramid_BA.ima", + "this_AnisoPyramid_BA.ima", "AnisoPyramid BA Formfactor")); + + tocompare.push_back( CompareStruct(getOutputPath()+"isgi_ellipsoid_BA.ima", + "this_EllipsoidalCylinder_BA.ima","EllipsoidalCylinder BA Formfactor")); + + tocompare.push_back( CompareStruct(getOutputPath()+"isgi_full_spheroid_BA.ima", + "this_FullSpheroid_BA.ima", "FullSpheroid BA Formfactor")); + + tocompare.push_back( CompareStruct(getOutputPath()+"isgi_spheroid_BA.ima", + "this_Spheroid_BA.ima", "Spheroid BA Formfactor")); + + tocompare.push_back( CompareStruct(getOutputPath()+ + "isgi_hemi_ellipsoid_BA.ima","this_HemiEllipsoid_BA.ima", + "HemiEllipsoid BA Formfactor")); + + const double threshold(2e-10); for(size_t i=0; i<tocompare.size(); ++i) { @@ -255,9 +307,10 @@ void TestFormFactors::finalise() diff+= std::fabs(*it); } diff /= our_data->getAllocatedSize(); + bool status_ok(true); if( diff > threshold || MathFunctions::isnan(diff) ) status_ok=false; - std::cout << m_name << tocompare[i].descr<<" " << + std::cout << m_name << tocompare[i].descr<<" " << diff << " " << (status_ok ? "[OK]" : "[FAILED]") << std::endl; delete isgi_data; diff --git a/Core/FormFactors/inc/FormFactorAnisoPyramid.h b/Core/FormFactors/inc/FormFactorAnisoPyramid.h new file mode 100644 index 0000000000000000000000000000000000000000..504df1308f590958629982ab662a899012fef73a --- /dev/null +++ b/Core/FormFactors/inc/FormFactorAnisoPyramid.h @@ -0,0 +1,65 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/inc/FormFactorAnisoPyramid.h +//! @brief Defines class FormFactorAnisoPyramid +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#ifndef FORMFACTORANISOPYRAMID_H +#define FORMFACTORANISOPYRAMID_H + +#include "IFormFactorBorn.h" +#include "IStochasticParameter.h" + +//! Form factor of an anisotropic pyramid. + +class BA_CORE_API_ FormFactorAnisoPyramid : public IFormFactorBorn +{ +public: + //! @brief anisotropic pyramid constructor + //! @param height of anisotropic pyramide + //! @param length of anisotropic pyramid's base + //! @param width of anisotropic pyramid's base + //! @param angle in radians between base and facet + FormFactorAnisoPyramid(double length, double width, double height, double alpha); + + ~FormFactorAnisoPyramid() {} + virtual FormFactorAnisoPyramid *clone() const; + + virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } + + virtual int getNumberOfStochasticParameters() const { return 4; } + + virtual double getHeight() const { return m_height; } + virtual void setHeight(double height) { m_height = height; } + + virtual double getLength() const { return m_length; } + virtual void setLength(double length) { m_length = length; } + + virtual double getWidth() const { return m_width; } + virtual void setWidth(double width) { m_width = width; } + + virtual double getAlpha() const { return m_alpha; } + virtual void setAlpha(double alpha) { m_alpha = alpha; } + + virtual complex_t evaluate_for_q(const cvector_t& q) const; + +protected: + virtual void init_parameters(); + +private: + double m_length; + double m_width; + double m_height; + double m_alpha; +}; + +#endif // FORMFACTORANISOPYRAMID_H diff --git a/Core/FormFactors/inc/FormFactorBox.h b/Core/FormFactors/inc/FormFactorBox.h index adeb14d495cf3655c2c98b939eb0a48b1ed5fb13..f0a01704210b4d416ad436a74ab6ede0b6919a85 100644 --- a/Core/FormFactors/inc/FormFactorBox.h +++ b/Core/FormFactors/inc/FormFactorBox.h @@ -27,7 +27,6 @@ public: FormFactorBox( double length, double width, double height) : m_length(length), m_width(width), m_height(height) { - setName("FormFactorBox"); init_parameters(); } @@ -52,7 +51,7 @@ public: virtual complex_t evaluate_for_q(const cvector_t& q) const; protected: - void init_parameters(); + virtual void init_parameters(); private: double m_length; diff --git a/Core/FormFactors/inc/FormFactorCone.h b/Core/FormFactors/inc/FormFactorCone.h index 4ebb18205521035768e07b4e992bbc7ecff81c7b..30bde137bdf9aebb319b01ac1731e185c96e1366 100644 --- a/Core/FormFactors/inc/FormFactorCone.h +++ b/Core/FormFactors/inc/FormFactorCone.h @@ -26,8 +26,8 @@ class BA_CORE_API_ FormFactorCone : public IFormFactorBorn { public: //! @brief Cone constructor - //! @param height of Cone //! @param radius half of Cone's base + //! @param height of Cone //! @param angle in radians between base and facet FormFactorCone(double radius, double height, double alpha); ~FormFactorCone() {delete m_integrator;} diff --git a/Core/FormFactors/inc/FormFactorCone6.h b/Core/FormFactors/inc/FormFactorCone6.h index 02230939d78cafdca262cfc003be99b65ad33f61..b6275caf793d197f58c944c5f26746b18972c9e7 100644 --- a/Core/FormFactors/inc/FormFactorCone6.h +++ b/Core/FormFactors/inc/FormFactorCone6.h @@ -47,8 +47,10 @@ public: virtual double getAlpha() const { return m_alpha; } virtual void setAlpha(double alpha) { m_alpha = alpha; } -protected: virtual complex_t evaluate_for_q (const cvector_t& q) const; + +protected: + virtual void init_parameters(); private: diff --git a/Core/FormFactors/inc/FormFactorCuboctahedron.h b/Core/FormFactors/inc/FormFactorCuboctahedron.h new file mode 100644 index 0000000000000000000000000000000000000000..789af5445a7ba868d46cce5b7912e392df9e24b8 --- /dev/null +++ b/Core/FormFactors/inc/FormFactorCuboctahedron.h @@ -0,0 +1,68 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/inc/FormFactorCuboctahedron.h +//! @brief Defines class FormFactorCuboctahedron +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#ifndef FORMFACTORCUBOCTAHEDRON_H +#define FORMFACTORCUBOCTAHEDRON_H + +#include "IFormFactorBorn.h" +#include "IStochasticParameter.h" + +//! Form factor of cuboctahedron. + +class BA_CORE_API_ FormFactorCuboctahedron : public IFormFactorBorn +{ +public: + //! @brief cuboctahedron constructor + //! @param height of bottom of cuboctahedron + //! @param height ratio : height top part/height bottom part + //! @param half_side half of cuboctahedron's base + //! @param angle in radians between base and facet + + FormFactorCuboctahedron(double half_side, double height, + double height_ratio, double alpha); + + ~FormFactorCuboctahedron() {} + virtual FormFactorCuboctahedron *clone() const; + + virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } + + virtual int getNumberOfStochasticParameters() const { return 4; } + + virtual double getHeight() const { return m_height; } + virtual void setHeight(double height) { m_height = height; } + + virtual double getHeightRatio() const { return m_height_ratio; } + virtual void setHeightRatio(double height_ratio) { m_height_ratio + = height_ratio; } + + virtual double getHalfSide() const { return m_half_side; } + virtual void setHalfSide(double half_side) { m_half_side = half_side; } + + virtual double getAlpha() const { return m_alpha; } + virtual void setAlpha(double alpha) { m_alpha = alpha; } + + virtual complex_t evaluate_for_q(const cvector_t& q) const; + +protected: + virtual void init_parameters(); + +private: + double m_height; + double m_half_side; + double m_height_ratio; + double m_alpha; +}; + +#endif // FORMFACTORCUBOCTAHEDRON_H diff --git a/Core/FormFactors/inc/FormFactorEllipsoid.h b/Core/FormFactors/inc/FormFactorEllipsoidalCylinder.h similarity index 58% rename from Core/FormFactors/inc/FormFactorEllipsoid.h rename to Core/FormFactors/inc/FormFactorEllipsoidalCylinder.h index b48b709e3f5ec9f9c39929a877d72cc68756e277..34779e00ffafb1dcc9d93d3a41cad342deb25bfc 100644 --- a/Core/FormFactors/inc/FormFactorEllipsoid.h +++ b/Core/FormFactors/inc/FormFactorEllipsoidalCylinder.h @@ -2,8 +2,8 @@ // // BornAgain: simulate and fit scattering at grazing incidence // -//! @file FormFactors/inc/FormFactorEllipsoid.h -//! @brief Defines class FormFactorEllipsoid +//! @file FormFactors/inc/FormFactorEllipsoidalCylinder.h +//! @brief Defines class FormFactorEllipsoidalCylinder //! //! @homepage http://apps.jcns.fz-juelich.de/BornAgain //! @license GNU General Public License v3 or higher (see COPYING) @@ -13,41 +13,39 @@ // // ************************************************************************** // -#ifndef FORMFACTORELLIPSOID_H -#define FORMFACTORELLIPSOID_H +#ifndef FORMFACTORELLIPSOIDALCYLINDER_H +#define FORMFACTORELLIPSOIDALCYLINDER_H #include "IFormFactorBorn.h" #include "IStochasticParameter.h" -//! Form factor of an ellipsoid. +//! Form factor of an ellipsoidal cylinder. -class BA_CORE_API_ FormFactorEllipsoid : public IFormFactorBorn +class BA_CORE_API_ FormFactorEllipsoidalCylinder : public IFormFactorBorn { public: - FormFactorEllipsoid(double radius, double width, - double height, double alpha); - ~FormFactorEllipsoid() {} - virtual FormFactorEllipsoid *clone() const; + FormFactorEllipsoidalCylinder(double radius, double width, + double height); + ~FormFactorEllipsoidalCylinder() {} + virtual FormFactorEllipsoidalCylinder *clone() const; virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } - virtual int getNumberOfStochasticParameters() const { return 2; } + virtual int getNumberOfStochasticParameters() const { return 3; } - //! Returns radius of Ellipsoid double getRadius() const { return m_radius; } + virtual void setRadius(double radius) { m_radius = radius; } - //! Returns width of Ellipsoid - double getWidth() const { return m_width; } - - // virtual double getVolume() const { - // return 2.0*m_height*m_radius*m_width; - // } + virtual double getWidth() const { return m_width; } + virtual void setWidth(double width) { m_width = width; } virtual double getHeight() const { return m_height; } + virtual void setHeight(double height) { m_height = height; } virtual complex_t evaluate_for_q(const cvector_t& q) const; protected: + //! Registers some class members for later access via parameter pool virtual void init_parameters(); @@ -55,9 +53,9 @@ private: double m_radius; double m_width; double m_height; - double m_alpha; + }; -#endif // FORMFACTORELLIPSOID_H +#endif // FORMFACTORELLIPSOIDALCYLINDER_H diff --git a/Core/FormFactors/inc/FormFactorFullSpheroid.h b/Core/FormFactors/inc/FormFactorFullSpheroid.h index bd516444a9a485dc16d5e90eef90a820e59e11b7..b2753b09d19cc922d6b0ff74737668623a84a332 100644 --- a/Core/FormFactors/inc/FormFactorFullSpheroid.h +++ b/Core/FormFactors/inc/FormFactorFullSpheroid.h @@ -18,15 +18,21 @@ #include "IFormFactorBorn.h" #include "IStochasticParameter.h" +#include "MemberComplexFunctionIntegrator.h" -//! Formfactor of a spheroid +//! Formfactor of a full spheroid class BA_CORE_API_ FormFactorFullSpheroid : public IFormFactorBorn { public: + //! @brief Full spheroid constructor + //! @param radius of spheroid + //! @param height of spheroid + FormFactorFullSpheroid(double radius, double height); - //double FullSpheroidIntegral(double Z, void* params) const; - ~FormFactorFullSpheroid() {} + + ~FormFactorFullSpheroid() {delete m_integrator;} + virtual FormFactorFullSpheroid *clone() const; virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } @@ -40,19 +46,17 @@ public: virtual complex_t evaluate_for_q(const cvector_t& q) const; protected: - //virtual complex_t evaluate_for_q(const cvector_t& q) const; virtual void init_parameters(); private: - /*double evaluate_for_q_real() const; - complex_t evaluate_for_q_imag() const; - double FullSpheroidIntegralReal(double Z, void* params) const; - double FullSpheroidIntegralImaginary(double Z, void* params) const;*/ + + complex_t Integrand(double Z, void* params) const; double m_radius; double m_height; + mutable cvector_t m_q; - //mutable cvector_t m_q; + MemberComplexFunctionIntegrator<FormFactorFullSpheroid> *m_integrator; }; #endif // FORMFACTORFULLSPHEROID_H diff --git a/Core/FormFactors/inc/FormFactorHemiEllipsoid.h b/Core/FormFactors/inc/FormFactorHemiEllipsoid.h new file mode 100644 index 0000000000000000000000000000000000000000..7dfb705f5b3740459d03b73111da7417a43670ad --- /dev/null +++ b/Core/FormFactors/inc/FormFactorHemiEllipsoid.h @@ -0,0 +1,69 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/inc/FormFactorHemiEllipsoid.h +//! @brief Defines class FormFactorHemiEllipsoid. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#ifndef FORMFACTORHEMIELLIPSOID_H +#define FORMFACTORHEMIELLIPSOID_H + +#include "IFormFactorBorn.h" +#include "IStochasticParameter.h" +#include "MemberComplexFunctionIntegrator.h" + +//! Form factor of an hemi ellipsoid + +class BA_CORE_API_ FormFactorHemiEllipsoid : public IFormFactorBorn +{ +public: + //! @brief Hemi ellipsoid constructor + //! @param height of hemi ellipsoid + //! @param radius_a: half length of one horizontal main axes + //! @param radius_b: half length of the other horizontal main axes + + FormFactorHemiEllipsoid(double radius_a, double radius_b, double height); + + ~FormFactorHemiEllipsoid() {delete m_integrator;} + + virtual FormFactorHemiEllipsoid* clone() const; + + virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } + + virtual int getNumberOfStochasticParameters() const { return 3; } + + virtual double getHeight() const { return m_height; } + + virtual double getRadiusA() const { return m_radius_a; } + + virtual double getRadiusB() const { return m_radius_b; } + + virtual complex_t evaluate_for_q (const cvector_t& q) const; + +protected: + virtual void init_parameters(); + +private: + + complex_t Integrand(double Z, void* params) const; + + double m_radius_a; + double m_radius_b; + double m_height; + mutable cvector_t m_q; + + MemberComplexFunctionIntegrator<FormFactorHemiEllipsoid> *m_integrator; + +}; + +#endif // FORMFACTORHEMIELLIPSOID_H + + diff --git a/Core/FormFactors/inc/FormFactorHemiSpheroid.h b/Core/FormFactors/inc/FormFactorHemiSpheroid.h deleted file mode 100644 index 198c44a75dcfb422baacf25adde8eef87bfa1934..0000000000000000000000000000000000000000 --- a/Core/FormFactors/inc/FormFactorHemiSpheroid.h +++ /dev/null @@ -1,63 +0,0 @@ -// ************************************************************************** // -// -// BornAgain: simulate and fit scattering at grazing incidence -// -//! @file FormFactors/inc/FormFactorHemiSpheroid.h -//! @brief Defines class FormFactorHemiSpheroid. -//! -//! @homepage http://apps.jcns.fz-juelich.de/BornAgain -//! @license GNU General Public License v3 or higher (see COPYING) -//! @copyright Forschungszentrum Jülich GmbH 2013 -//! @authors Scientific Computing Group at MLZ Garching -//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke -// -// ************************************************************************** // - -#ifndef FORMFACTORHEMISPHEROID_H -#define FORMFACTORHEMISPHEROID_H - -#include "IFormFactorBorn.h" -#include "IStochasticParameter.h" - -//! Form factor of a ?? - -class BA_CORE_API_ FormFactorHemiSpheroid : public IFormFactorBorn -{ -public: - //! @brief Cone constructor - //! @param height of Cone - //! @param radius half of Cone's base - //! @param angle in radians between base and facet - FormFactorHemiSpheroid(double radius, double width, double height); - double HemiSpheroidIntegral(double Z, void* params) const; - - ~FormFactorHemiSpheroid() {} - virtual FormFactorHemiSpheroid* clone() const; - - virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } - - virtual int getNumberOfStochasticParameters() const { return 3; } - - virtual double getHeight() const { return m_height; } - -protected: - virtual complex_t evaluate_for_q (const cvector_t& q) const; - -private: - double evaluate_for_q_real() const; - double evaluate_for_q_imag() const; - double HemiSpheroidIntegralReal(double Z, void* params) const; - - double HemiSpheroidIntegralImaginary(double Z, void* params) const; - - virtual void init_parameters(); - - double m_radius; - double m_width; - double m_height; - mutable cvector_t m_q; -}; - -#endif // FormFactorHemiSpheroid_H - - diff --git a/Core/FormFactors/inc/FormFactorSpheroid.h b/Core/FormFactors/inc/FormFactorSpheroid.h new file mode 100644 index 0000000000000000000000000000000000000000..b6e39d6e65ba22fdcccd7e5a16f9e49b9bcde3bb --- /dev/null +++ b/Core/FormFactors/inc/FormFactorSpheroid.h @@ -0,0 +1,68 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/inc/FormFactorSpheroid.h +//! @brief Defines class FormFactorSpheroid. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#ifndef FORMFACTORSPHEROID_H +#define FORMFACTORSPHEROID_H + +#include "IFormFactorBorn.h" +#include "IStochasticParameter.h" +#include "MemberComplexFunctionIntegrator.h" + +//! Formfactor of a spheroid + +class BA_CORE_API_ FormFactorSpheroid : public IFormFactorBorn +{ +public: + //! @brief Spheroid constructor + //! @param radius of spheroid + //! @param height of spheroid + //! @param flattening parameter in vertical direction (full height: 2 x flattening x radius) + + FormFactorSpheroid(double radius, double height, double height_flattening); + + ~FormFactorSpheroid() {delete m_integrator;} + + virtual FormFactorSpheroid *clone() const; + + virtual void accept(ISampleVisitor *visitor) const { visitor->visit(this); } + + virtual int getNumberOfStochasticParameters() const { return 3; } + + virtual double getHeight() const { return m_height; } + + virtual double getRadius() const { return m_radius; } + + virtual double getHeightFullSpheroid() const + { return 2.*m_height_flattening*m_radius; } + + virtual complex_t evaluate_for_q(const cvector_t& q) const; + +protected: + virtual void init_parameters(); + +private: + + complex_t Integrand(double Z, void* params) const; + + double m_radius; + double m_height; + double m_height_flattening; + mutable cvector_t m_q; + + MemberComplexFunctionIntegrator<FormFactorSpheroid> *m_integrator; +}; + + +#endif // FORMFACTORSPHEROID_H diff --git a/Core/FormFactors/inc/FormFactorTetrahedron.h b/Core/FormFactors/inc/FormFactorTetrahedron.h index 93acaffd1b323096795339e1ffb99bbd4abeb778..72135b68ef78e85c9cf65d19734b3eaade6487e7 100644 --- a/Core/FormFactors/inc/FormFactorTetrahedron.h +++ b/Core/FormFactors/inc/FormFactorTetrahedron.h @@ -56,15 +56,11 @@ protected: private: - //complex_t Integrand(double Z, void* params) const; - double m_height; double m_half_side; double m_alpha; double m_root3; // Cached value of square root of 3 - // mutable cvector_t m_q; - // MemberComplexFunctionIntegrator<FormFactorTetrahedron> *m_integrator; }; #endif // FORMFACTORTETRAHEDRON_H diff --git a/Core/FormFactors/inc/FormFactors.h b/Core/FormFactors/inc/FormFactors.h index b9eb79c1a5ca0eeca5f2f1654ee9cb69baf7f555..c59f804d51fd58d9bcf04e6f61a8bb4ff92ab13d 100644 --- a/Core/FormFactors/inc/FormFactors.h +++ b/Core/FormFactors/inc/FormFactors.h @@ -16,10 +16,12 @@ #ifndef FORMFACTORS_H_ #define FORMFACTORS_H_ +#include "FormFactorAnisoPyramid.h" #include "FormFactorBox.h" #include "FormFactorCone.h" #include "FormFactorCone6.h" #include "FormFactorCrystal.h" +#include "FormFactorCuboctahedron.h" #include "FormFactorCylinder.h" #include "FormFactorDecoratorDebyeWaller.h" #include "FormFactorDecoratorFactor.h" @@ -31,17 +33,18 @@ #include "FormFactorDWBAConstZ.h" #include "FormFactorDWBAPol.h" #include "FormFactorDWBAPolConstZ.h" -#include "FormFactorEllipsoid.h" +#include "FormFactorEllipsoidalCylinder.h" #include "FormFactorFullSphere.h" #include "FormFactorFullSpheroid.h" #include "FormFactorGauss.h" -#include "FormFactorHemiSpheroid.h" +#include "FormFactorHemiEllipsoid.h" #include "FormFactorLorentz.h" #include "FormFactorParallelepiped.h" #include "FormFactorPrism3.h" #include "FormFactorPrism6.h" #include "FormFactorPyramid.h" #include "FormFactorSphere.h" +#include "FormFactorSpheroid.h" #include "FormFactorSphereGaussianRadius.h" #include "FormFactorTetrahedron.h" #include "FormFactorWeighted.h" diff --git a/Core/FormFactors/inc/IFormFactorDecorator.h b/Core/FormFactors/inc/IFormFactorDecorator.h index e560c04da0579f76cf0dbff880073196e22a5d80..9237229afb7dc1a4d90adcc62cbac30a08237fda 100644 --- a/Core/FormFactors/inc/IFormFactorDecorator.h +++ b/Core/FormFactors/inc/IFormFactorDecorator.h @@ -3,7 +3,7 @@ // BornAgain: simulate and fit scattering at grazing incidence // //! @file FormFactors/inc/IFormFactorDecorator.h -//! @brief Defines pure vurtual interface class IFormFactorDecorator. +//! @brief Defines pure virtual interface class IFormFactorDecorator. //! //! @homepage http://apps.jcns.fz-juelich.de/BornAgain //! @license GNU General Public License v3 or higher (see COPYING) diff --git a/Core/FormFactors/src/FormFactorAnisoPyramid.cpp b/Core/FormFactors/src/FormFactorAnisoPyramid.cpp new file mode 100644 index 0000000000000000000000000000000000000000..78e5b66bb755bb83ed2519d10fba3f7ea8043d81 --- /dev/null +++ b/Core/FormFactors/src/FormFactorAnisoPyramid.cpp @@ -0,0 +1,161 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/src/FormFactorAnisoPyramid.cpp +//! @brief Implements class FormFactorAnisoPyramid. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#include "FormFactorAnisoPyramid.h" +#include "StochasticDiracDelta.h" +#include "MathFunctions.h" + +FormFactorAnisoPyramid::FormFactorAnisoPyramid( + double length, double width, double height, double alpha) +{ + setName("FormFactorAnisoPyramid"); + m_length = length; + m_width = width; + m_height = height; + m_alpha = alpha; + assert(2.*m_height <= std::min(m_length, m_width)*std::tan(m_alpha)); + init_parameters(); +} + +void FormFactorAnisoPyramid::init_parameters() +{ + clearParameterPool(); + registerParameter("length", &m_length); + registerParameter("width", &m_width); + registerParameter("height", &m_height); + registerParameter("alpha", &m_alpha); +} + +FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const +{ + FormFactorAnisoPyramid *result = + new FormFactorAnisoPyramid(m_length, m_width, m_height, m_alpha); + result->setName(getName()); + return result; +} + +complex_t FormFactorAnisoPyramid::evaluate_for_q(const cvector_t& q) const +{ + double H = m_height; + double L = m_length; + double W = m_width; + double tga = std::tan(m_alpha); + + complex_t qx = q.x(); + complex_t qy = q.y(); + complex_t qz = q.z(); + + complex_t F; + const complex_t im(0,1); + + if( std::abs(qx) > Numeric::double_epsilon + && std::abs(qy) > Numeric::double_epsilon ) { + // General case + complex_t q1, q2, q3, q4; + q1=(H/2.)*((qx-qy)/tga + qz); + q2=(H/2.)*((qx-qy)/tga - qz); + q3=(H/2.)*((qx+qy)/tga + qz); + q4=(H/2.)*((qx+qy)/tga - qz); + complex_t K1,K2,K3,K4; + K1 = MathFunctions::Sinc(q1)*std::exp(im*q1) + + MathFunctions::Sinc(q2)*std::exp(-im*q2); + K2 = -MathFunctions::Sinc(q1)*std::exp(im*q1)*im + + MathFunctions::Sinc(q2)*std::exp(-im*q2)*im; + K3 = MathFunctions::Sinc(q3)*std::exp(im*q3) + + MathFunctions::Sinc(q4)*std::exp(-im*q4); + K4 = -MathFunctions::Sinc(q3)*std::exp(im*q3)*im + + MathFunctions::Sinc(q4)*std::exp(-im*q4)*im; + F = K1*std::cos( (qx*L-qy*W)/2. ) + K2*std::sin( (qx*L-qy*W)/2. ) + - K3*std::cos( (qx*L+qy*W)/2. ) - K4*std::sin( (qx*L+qy*W)/2. ); + F = F*H/(qx*qy); + } else if(std::abs(qx) <= Numeric::double_epsilon + && std::abs(qy) <= Numeric::double_epsilon) { + + if (std::abs(qz) <= Numeric::double_epsilon) { + //Volume qx=qy=qz=0 + F = L*W*H - (L + W)*H*H/tga + 4.0/3.0*H*H*H/(tga*tga); + } else { + //qx=0 qy=0 qz!=0 + F=im*( + - 8.0/std::pow(tga,2) - 2.0*im*qz*(L+W)/tga + std::pow(qz,2)*L*W + - std::exp(im*H*qz)*(L*W*qz*qz - 2.0*(L+W)*qz/tga*(H*qz+im) + + 4.0*(std::pow(qz*H,2)+2.0*im*qz*H-2.0)/std::pow(tga,2)) + )/std::pow(qz,3); + } + + } else { + + complex_t qxy, q5, q6; + double R0, Rxy; + if(std::abs(qy) <= Numeric::double_epsilon + && std::abs(qx) > Numeric::double_epsilon) { + // qx!=0 qy=0 + qxy=qx; + Rxy = L/2.0; + R0 = W/2.0; + } else { + // qy!=0 qx=0 + qxy=qy; + R0 = L/2.0; + Rxy = W/2.0; + } + + q5 = (qz - qxy/tga)/2.; + q6 = (qz + qxy/tga)/2.; + + if (std::abs(q5) <= Numeric::double_epsilon) { + //q5 = 0, q6!=0 + F= -2.0*H*im/qxy*( + (R0 - H/(2.0*tga))*std::exp(im*qxy*Rxy) + - std::exp(im*q6*H-im*qxy*Rxy)* + ( R0*MathFunctions::Sinc(q6*H) + + im*( std::exp(im*q6*H) + - MathFunctions::Sinc(q6*H) )/(2.0*q6*tga)) + ); + + } else { + + if (std::abs(q6) <= Numeric::double_epsilon) { + + //q5!= 0, q6=0 + F=-2.0*H*im/qxy*( + std::exp(im*q5*H+im*qxy*Rxy)* + ( R0*MathFunctions::Sinc(q5*H) + + im*( std::exp(im*q5*H) + - MathFunctions::Sinc(q5*H) )/(2.0*q5*tga)) + +(H/(2.0*tga)-R0)*std::exp(-im*qxy*Rxy) + ); + + } else { + + //q5!= 0, q6!=0 + F=-2.0*H*im/qxy*( + std::exp(im*q5*H+im*qxy*Rxy)* + (R0*MathFunctions::Sinc(q5*H) + + im*( std::exp(im*q5*H) + - MathFunctions::Sinc(q5*H) )/(2.0*q5*tga)) + - std::exp(im*q6*H-im*qxy*Rxy) + *(R0*MathFunctions::Sinc(q6*H) + + im*( std::exp(im*q6*H) + - MathFunctions::Sinc(q6*H))/(2.0*q6*tga)) + ); + } +} +} + return F; +} + + + diff --git a/Core/FormFactors/src/FormFactorCone.cpp b/Core/FormFactors/src/FormFactorCone.cpp index bd86473c33c05ff96715a0fed12c67e14b2bf314..a6e4412dbade873765fc64f93635c62f0e4b0e25 100644 --- a/Core/FormFactors/src/FormFactorCone.cpp +++ b/Core/FormFactors/src/FormFactorCone.cpp @@ -21,18 +21,13 @@ #include "MemberFunctionIntegrator.h" #include "MemberComplexFunctionIntegrator.h" -//#include "IStochasticParameter.h" -//#include "IFormFactorBorn.h" -//#include "Units.h" -//#include "Exceptions.h" -//#include <iostream> - FormFactorCone::FormFactorCone(double radius, double height, double alpha) { setName("FormFactorCone"); m_radius = radius; m_height = height; m_alpha = alpha; + assert(m_height <= m_radius*std::tan(m_alpha)); init_parameters(); MemberComplexFunctionIntegrator<FormFactorCone>::mem_function p_mf = @@ -79,12 +74,15 @@ complex_t FormFactorCone::evaluate_for_q(const cvector_t& q) const double H = m_height; double tga = std::tan(m_alpha); double HdivRtga = H/tga/R; + return M_PI/3.0*tga*R*R*R* (1.0 - (1.0 - HdivRtga)*(1.0 - HdivRtga)*(1.0 - HdivRtga)); - } - else { - complex_t integral = m_integrator->integrate(0., m_height); - return 2.0*M_PI*integral; + + } else { + + complex_t integral = m_integrator->integrate(0., m_height); + + return 2.0*M_PI*integral; } } diff --git a/Core/FormFactors/src/FormFactorCone6.cpp b/Core/FormFactors/src/FormFactorCone6.cpp index 57b0ed7665a1daf609bbc93d505f9cbd15a95ea7..ad7826be40a9914d161d8a7462e4356ab0aab164 100644 --- a/Core/FormFactors/src/FormFactorCone6.cpp +++ b/Core/FormFactors/src/FormFactorCone6.cpp @@ -29,6 +29,7 @@ FormFactorCone6::FormFactorCone6(double radius, double height, double alpha) m_height = height; m_alpha = alpha; m_root3 = std::sqrt(3.0); + assert(m_height <= m_radius*std::tan(m_alpha)); init_parameters(); MemberComplexFunctionIntegrator<FormFactorCone6>::mem_function p_mf = @@ -91,13 +92,15 @@ complex_t FormFactorCone6::evaluate_for_q(const cvector_t& q) const double H = m_height; double tga = std::tan(m_alpha); double HdivRtga = 2./m_root3*H/tga/R; + return 3.0/4.0*tga*R*R*R* (1.0 - (1.0 - HdivRtga)*(1.0 - HdivRtga)*(1.0 - HdivRtga)); - } - else { - complex_t integral = m_integrator->integrate(0., m_height); - return 4.0*m_root3/(3.0*m_q.y()*m_q.y()-m_q.x()*m_q.x())*integral; + } else { + + complex_t integral = m_integrator->integrate(0., m_height); + + return 4.0*m_root3/(3.0*m_q.y()*m_q.y()-m_q.x()*m_q.x())*integral; } } diff --git a/Core/FormFactors/src/FormFactorCuboctahedron.cpp b/Core/FormFactors/src/FormFactorCuboctahedron.cpp new file mode 100644 index 0000000000000000000000000000000000000000..37c98cc40f11f4bc7229a1276d90a952361f5131 --- /dev/null +++ b/Core/FormFactors/src/FormFactorCuboctahedron.cpp @@ -0,0 +1,139 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/src/FormFactorCuboctahedron.cpp +//! @brief Implements class FormFactorCuboctahedron. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#include "FormFactorCuboctahedron.h" +#include "FormFactorPyramid.h" +#include "StochasticDiracDelta.h" +#include "MathFunctions.h" + +FormFactorCuboctahedron::FormFactorCuboctahedron( + double half_side, double height, double height_ratio, double alpha) +{ + setName("FormFactorCuboctahedron"); + m_height = height; + m_half_side = half_side; + m_height_ratio = height_ratio; + m_alpha = alpha; + assert(m_height <= m_half_side*std::tan(m_alpha)*std::min(1.,1.0/m_height_ratio)); + init_parameters(); +} + +void FormFactorCuboctahedron::init_parameters() +{ + clearParameterPool(); + registerParameter("height", &m_height); + registerParameter("height_ratio", &m_height_ratio); + registerParameter("half_side", &m_half_side); + registerParameter("alpha", &m_alpha); +} + +FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const +{ + FormFactorCuboctahedron *result = + new FormFactorCuboctahedron(m_half_side, m_height, + m_height_ratio, m_alpha); + result->setName(getName()); + return result; +} + +complex_t FormFactorCuboctahedron::evaluate_for_q(const cvector_t& q) const +{ + double H = m_height; + double R = m_half_side; + double rh = m_height_ratio; + //double tga = std::tan(m_alpha); + + complex_t qx = q.x(); + complex_t qy = q.y(); + complex_t qz = q.z(); + + FormFactorPyramid fftop(rh*H,R, m_alpha); + complex_t ffhigh = fftop.evaluate_for_q(q); + FormFactorPyramid ffbottom(H,R, m_alpha); + cvector_t downq(qx,qy,-qz); + complex_t fflow = ffbottom.evaluate_for_q(downq); + const complex_t im(0,1); + + /* complex_t F; + if( std::abs(qx) > Numeric::double_epsilon && std::abs(qy) > Numeric::double_epsilon ) { + complex_t q1t, q2t, q3t, q4t; + q1t=(rh*H/2.)*((qx-qy)/tga + qz); + q2t=(rh*H/2.)*((qx-qy)/tga - qz); + q3t=(rh*H/2.)*((qx+qy)/tga + qz); + q4t=(rh*H/2.)*((qx+qy)/tga - qz); + complex_t K1t,K2t,K3t,K4t; + + K1t = MathFunctions::Sinc(q1t)*std::exp(im*q1t) + MathFunctions::Sinc(q2t)*std::exp(-im*q2t); + K2t = -MathFunctions::Sinc(q1t)*std::exp(im*q1t)*im + MathFunctions::Sinc(q2t)*std::exp(-im*q2t)*im; + K3t = MathFunctions::Sinc(q3t)*std::exp(im*q3t) + MathFunctions::Sinc(q4t)*std::exp(-im*q4t); + K4t = -MathFunctions::Sinc(q3t)*std::exp(im*q3t)*im + MathFunctions::Sinc(q4t)*std::exp(-im*q4t)*im; + + complex_t q1b, q2b, q3b, q4b; + q1b=(H/2.)*((qx-qy)/tga - qz); + q2b=(H/2.)*((qx-qy)/tga + qz); + q3b=(H/2.)*((qx+qy)/tga - qz); + q4b=(H/2.)*((qx+qy)/tga + qz); + complex_t K1b,K2b,K3b,K4b; + + K1b = MathFunctions::Sinc(q1b)*std::exp(im*q1b) + MathFunctions::Sinc(q2b)*std::exp(-im*q2b); + K2b = -MathFunctions::Sinc(q1b)*std::exp(im*q1b)*im + MathFunctions::Sinc(q2b)*std::exp(-im*q2b)*im; + K3b = MathFunctions::Sinc(q3b)*std::exp(im*q3b) + MathFunctions::Sinc(q4b)*std::exp(-im*q4b); + K4b = -MathFunctions::Sinc(q3b)*std::exp(im*q3b)*im + MathFunctions::Sinc(q4b)*std::exp(-im*q4b)*im; + + F = (K1t+K1b)*std::cos( (qx-qy)*R ) + (K2t+K2b)*std::sin( (qx-qy)*R ) + - (K3t+K3b)*std::cos( (qx+qy)*R) - (K4t+K4b)*std::sin( (qx+qy)*R ); + + F = F*H/(qx*qy); + } else if(std::abs(qx) <= Numeric::double_epsilon && std::abs(qy) <= Numeric::double_epsilon) { + if (std::abs(qz) <= Numeric::double_epsilon) + F = 4./3.*tga*R*R*R*( 2.- + (1. - H/R/tga)*(1. - H/R/tga)*(1. - H/R/tga) + - (1. - rh*H/R/tga)*(1. - rh*H/R/tga)*(1. - rh*H/R/tga) + ); + else + F=4.*im*( + + 2.*qz*qz*R*R - std::exp(im*rh*H*qz) + * ((-1.+im + rh*H*qz)/tga - qz*R) + *((1.+im + rh*H*qz)/tga - qz*R) + - std::exp(-im*H*qz) + * ((-1.+im - H*qz)/tga + qz*R) + *((1.+im - H*qz)/tga + qz*R) + )/std::pow(qz,3); + } else { + complex_t qxy; + if(std::abs(qy) <= Numeric::double_epsilon && std::abs(qx) > Numeric::double_epsilon) { + qxy=qx; + } else{ + qxy=qy; + } + F=(4.*(qxy*tga*(-(qxy*qxy*R) + qz*tga*(-2.0*im + qz*R*tga))*std::cos(qxy*R) - + std::exp(im*rh*H*qz)*qxy*(rh*H*std::pow(qxy,2) - qxy*qxy*R*tga - qz*(2.0*im + rh*H*qz)*std::pow(tga,2) + + std::pow(qz,2)*R*std::pow(tga,3))*std::cos(qxy*(R - rh*H/tga)) + + tga*(std::pow(qxy,2)*(1. - im*qz*R*tga) + std::pow(qz,2)*std::pow(tga,2)*(1. + im*qz*R*tga))* + std::sin(qxy*R) + im*std::exp(im*rh*H*qz)*tga* + (std::pow(qz,2)*std::pow(tga,2)*(im + rh*H*qz - qz*R*tga) + + std::pow(qxy,2)*(im - rh*H*qz + qz*R*tga))*std::sin(qxy*(R - rh*H/tga))) + + +4.*(qxy*tga*(-(qxy*qxy*R) + qz*tga*(2.0*im + qz*R*tga))*std::cos(qxy*R) - + std::exp(-im*H*qz)*qxy*(H*std::pow(qxy,2) - qxy*qxy*R*tga + qz*(2.0*im - H*qz)*std::pow(tga,2) + + std::pow(qz,2)*R*std::pow(tga,3))*std::cos(qxy*(R - H/tga)) + + tga*(std::pow(qxy,2)*(1. + im*qz*R*tga) + std::pow(qz,2)*std::pow(tga,2)*(1. - im*qz*R*tga))* + std::sin(qxy*R) + im*std::exp(-im*H*qz)*tga* + (std::pow(qz,2)*std::pow(tga,2)*(im - H*qz + qz*R*tga) + + std::pow(qxy,2)*(im + H*qz - qz*R*tga))*std::sin(qxy*(R - H/tga))) + )/(qxy*std::pow(qxy - qz*tga,2)*std::pow(qxy + qz*tga,2)); + }*/ + return std::exp(im*qz*H)*(ffhigh + fflow)/*F*/; +} diff --git a/Core/FormFactors/src/FormFactorEllipsoid.cpp b/Core/FormFactors/src/FormFactorEllipsoidalCylinder.cpp similarity index 50% rename from Core/FormFactors/src/FormFactorEllipsoid.cpp rename to Core/FormFactors/src/FormFactorEllipsoidalCylinder.cpp index dd2bfbcdb5b9c57d3f0291eae5676d64d8b2b6ca..ae8fb5ce5a0694b53dac0be56a9cfa91b877a145 100644 --- a/Core/FormFactors/src/FormFactorEllipsoid.cpp +++ b/Core/FormFactors/src/FormFactorEllipsoidalCylinder.cpp @@ -2,8 +2,8 @@ // // BornAgain: simulate and fit scattering at grazing incidence // -//! @file FormFactors/src/FormFactorEllipsoid.cpp -//! @brief Implements class FormFactorEllipsoid. +//! @file FormFactors/src/FormFactorEllipsoidalCylinder.cpp +//! @brief Implements class FormFactorEllipsoidalCylinder. //! //! @homepage http://apps.jcns.fz-juelich.de/BornAgain //! @license GNU General Public License v3 or higher (see COPYING) @@ -13,49 +13,46 @@ // // ************************************************************************** // -#include "FormFactorEllipsoid.h" +#include "FormFactorEllipsoidalCylinder.h" #include "MathFunctions.h" -FormFactorEllipsoid::FormFactorEllipsoid(double radius, double width, - double height, double alpha) +FormFactorEllipsoidalCylinder::FormFactorEllipsoidalCylinder(double radius, + double width, + double height) { - setName("FormFactorEllipsoid"); + setName("FormFactorEllipsoidalCylinder"); m_height = height; m_radius = radius; m_width = width; - m_alpha = alpha; init_parameters(); } -FormFactorEllipsoid* FormFactorEllipsoid::clone() const +FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const { - return new FormFactorEllipsoid(m_radius, m_width, m_height, m_alpha ); + return new FormFactorEllipsoidalCylinder(m_radius, m_width, m_height); } -complex_t FormFactorEllipsoid::evaluate_for_q(const cvector_t& q) const +complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(const cvector_t& q) const { complex_t qxR = q.x()*m_radius; complex_t qyW = q.y()*m_width; complex_t qzHdiv2 = q.z()*m_height/2.0; - complex_t phase_factor = std::exp(complex_t(0.0, 1.0)*qzHdiv2); - + complex_t Fz = std::exp(complex_t(0.0, 1.0)*qzHdiv2) + *MathFunctions::Sinc(qzHdiv2); complex_t gamma = std::sqrt((qxR)*(qxR) + (qyW)*(qyW)); - complex_t J1_gamma_div_gamma = std::abs(gamma) > Numeric::double_epsilon ? - MathFunctions::Bessel_J1(std::abs(gamma))/gamma : - 0.5; + complex_t J1_gamma_div_gamma = MathFunctions::Bessel_C1(std::abs(gamma)); + + return 2.*M_PI *m_radius*m_width*m_height * Fz*J1_gamma_div_gamma; - return M_PI * getVolume() * phase_factor * - J1_gamma_div_gamma * MathFunctions::Sinc(qzHdiv2); } -void FormFactorEllipsoid::init_parameters() +void FormFactorEllipsoidalCylinder::init_parameters() { clearParameterPool(); registerParameter("radius", &m_radius); registerParameter("width", & m_width); registerParameter("height", &m_height); - registerParameter("alpha" , &m_alpha); } diff --git a/Core/FormFactors/src/FormFactorFullSpheroid.cpp b/Core/FormFactors/src/FormFactorFullSpheroid.cpp index 7e44a8b499e97d982c555e69c5aff8c957711387..5c9460f7ab6f5ace7bff1194f1a99be3ea717abc 100644 --- a/Core/FormFactors/src/FormFactorFullSpheroid.cpp +++ b/Core/FormFactors/src/FormFactorFullSpheroid.cpp @@ -16,8 +16,9 @@ #include "FormFactorFullSpheroid.h" #include "StochasticDiracDelta.h" #include "MathFunctions.h" -//#include "Numeric.h" +#include "Numeric.h" #include "MemberFunctionIntegrator.h" +#include "MemberComplexFunctionIntegrator.h" FormFactorFullSpheroid::FormFactorFullSpheroid(double radius, double height ) { @@ -25,6 +26,11 @@ FormFactorFullSpheroid::FormFactorFullSpheroid(double radius, double height ) m_radius = radius; m_height = height; init_parameters(); + + MemberComplexFunctionIntegrator<FormFactorFullSpheroid>::mem_function p_mf = + & FormFactorFullSpheroid::Integrand; + m_integrator = + new MemberComplexFunctionIntegrator<FormFactorFullSpheroid>(p_mf, this); } void FormFactorFullSpheroid::init_parameters() @@ -42,57 +48,41 @@ FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const return result; } +//! Integrand for complex formfactor. +complex_t FormFactorFullSpheroid::Integrand(double Z, void* params) const +{ + (void)params; // to avoid unused-variable warning + double R = m_radius; + double H = m_height; + + double Rz = R*std::sqrt(1-4.0*Z*Z/(H*H)); + complex_t qrRz = m_q.magxy()*Rz; + + complex_t J1_qrRz_div_qrRz = MathFunctions::Bessel_C1(std::abs(qrRz)); + + return Rz*Rz* J1_qrRz_div_qrRz *std::cos(m_q.z()*Z); +} + complex_t FormFactorFullSpheroid::evaluate_for_q(const cvector_t& q) const { double H = m_height; double R = m_radius; - //m_q = q; - - complex_t qz = q.z(); - complex_t qx = q.x(); - complex_t qy = q.y(); - complex_t qzH_half = qz*H/2.0; - complex_t iqzH_half = complex_t(0.0, 1.0)*qzH_half; - complex_t a_part = std::exp(iqzH_half); - - /*MemberFunctionIntegrator<FormFactorFullSpheroid>::mem_function p_mf = - & FormFactorFullSpheroid::FullSpheroidIntegral; - MemberFunctionIntegrator<FormFactorFullSpheroid> integrator(p_mf,this);*/ - - if (std::abs(qx) <= Numeric::double_epsilon - && std::abs(qy) <= Numeric::double_epsilon - && std::abs(qz) <= Numeric::double_epsilon) - { + m_q = q; + + if (std::abs(m_q.mag()) <= Numeric::double_epsilon) { + return 2.*M_PI*R*R*H/3.; - } - else { - double radial = 0.;//integrator.integrate(0.0, H/2.0, (void *)0); - return a_part * radial; + } else { + + complex_t qzH_half = m_q.z()*H/2.0; + complex_t z_part = std::exp(complex_t(0.0, 1.0)*qzH_half); + + return 4.0* M_PI * z_part *m_integrator->integrate(0.0, H/2.0); + } } -//! Integrand. -/*double FormFactorFullSpheroid::FullSpheroidIntegral( - double Z, void* params) const -{ - (void)params; - - double R = m_radius; - double H = m_height; - m_q = q; - complex_t qz = m_q.z(); - complex_t qx = m_q.x(); - complex_t qy = m_q.y(); - - double Rz = std::abs(R* std::sqrt(1-((4*Z*Z)/(H*H)))); - double qrRz = std::abs(std::sqrt((qx)*(qx) + (qy)*(qy))*Rz); - - double J1_qrRz_div_qrRz = std::abs(qrRz) > Numeric::double_epsilon ? - MathFunctions::Bessel_J1(std::abs(qrRz))/qrRz : - 0.5; - return 4.0* M_PI *Rz*Rz* J1_qrRz_div_qrRz * std::cos(qz.real()*Z);*/ -//} diff --git a/Core/FormFactors/src/FormFactorHemiEllipsoid.cpp b/Core/FormFactors/src/FormFactorHemiEllipsoid.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0f5791646a92b2134580e2b696a1435200abc0e3 --- /dev/null +++ b/Core/FormFactors/src/FormFactorHemiEllipsoid.cpp @@ -0,0 +1,98 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/src/FormFactorHemiEllipsoid.cpp +//! @brief Implements class FormFactorHemiEllipsoid. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#include "FormFactorHemiEllipsoid.h" +#include "StochasticDiracDelta.h" +#include "MathFunctions.h" +#include "Numeric.h" +#include <cmath> +#include "MemberFunctionIntegrator.h" +#include "MemberComplexFunctionIntegrator.h" + +FormFactorHemiEllipsoid::FormFactorHemiEllipsoid( + double radius_a, double radius_b, double height) +{ + setName("FormFactorHemiEllipsoid"); + m_radius_a = radius_a; + m_radius_b = radius_b; + m_height = height; + init_parameters(); + + MemberComplexFunctionIntegrator<FormFactorHemiEllipsoid>::mem_function p_mf = + & FormFactorHemiEllipsoid::Integrand; + m_integrator = + new MemberComplexFunctionIntegrator<FormFactorHemiEllipsoid>(p_mf, this); +} + +void FormFactorHemiEllipsoid::init_parameters() +{ + clearParameterPool(); + registerParameter("radius_a", &m_radius_a); + registerParameter("radius_b", & m_radius_b); + registerParameter("height", &m_height); + +} + +FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const +{ + FormFactorHemiEllipsoid* result = + new FormFactorHemiEllipsoid(m_radius_a, m_radius_b, m_height); + result->setName(getName()); + return result; +} + +//! Integrand for complex formfactor. +complex_t FormFactorHemiEllipsoid::Integrand(double Z, void* params) const +{ + (void)params; + double R = m_radius_a; + double W = m_radius_b; + double H = m_height; + + double Rz = R* std::sqrt(1.0 - Z*Z/(H*H)); + double Wz = W* std::sqrt(1.0 - Z*Z/(H*H)); + + complex_t qxRz = m_q.x()*Rz; + complex_t qyWz = m_q.y()*Wz; + + complex_t gamma = std::sqrt (qxRz*qxRz + qyWz*qyWz); + complex_t J1_gamma_div_gamma = MathFunctions::Bessel_C1(std::abs(gamma)); + complex_t exp_imag = std::exp(complex_t(0.0,1.0)*m_q.z()*Z); + + return Rz * Wz * J1_gamma_div_gamma *exp_imag; + +} + +//! Complex formfactor. + +complex_t FormFactorHemiEllipsoid::evaluate_for_q(const cvector_t& q) const +{ + m_q = q; + double R = m_radius_a; + double W = m_radius_b; + double H = m_height; + + if (std::abs(m_q.mag()) <= Numeric::double_epsilon) { + + return 2.0*M_PI*R*W*H/3.; + + } else { + + return 2.0*M_PI*m_integrator->integrate(0.,H ); + } +} + + + diff --git a/Core/FormFactors/src/FormFactorHemiSpheroid.cpp b/Core/FormFactors/src/FormFactorHemiSpheroid.cpp deleted file mode 100644 index 314a085d61ccb920d59deb3f3095b600c1649eac..0000000000000000000000000000000000000000 --- a/Core/FormFactors/src/FormFactorHemiSpheroid.cpp +++ /dev/null @@ -1,132 +0,0 @@ -// ************************************************************************** // -// -// BornAgain: simulate and fit scattering at grazing incidence -// -//! @file FormFactors/src/FormFactorHemiSpheroid.cpp -//! @brief Implements class FormFactorHemiSpheroid. -//! -//! @homepage http://apps.jcns.fz-juelich.de/BornAgain -//! @license GNU General Public License v3 or higher (see COPYING) -//! @copyright Forschungszentrum Jülich GmbH 2013 -//! @authors Scientific Computing Group at MLZ Garching -//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke -// -// ************************************************************************** // - -#include "FormFactorHemiSpheroid.h" -#include "StochasticDiracDelta.h" -#include "MathFunctions.h" -#include "Numeric.h" -#include "Units.h" -#include "Exceptions.h" -#include <iostream> -#include "MemberFunctionIntegrator.h" - -FormFactorHemiSpheroid::FormFactorHemiSpheroid( - double radius, double width, double height) -{ - setName("FormFactorHemiSpheroid"); - m_radius = radius; - m_width = width; - m_height = height; - init_parameters(); -} - -//! Registers some class members for later access via parameter pool. - -void FormFactorHemiSpheroid::init_parameters() -{ - clearParameterPool(); - registerParameter("radius", &m_radius); - registerParameter("width", & m_width); - registerParameter("height", &m_height); -} - -FormFactorHemiSpheroid* FormFactorHemiSpheroid::clone() const -{ - FormFactorHemiSpheroid* result = - new FormFactorHemiSpheroid(m_radius, m_width, m_height); - result->setName(getName()); - return result; -} - -//! Real part of the integral. - -double FormFactorHemiSpheroid::evaluate_for_q_real() const -{ - double H = m_height; - MemberFunctionIntegrator<FormFactorHemiSpheroid>::mem_function p_mf = - & FormFactorHemiSpheroid::HemiSpheroidIntegralReal; - MemberFunctionIntegrator<FormFactorHemiSpheroid> integrator(p_mf,this); - return integrator.integrate(0, H, (void *)0); -} - -//! Integrand for real part. - -double FormFactorHemiSpheroid::HemiSpheroidIntegralReal( - double Z, void* params) const -{ - (void)params; - double R = m_radius; - double W = m_height; - double H = m_height; - - complex_t qz = m_q.z(); - complex_t qx = m_q.x(); - complex_t qy = m_q.y(); - - double Wz = W * std::sqrt(1-((Z*Z)/(H*H))); - double Rz = R * std::sqrt(1-((Z*Z)/(H*H))); - double gamma = (std::sqrt ((( qx*Rz)*(qx*Rz)) + ((qy*Wz)*(qy*Wz)))).real(); - double J1_gamma_div_gamma = std::abs(gamma) > Numeric::double_epsilon ? - MathFunctions::Bessel_J1(std::abs(gamma))/gamma : - 0.5; - double exp_real = std::exp(complex_t(0.0, 1.0)*qz*Z).real(); - return Rz *Wz * J1_gamma_div_gamma * exp_real; -} - -//! Imaginary part of the integral. - -double FormFactorHemiSpheroid::evaluate_for_q_imag() const -{ - double H = m_height; - MemberFunctionIntegrator<FormFactorHemiSpheroid>::mem_function p_mf = - & FormFactorHemiSpheroid::HemiSpheroidIntegralImaginary; - MemberFunctionIntegrator<FormFactorHemiSpheroid> integrator(p_mf,this); - return integrator.integrate(0, H, (void *)0); -} - -//! Integrand for imaginary part. - -double FormFactorHemiSpheroid::HemiSpheroidIntegralImaginary( - double Z, void* params) const -{ - (void)params; - double R = m_radius; - double W = m_height; - double H = m_height; - - complex_t qx = m_q.x(); - complex_t qy = m_q.y(); - complex_t qz = m_q.z(); - - double Wz = W * std::sqrt(1-((Z*Z)/(H*H))); - double Rz = R * std::sqrt(1-((Z*Z)/(H*H))); - double gamma = (std::sqrt ((( qx*Rz)*(qx*Rz)) + ((qy*Wz)*(qy*Wz)))).real(); - double J1_gamma_div_gamma = std::abs(gamma) > Numeric::double_epsilon ? - MathFunctions::Bessel_J1(std::abs(gamma))/gamma : - 0.5; - double exp_imag = std::exp(complex_t(0.0,1.0)*qz*Z).imag(); - return Rz *Wz * J1_gamma_div_gamma * exp_imag; -} - -//! Complex formfactor (sum of the two integrals). - -complex_t FormFactorHemiSpheroid::evaluate_for_q(const cvector_t& q) const -{ - m_q = q; - return 2*M_PI*complex_t(0.0, 1.0)*evaluate_for_q_imag() + - 2*M_PI*evaluate_for_q_real(); -} - - diff --git a/Core/FormFactors/src/FormFactorPrism6.cpp b/Core/FormFactors/src/FormFactorPrism6.cpp index 1dbb1d51cfc91d55b034a6ead29f606233b1bfa0..90eca953588bd9f2f5c2d705f5b60e86fc2f898f 100644 --- a/Core/FormFactors/src/FormFactorPrism6.cpp +++ b/Core/FormFactors/src/FormFactorPrism6.cpp @@ -53,7 +53,9 @@ complex_t FormFactorPrism6::evaluate_for_q(const cvector_t& q) const complex_t xy_part = complex_t(0.0, 0.0); if (std::abs(q.x())==0.0 && std::abs(q.y())==0.0) { + xy_part = 3.*m_root3/2.*R*R; + } else { if (std::abs(3.0*q.y()*q.y()-q.x()*q.x())==0.0) { @@ -63,6 +65,7 @@ complex_t FormFactorPrism6::evaluate_for_q(const cvector_t& q) const MathFunctions::Sinc(qyRr3_half) + 2.0*std::cos(qyRr3_half) ); + } else { complex_t qxR_half = (q.x()*R)/2.0; diff --git a/Core/FormFactors/src/FormFactorPyramid.cpp b/Core/FormFactors/src/FormFactorPyramid.cpp index 562408687ae07425d508d4eea8b9ec0c8228f6c1..a2a317204af0ff04c0b7da4a501aa8ff8d85a712 100644 --- a/Core/FormFactors/src/FormFactorPyramid.cpp +++ b/Core/FormFactors/src/FormFactorPyramid.cpp @@ -24,6 +24,7 @@ FormFactorPyramid::FormFactorPyramid( m_height = height; m_half_side = half_side; m_alpha = alpha; + assert(m_height <= m_half_side*std::tan(m_alpha)); init_parameters(); } diff --git a/Core/FormFactors/src/FormFactorSpheroid.cpp b/Core/FormFactors/src/FormFactorSpheroid.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c63541cb3ed93abc2340df2faa65828df0cbc6e4 --- /dev/null +++ b/Core/FormFactors/src/FormFactorSpheroid.cpp @@ -0,0 +1,90 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file FormFactors/src/FormFactorSpheroid.cpp +//! @brief Implements class FormFactorSpheroid. +//! +//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + +#include "FormFactorSpheroid.h" +#include "StochasticDiracDelta.h" +#include "MathFunctions.h" +#include "Numeric.h" +#include "MemberFunctionIntegrator.h" +#include "MemberComplexFunctionIntegrator.h" + +FormFactorSpheroid::FormFactorSpheroid(double radius, double height, double height_flattening) +{ + setName("FormFactorSpheroid"); + m_radius = radius; + m_height = height; + m_height_flattening = height_flattening; + assert(m_height <= 2.*m_radius*m_height_flattening); + init_parameters(); + + MemberComplexFunctionIntegrator<FormFactorSpheroid>::mem_function p_mf = + & FormFactorSpheroid::Integrand; + m_integrator = + new MemberComplexFunctionIntegrator<FormFactorSpheroid>(p_mf, this); + } + +void FormFactorSpheroid::init_parameters() +{ + clearParameterPool(); + registerParameter("radius", &m_radius); + registerParameter("height", &m_height); + registerParameter("height_flattening", &m_height_flattening); +} + +FormFactorSpheroid* FormFactorSpheroid::clone() const +{ + FormFactorSpheroid* result = + new FormFactorSpheroid(m_radius, m_height, m_height_flattening); + result->setName(getName()); + return result; +} + +//! Integrand for complex formfactor. +complex_t FormFactorSpheroid::Integrand(double Z, void* params) const +{ + (void)params; // to avoid unused-variable warning + double R = m_radius; + double fp = m_height_flattening; + + double Rz = std::sqrt(R*R-Z*Z/(fp*fp)); + complex_t qrRz = m_q.magxy()*Rz; + complex_t J1_qrRz_div_qrRz = MathFunctions::Bessel_C1(std::abs(qrRz)); + + return Rz * Rz * J1_qrRz_div_qrRz * std::exp(complex_t(0.0,1.0)*m_q.z()*Z); +} + +complex_t FormFactorSpheroid::evaluate_for_q(const cvector_t& q) const +{ + double H = m_height; + double R = m_radius; + double fp = m_height_flattening; + m_q = q; + + if (std::abs(m_q.mag()) <= Numeric::double_epsilon) { + + return M_PI*R*H/fp*(1.-H/(3.*fp*R)); + + } else { + + complex_t z_part = std::exp(complex_t(0.0, 1.0)*(H-fp*R)); + + return 2.0* M_PI * z_part *m_integrator->integrate(fp*R-H,fp*R ); + } +} + + + + + diff --git a/Core/FormFactors/src/FormFactorTetrahedron.cpp b/Core/FormFactors/src/FormFactorTetrahedron.cpp index a7e245e60e8cdba2a5c89ac6b5e624f0b511901f..474415844ecbcb1ff3f8469f224f69ec8a500870 100644 --- a/Core/FormFactors/src/FormFactorTetrahedron.cpp +++ b/Core/FormFactors/src/FormFactorTetrahedron.cpp @@ -25,12 +25,9 @@ FormFactorTetrahedron::FormFactorTetrahedron( m_half_side = half_side; m_alpha = alpha; m_root3 = std::sqrt(3.0); + assert(m_root3 * m_height <= m_half_side*std::tan(m_alpha) ); init_parameters(); - /* MemberComplexFunctionIntegrator<FormFactorTetrahedron>::mem_function p_mf = - & FormFactorTetrahedron::Integrand; - m_integrator = - new MemberComplexFunctionIntegrator<FormFactorTetrahedron>(p_mf, this);*/ } void FormFactorTetrahedron::init_parameters() @@ -50,41 +47,6 @@ FormFactorTetrahedron* FormFactorTetrahedron::clone() const } -//! Integrand for complex formfactor. -/*complex_t FormFactorTetrahedron::Integrand(double Z, void* params) const -{ - (void)params; // to avoid unused-variable warning - double Rz = m_half_side -Z*m_root3/std::tan(m_alpha); - complex_t r3qyR = m_root3*m_q.y()*Rz; - complex_t qxR = m_q.x()*Rz; - - return (std::exp(complex_t(0.0, 1.0)*r3qyR) - - std::cos(qxR)-complex_t(0.0, 1.0)*r3qyR* - MathFunctions::Sinc(qxR)) - *std::exp(complex_t(0.0, 1.0)*(m_q.z()*Z-m_q.y()*Rz/m_root3)); - -}*/ - -//! Complex formfactor. - -/*complex_t FormFactorTetrahedron::evaluate_for_q(const cvector_t& q) const -{ m_q = q; - double H = m_height; - double R = m_half_side; - double tga = std::tan(m_alpha); - - if ( std::abs(m_q.mag()) < Numeric::double_epsilon) { - double sqrt3HdivRtga = m_root3*H/R/tga; - return tga/3.*R*R*R*(1. - - (1.-sqrt3HdivRtga)*(1.-sqrt3HdivRtga)*(1.-sqrt3HdivRtga)); - } - else { - complex_t integral = m_integrator->integrate(0., H); - return 2.0*m_root3/(q.x()*q.x()-3.0*q.y()*q.y())*integral; - } -}*/ - - complex_t FormFactorTetrahedron::evaluate_for_q(const cvector_t& q) const { double H = m_height; @@ -113,8 +75,7 @@ complex_t FormFactorTetrahedron::evaluate_for_q(const cvector_t& q) const double sqrt3HdivRtga = m_root3*H/R/tga; F = tga/3.*R*R*R*(1. - (1.-sqrt3HdivRtga)*(1.-sqrt3HdivRtga)*(1.-sqrt3HdivRtga)); - } - else { + } else { //qx=qy=0 qz!=0 complex_t qzH_half = qz*H/2.0; F = m_root3*H*std::exp(im*qzH_half)*( @@ -131,8 +92,7 @@ complex_t FormFactorTetrahedron::evaluate_for_q(const cvector_t& q) const std::exp(-im*q2*L)*MathFunctions::Sinc(q2*H) - std::exp(im*q3*L)*MathFunctions::Sinc(q3*H)) ; } - } - else { + } else { // qx!=0 if (std::abs(qx*qx-3.0*qy*qy)==0.0) { // qx**2= 3qy**2 @@ -143,8 +103,7 @@ complex_t FormFactorTetrahedron::evaluate_for_q(const cvector_t& q) const - 3.0*qy*std::exp(-im*2.0*q3*H)/(q3*tga) - std::exp(im*qa*H-im*2.0*m_root3*qy*R)*MathFunctions::Sinc(qa*H) )/(2.0*qx*qx); - } - else { + } else { //Formula Isgisaxs /* complex_t qc1 = 2./m_root3*qx; complex_t qc2 = qx/m_root3 + qy; diff --git a/Core/PythonAPI/inc/FormFactorEllipsoid.pypp.h b/Core/PythonAPI/inc/FormFactorEllipsoid.pypp.h deleted file mode 100644 index e09e368c1ad264e1006797ca47138943eee8df3a..0000000000000000000000000000000000000000 --- a/Core/PythonAPI/inc/FormFactorEllipsoid.pypp.h +++ /dev/null @@ -1,11 +0,0 @@ -// This file has been generated by Py++. - -// BornAgain: simulate and fit scattering at grazing incidence -//! @brief automatically generated boost::python code for PythonCoreAPI - -#ifndef FormFactorEllipsoid_hpp__pyplusplus_wrapper -#define FormFactorEllipsoid_hpp__pyplusplus_wrapper - -void register_FormFactorEllipsoid_class(); - -#endif//FormFactorEllipsoid_hpp__pyplusplus_wrapper diff --git a/Core/PythonAPI/inc/FormFactorHemiSpheroid.pypp.h b/Core/PythonAPI/inc/FormFactorHemiSpheroid.pypp.h deleted file mode 100644 index 89657061d32a413409d1555c230646908b3a1de9..0000000000000000000000000000000000000000 --- a/Core/PythonAPI/inc/FormFactorHemiSpheroid.pypp.h +++ /dev/null @@ -1,11 +0,0 @@ -// This file has been generated by Py++. - -// BornAgain: simulate and fit scattering at grazing incidence -//! @brief automatically generated boost::python code for PythonCoreAPI - -#ifndef FormFactorHemiSpheroid_hpp__pyplusplus_wrapper -#define FormFactorHemiSpheroid_hpp__pyplusplus_wrapper - -void register_FormFactorHemiSpheroid_class(); - -#endif//FormFactorHemiSpheroid_hpp__pyplusplus_wrapper diff --git a/Core/PythonAPI/inc/PythonCoreList.h b/Core/PythonAPI/inc/PythonCoreList.h index 4ec09c90d504d2522ed9f9933676e6a91a7332ea..884d36197f74fed56aa4b8693f60120e219c7e53 100644 --- a/Core/PythonAPI/inc/PythonCoreList.h +++ b/Core/PythonAPI/inc/PythonCoreList.h @@ -12,16 +12,19 @@ #include "Crystal.h" #include "DiffuseParticleInfo.h" #include "FTDistributions.h" +#include "FormFactorAnisoPyramid.h" #include "FormFactorBox.h" #include "FormFactorCone.h" +#include "FormFactorCone6.h" #include "FormFactorCrystal.h" +#include "FormFactorCuboctahedron.h" #include "FormFactorCylinder.h" #include "FormFactorDecoratorDebyeWaller.h" -#include "FormFactorEllipsoid.h" +#include "FormFactorEllipsoidalCylinder.h" #include "FormFactorFullSphere.h" #include "FormFactorFullSpheroid.h" #include "FormFactorGauss.h" -#include "FormFactorHemiSpheroid.h" +#include "FormFactorHemiEllipsoid.h" #include "FormFactorLorentz.h" #include "FormFactorParallelepiped.h" #include "FormFactorPrism3.h" @@ -29,6 +32,7 @@ #include "FormFactorPyramid.h" #include "FormFactorSphere.h" #include "FormFactorSphereGaussianRadius.h" +#include "FormFactorSpheroid.h" #include "HomogeneousMaterial.h" #include "ICloneable.h" #include "IClusteredParticles.h" diff --git a/Core/PythonAPI/src/FormFactorCone.pypp.cpp b/Core/PythonAPI/src/FormFactorCone.pypp.cpp index 5fe32ad9e00d2e7cdc863c87edc6122b409fda88..00cffae4b01bf0b74fcd478b3a07cc237ce31d7a 100644 --- a/Core/PythonAPI/src/FormFactorCone.pypp.cpp +++ b/Core/PythonAPI/src/FormFactorCone.pypp.cpp @@ -229,16 +229,16 @@ struct FormFactorCone_wrapper : FormFactorCone, bp::wrapper< FormFactorCone > { return ISample::getCompositeSample( ); } - virtual ::ICompositeSample const * getCompositeSample( ) const { - if( bp::override func_getCompositeSample = this->get_override( "getCompositeSample" ) ) - return func_getCompositeSample( ); + virtual double getRadius( ) const { + if( bp::override func_getRadius = this->get_override( "getRadius" ) ) + return func_getRadius( ); else{ - return this->ISample::getCompositeSample( ); + return this->IFormFactor::getRadius( ); } } - ::ICompositeSample const * default_getCompositeSample( ) const { - return ISample::getCompositeSample( ); + double default_getRadius( ) const { + return IFormFactor::getRadius( ); } virtual double getVolume( ) const { @@ -538,16 +538,15 @@ void register_FormFactorCone_class(){ , bp::return_value_policy< bp::reference_existing_object >() ); } - { //::ISample::getCompositeSample + { //::IFormFactor::getRadius - typedef ::ICompositeSample const * ( ::ISample::*getCompositeSample_function_type )( ) const; - typedef ::ICompositeSample const * ( FormFactorCone_wrapper::*default_getCompositeSample_function_type )( ) const; + typedef double ( ::IFormFactor::*getRadius_function_type )( ) const; + typedef double ( FormFactorCone_wrapper::*default_getRadius_function_type )( ) const; FormFactorCone_exposer.def( - "getCompositeSample" - , getCompositeSample_function_type(&::ISample::getCompositeSample) - , default_getCompositeSample_function_type(&FormFactorCone_wrapper::default_getCompositeSample) - , bp::return_value_policy< bp::reference_existing_object >() ); + "getRadius" + , getRadius_function_type(&::IFormFactor::getRadius) + , default_getRadius_function_type(&FormFactorCone_wrapper::default_getRadius) ); } { //::IFormFactorBorn::getVolume diff --git a/Core/PythonAPI/src/FormFactorFullSpheroid.pypp.cpp b/Core/PythonAPI/src/FormFactorFullSpheroid.pypp.cpp index b3a83831d32b615e9624284ee8bf87dcf2cef50e..cb9c15a1ba43929d013c0e440f3d7c3d9d6c84bf 100644 --- a/Core/PythonAPI/src/FormFactorFullSpheroid.pypp.cpp +++ b/Core/PythonAPI/src/FormFactorFullSpheroid.pypp.cpp @@ -121,18 +121,6 @@ struct FormFactorFullSpheroid_wrapper : FormFactorFullSpheroid, bp::wrapper< For return ISample::cloneInvertB( ); } - virtual bool containsMagneticMaterial( ) const { - if( bp::override func_containsMagneticMaterial = this->get_override( "containsMagneticMaterial" ) ) - return func_containsMagneticMaterial( ); - else{ - return this->ISample::containsMagneticMaterial( ); - } - } - - bool default_containsMagneticMaterial( ) const { - return ISample::containsMagneticMaterial( ); - } - virtual void createDistributedFormFactors( ::std::vector< IFormFactor* > & form_factors, ::std::vector< double > & probabilities, ::size_t nbr_samples ) const { if( bp::override func_createDistributedFormFactors = this->get_override( "createDistributedFormFactors" ) ) func_createDistributedFormFactors( boost::ref(form_factors), boost::ref(probabilities), nbr_samples ); @@ -169,18 +157,6 @@ struct FormFactorFullSpheroid_wrapper : FormFactorFullSpheroid, bp::wrapper< For return IFormFactorBorn::evaluate( boost::ref(k_i), boost::ref(k_f_bin), alpha_f_bin ); } - virtual ::ICompositeSample * getCompositeSample( ) { - if( bp::override func_getCompositeSample = this->get_override( "getCompositeSample" ) ) - return func_getCompositeSample( ); - else{ - return this->ISample::getCompositeSample( ); - } - } - - ::ICompositeSample * default_getCompositeSample( ) { - return ISample::getCompositeSample( ); - } - virtual ::ICompositeSample const * getCompositeSample( ) const { if( bp::override func_getCompositeSample = this->get_override( "getCompositeSample" ) ) return func_getCompositeSample( ); @@ -260,6 +236,18 @@ struct FormFactorFullSpheroid_wrapper : FormFactorFullSpheroid, bp::wrapper< For } } + virtual int setMatchedParametersValue( ::std::string const & wildcards, double value ) { + if( bp::override func_setMatchedParametersValue = this->get_override( "setMatchedParametersValue" ) ) + return func_setMatchedParametersValue( wildcards, value ); + else{ + return this->IParameterized::setMatchedParametersValue( wildcards, value ); + } + } + + int default_setMatchedParametersValue( ::std::string const & wildcards, double value ) { + return IParameterized::setMatchedParametersValue( wildcards, value ); + } + virtual bool setParameterValue( ::std::string const & name, double value ) { if( bp::override func_setParameterValue = this->get_override( "setParameterValue" ) ) return func_setParameterValue( name, value ); @@ -382,17 +370,6 @@ void register_FormFactorFullSpheroid_class(){ , default_cloneInvertB_function_type(&FormFactorFullSpheroid_wrapper::default_cloneInvertB) , bp::return_value_policy< bp::reference_existing_object >() ); - } - { //::ISample::containsMagneticMaterial - - typedef bool ( ::ISample::*containsMagneticMaterial_function_type )( ) const; - typedef bool ( FormFactorFullSpheroid_wrapper::*default_containsMagneticMaterial_function_type )( ) const; - - FormFactorFullSpheroid_exposer.def( - "containsMagneticMaterial" - , containsMagneticMaterial_function_type(&::ISample::containsMagneticMaterial) - , default_containsMagneticMaterial_function_type(&FormFactorFullSpheroid_wrapper::default_containsMagneticMaterial) ); - } { //::IFormFactor::createDistributedFormFactors @@ -430,18 +407,6 @@ void register_FormFactorFullSpheroid_class(){ , default_evaluate_function_type(&FormFactorFullSpheroid_wrapper::default_evaluate) , ( bp::arg("k_i"), bp::arg("k_f_bin"), bp::arg("alpha_f_bin") ) ); - } - { //::ISample::getCompositeSample - - typedef ::ICompositeSample * ( ::ISample::*getCompositeSample_function_type )( ) ; - typedef ::ICompositeSample * ( FormFactorFullSpheroid_wrapper::*default_getCompositeSample_function_type )( ) ; - - FormFactorFullSpheroid_exposer.def( - "getCompositeSample" - , getCompositeSample_function_type(&::ISample::getCompositeSample) - , default_getCompositeSample_function_type(&FormFactorFullSpheroid_wrapper::default_getCompositeSample) - , bp::return_value_policy< bp::reference_existing_object >() ); - } { //::ISample::getCompositeSample @@ -508,6 +473,18 @@ void register_FormFactorFullSpheroid_class(){ , default_registerParameter_function_type( &FormFactorFullSpheroid_wrapper::default_registerParameter ) , ( bp::arg("inst"), bp::arg("name"), bp::arg("parpointer") ) ); + } + { //::IParameterized::setMatchedParametersValue + + typedef int ( ::IParameterized::*setMatchedParametersValue_function_type )( ::std::string const &,double ) ; + typedef int ( FormFactorFullSpheroid_wrapper::*default_setMatchedParametersValue_function_type )( ::std::string const &,double ) ; + + FormFactorFullSpheroid_exposer.def( + "setMatchedParametersValue" + , setMatchedParametersValue_function_type(&::IParameterized::setMatchedParametersValue) + , default_setMatchedParametersValue_function_type(&FormFactorFullSpheroid_wrapper::default_setMatchedParametersValue) + , ( bp::arg("wildcards"), bp::arg("value") ) ); + } { //::IParameterized::setParameterValue diff --git a/Core/PythonAPI/src/FormFactorPrism6.pypp.cpp b/Core/PythonAPI/src/FormFactorPrism6.pypp.cpp index dd3e63a4275846721bf5f0f2ee04f19967d9c573..ed73b5040a9197268dcab9911e53698f8b378fc2 100644 --- a/Core/PythonAPI/src/FormFactorPrism6.pypp.cpp +++ b/Core/PythonAPI/src/FormFactorPrism6.pypp.cpp @@ -205,16 +205,16 @@ struct FormFactorPrism6_wrapper : FormFactorPrism6, bp::wrapper< FormFactorPrism return ISample::getCompositeSample( ); } - virtual ::ICompositeSample const * getCompositeSample( ) const { - if( bp::override func_getCompositeSample = this->get_override( "getCompositeSample" ) ) - return func_getCompositeSample( ); + virtual double getRadius( ) const { + if( bp::override func_getRadius = this->get_override( "getRadius" ) ) + return func_getRadius( ); else{ - return this->ISample::getCompositeSample( ); + return this->IFormFactor::getRadius( ); } } - ::ICompositeSample const * default_getCompositeSample( ) const { - return ISample::getCompositeSample( ); + double default_getRadius( ) const { + return IFormFactor::getRadius( ); } virtual double getVolume( ) const { @@ -491,16 +491,15 @@ void register_FormFactorPrism6_class(){ , bp::return_value_policy< bp::reference_existing_object >() ); } - { //::ISample::getCompositeSample + { //::IFormFactor::getRadius - typedef ::ICompositeSample const * ( ::ISample::*getCompositeSample_function_type )( ) const; - typedef ::ICompositeSample const * ( FormFactorPrism6_wrapper::*default_getCompositeSample_function_type )( ) const; + typedef double ( ::IFormFactor::*getRadius_function_type )( ) const; + typedef double ( FormFactorPrism6_wrapper::*default_getRadius_function_type )( ) const; FormFactorPrism6_exposer.def( - "getCompositeSample" - , getCompositeSample_function_type(&::ISample::getCompositeSample) - , default_getCompositeSample_function_type(&FormFactorPrism6_wrapper::default_getCompositeSample) - , bp::return_value_policy< bp::reference_existing_object >() ); + "getRadius" + , getRadius_function_type(&::IFormFactor::getRadius) + , default_getRadius_function_type(&FormFactorPrism6_wrapper::default_getRadius) ); } { //::IFormFactorBorn::getVolume diff --git a/Core/PythonAPI/src/PythonModule.cpp b/Core/PythonAPI/src/PythonModule.cpp index a398f4bb3f6acf338851e974ca1bb214fc3a3c05..ca90597c290f8affd769cbf175b7195d501d03c4 100644 --- a/Core/PythonAPI/src/PythonModule.cpp +++ b/Core/PythonAPI/src/PythonModule.cpp @@ -10,18 +10,21 @@ #include "Bin1D.pypp.h" #include "Bin1DCVector.pypp.h" #include "Crystal.pypp.h" +#include "cvector_t.pypp.h" #include "Detector.pypp.h" -#include "FTDistribution2DCauchy.pypp.h" +#include "FormFactorAnisoPyramid.pypp.h" #include "FormFactorBox.pypp.h" #include "FormFactorCone.pypp.h" +#include "FormFactorCone6.pypp.h" #include "FormFactorCrystal.pypp.h" +#include "FormFactorCuboctahedron.pypp.h" #include "FormFactorCylinder.pypp.h" #include "FormFactorDecoratorDebyeWaller.pypp.h" -#include "FormFactorEllipsoid.pypp.h" +#include "FormFactorEllipsoidalCylinder.pypp.h" #include "FormFactorFullSphere.pypp.h" #include "FormFactorFullSpheroid.pypp.h" #include "FormFactorGauss.pypp.h" -#include "FormFactorHemiSpheroid.pypp.h" +#include "FormFactorHemiEllipsoid.pypp.h" #include "FormFactorLorentz.pypp.h" #include "FormFactorParallelepiped.pypp.h" #include "FormFactorPrism3.pypp.h" @@ -29,6 +32,8 @@ #include "FormFactorPyramid.pypp.h" #include "FormFactorSphere.pypp.h" #include "FormFactorSphereGaussianRadius.pypp.h" +#include "FormFactorSpheroid.pypp.h" +#include "FTDistribution2DCauchy.pypp.h" #include "HomogeneousMaterial.pypp.h" #include "IAxis.pypp.h" #include "ICloneable.pypp.h" @@ -36,12 +41,18 @@ #include "ICompositeSample.pypp.h" #include "IDecoration.pypp.h" #include "IDetectorResolution.pypp.h" -#include "IFTDistribution2D.pypp.h" #include "IFormFactor.pypp.h" #include "IFormFactorBorn.pypp.h" #include "IFormFactorDecorator.pypp.h" +#include "IFTDistribution2D.pypp.h" #include "IInterferenceFunction.pypp.h" #include "IMaterial.pypp.h" +#include "Instrument.pypp.h" +#include "IntensityData.pypp.h" +#include "InterferenceFunction1DParaCrystal.pypp.h" +#include "InterferenceFunction2DLattice.pypp.h" +#include "InterferenceFunction2DParaCrystal.pypp.h" +#include "InterferenceFunctionNone.pypp.h" #include "IObservable.pypp.h" #include "IObserver.pypp.h" #include "IParameterized.pypp.h" @@ -50,12 +61,7 @@ #include "ISampleBuilder.pypp.h" #include "ISelectionRule.pypp.h" #include "ITransform3D.pypp.h" -#include "Instrument.pypp.h" -#include "IntensityData.pypp.h" -#include "InterferenceFunction1DParaCrystal.pypp.h" -#include "InterferenceFunction2DLattice.pypp.h" -#include "InterferenceFunction2DParaCrystal.pypp.h" -#include "InterferenceFunctionNone.pypp.h" +#include "kvector_t.pypp.h" #include "Lattice.pypp.h" #include "Lattice2DIFParameters.pypp.h" #include "LatticeBasis.pypp.h" @@ -86,8 +92,6 @@ #include "StochasticDoubleGaussian.pypp.h" #include "StochasticParameter_t.pypp.h" #include "StochasticSampledParameter.pypp.h" -#include "cvector_t.pypp.h" -#include "kvector_t.pypp.h" #include "vdouble1d_t.pypp.h" #include "vector_IFormFactorPtr_t.pypp.h" #include "vector_integer_t.pypp.h" @@ -124,17 +128,20 @@ BOOST_PYTHON_MODULE(libBornAgainCore){ register_FTDistribution2DCauchy_class(); register_IFormFactor_class(); register_IFormFactorBorn_class(); + register_FormFactorAnisoPyramid_class(); register_FormFactorBox_class(); register_FormFactorCone_class(); + register_FormFactorCone6_class(); register_FormFactorCrystal_class(); + register_FormFactorCuboctahedron_class(); register_FormFactorCylinder_class(); register_IFormFactorDecorator_class(); register_FormFactorDecoratorDebyeWaller_class(); - register_FormFactorEllipsoid_class(); + register_FormFactorEllipsoidalCylinder_class(); register_FormFactorFullSphere_class(); register_FormFactorFullSpheroid_class(); register_FormFactorGauss_class(); - register_FormFactorHemiSpheroid_class(); + register_FormFactorHemiEllipsoid_class(); register_FormFactorLorentz_class(); register_FormFactorParallelepiped_class(); register_FormFactorPrism3_class(); @@ -142,6 +149,7 @@ BOOST_PYTHON_MODULE(libBornAgainCore){ register_FormFactorPyramid_class(); register_FormFactorSphere_class(); register_FormFactorSphereGaussianRadius_class(); + register_FormFactorSpheroid_class(); register_kvector_t_class(); register_cvector_t_class(); register_ITransform3D_class(); diff --git a/Core/StandardSamples/IsGISAXS03Builder.cpp b/Core/StandardSamples/IsGISAXS03Builder.cpp index 24433c088a6f584551a9c973d501771bc67f2175..563c977c7d6895f2d14b0cb8e26f18dc9444065f 100644 --- a/Core/StandardSamples/IsGISAXS03Builder.cpp +++ b/Core/StandardSamples/IsGISAXS03Builder.cpp @@ -83,12 +83,12 @@ ISample *IsGISAXS03BABuilder::buildSample() const const IMaterial *p_air_material = MaterialManager::getHomogeneousMaterial("Air", 0.0, 0.0); - const IMaterial *p_substrate_material = - MaterialManager::getHomogeneousMaterial("Substrate", 6e-6, 2e-8); + //const IMaterial *p_substrate_material = + // MaterialManager::getHomogeneousMaterial("Substrate", 6e-6, 2e-8); Layer air_layer; air_layer.setMaterial(p_air_material); - Layer substrate_layer; - substrate_layer.setMaterial(p_substrate_material); + //Layer substrate_layer; + //substrate_layer.setMaterial(p_substrate_material); const IMaterial *particle_material = MaterialManager::getHomogeneousMaterial("Particle", 6e-4, 2e-8); diff --git a/Core/python_module.pri b/Core/python_module.pri index 6546e3ba35a630a6614ba116c853f8c73b4f51fe..86e6a14ce40bc917d08ea92a87e00d57fca27fa6 100644 --- a/Core/python_module.pri +++ b/Core/python_module.pri @@ -10,18 +10,21 @@ HEADERS += \ PythonAPI/inc/Bin1D.pypp.h \ PythonAPI/inc/Bin1DCVector.pypp.h \ PythonAPI/inc/Crystal.pypp.h \ + PythonAPI/inc/cvector_t.pypp.h \ PythonAPI/inc/Detector.pypp.h \ - PythonAPI/inc/FTDistribution2DCauchy.pypp.h \ + PythonAPI/inc/FormFactorAnisoPyramid.pypp.h \ PythonAPI/inc/FormFactorBox.pypp.h \ PythonAPI/inc/FormFactorCone.pypp.h \ + PythonAPI/inc/FormFactorCone6.pypp.h \ PythonAPI/inc/FormFactorCrystal.pypp.h \ + PythonAPI/inc/FormFactorCuboctahedron.pypp.h \ PythonAPI/inc/FormFactorCylinder.pypp.h \ PythonAPI/inc/FormFactorDecoratorDebyeWaller.pypp.h \ - PythonAPI/inc/FormFactorEllipsoid.pypp.h \ + PythonAPI/inc/FormFactorEllipsoidalCylinder.pypp.h \ PythonAPI/inc/FormFactorFullSphere.pypp.h \ PythonAPI/inc/FormFactorFullSpheroid.pypp.h \ PythonAPI/inc/FormFactorGauss.pypp.h \ - PythonAPI/inc/FormFactorHemiSpheroid.pypp.h \ + PythonAPI/inc/FormFactorHemiEllipsoid.pypp.h \ PythonAPI/inc/FormFactorLorentz.pypp.h \ PythonAPI/inc/FormFactorParallelepiped.pypp.h \ PythonAPI/inc/FormFactorPrism3.pypp.h \ @@ -29,6 +32,8 @@ HEADERS += \ PythonAPI/inc/FormFactorPyramid.pypp.h \ PythonAPI/inc/FormFactorSphere.pypp.h \ PythonAPI/inc/FormFactorSphereGaussianRadius.pypp.h \ + PythonAPI/inc/FormFactorSpheroid.pypp.h \ + PythonAPI/inc/FTDistribution2DCauchy.pypp.h \ PythonAPI/inc/HomogeneousMaterial.pypp.h \ PythonAPI/inc/IAxis.pypp.h \ PythonAPI/inc/ICloneable.pypp.h \ @@ -36,12 +41,18 @@ HEADERS += \ PythonAPI/inc/ICompositeSample.pypp.h \ PythonAPI/inc/IDecoration.pypp.h \ PythonAPI/inc/IDetectorResolution.pypp.h \ - PythonAPI/inc/IFTDistribution2D.pypp.h \ PythonAPI/inc/IFormFactor.pypp.h \ PythonAPI/inc/IFormFactorBorn.pypp.h \ PythonAPI/inc/IFormFactorDecorator.pypp.h \ + PythonAPI/inc/IFTDistribution2D.pypp.h \ PythonAPI/inc/IInterferenceFunction.pypp.h \ PythonAPI/inc/IMaterial.pypp.h \ + PythonAPI/inc/Instrument.pypp.h \ + PythonAPI/inc/IntensityData.pypp.h \ + PythonAPI/inc/InterferenceFunction1DParaCrystal.pypp.h \ + PythonAPI/inc/InterferenceFunction2DLattice.pypp.h \ + PythonAPI/inc/InterferenceFunction2DParaCrystal.pypp.h \ + PythonAPI/inc/InterferenceFunctionNone.pypp.h \ PythonAPI/inc/IObservable.pypp.h \ PythonAPI/inc/IObserver.pypp.h \ PythonAPI/inc/IParameterized.pypp.h \ @@ -50,12 +61,7 @@ HEADERS += \ PythonAPI/inc/ISampleBuilder.pypp.h \ PythonAPI/inc/ISelectionRule.pypp.h \ PythonAPI/inc/ITransform3D.pypp.h \ - PythonAPI/inc/Instrument.pypp.h \ - PythonAPI/inc/IntensityData.pypp.h \ - PythonAPI/inc/InterferenceFunction1DParaCrystal.pypp.h \ - PythonAPI/inc/InterferenceFunction2DLattice.pypp.h \ - PythonAPI/inc/InterferenceFunction2DParaCrystal.pypp.h \ - PythonAPI/inc/InterferenceFunctionNone.pypp.h \ + PythonAPI/inc/kvector_t.pypp.h \ PythonAPI/inc/Lattice.pypp.h \ PythonAPI/inc/Lattice2DIFParameters.pypp.h \ PythonAPI/inc/LatticeBasis.pypp.h \ @@ -86,8 +92,6 @@ HEADERS += \ PythonAPI/inc/StochasticDoubleGaussian.pypp.h \ PythonAPI/inc/StochasticParameter_t.pypp.h \ PythonAPI/inc/StochasticSampledParameter.pypp.h \ - PythonAPI/inc/cvector_t.pypp.h \ - PythonAPI/inc/kvector_t.pypp.h \ PythonAPI/inc/vdouble1d_t.pypp.h \ PythonAPI/inc/vector_IFormFactorPtr_t.pypp.h \ PythonAPI/inc/vector_integer_t.pypp.h \ @@ -106,18 +110,21 @@ SOURCES += \ PythonAPI/src/Bin1D.pypp.cpp \ PythonAPI/src/Bin1DCVector.pypp.cpp \ PythonAPI/src/Crystal.pypp.cpp \ + PythonAPI/src/cvector_t.pypp.cpp \ PythonAPI/src/Detector.pypp.cpp \ - PythonAPI/src/FTDistribution2DCauchy.pypp.cpp \ + PythonAPI/src/FormFactorAnisoPyramid.pypp.cpp \ PythonAPI/src/FormFactorBox.pypp.cpp \ PythonAPI/src/FormFactorCone.pypp.cpp \ + PythonAPI/src/FormFactorCone6.pypp.cpp \ PythonAPI/src/FormFactorCrystal.pypp.cpp \ + PythonAPI/src/FormFactorCuboctahedron.pypp.cpp \ PythonAPI/src/FormFactorCylinder.pypp.cpp \ PythonAPI/src/FormFactorDecoratorDebyeWaller.pypp.cpp \ - PythonAPI/src/FormFactorEllipsoid.pypp.cpp \ + PythonAPI/src/FormFactorEllipsoidalCylinder.pypp.cpp \ PythonAPI/src/FormFactorFullSphere.pypp.cpp \ PythonAPI/src/FormFactorFullSpheroid.pypp.cpp \ PythonAPI/src/FormFactorGauss.pypp.cpp \ - PythonAPI/src/FormFactorHemiSpheroid.pypp.cpp \ + PythonAPI/src/FormFactorHemiEllipsoid.pypp.cpp \ PythonAPI/src/FormFactorLorentz.pypp.cpp \ PythonAPI/src/FormFactorParallelepiped.pypp.cpp \ PythonAPI/src/FormFactorPrism3.pypp.cpp \ @@ -125,6 +132,8 @@ SOURCES += \ PythonAPI/src/FormFactorPyramid.pypp.cpp \ PythonAPI/src/FormFactorSphere.pypp.cpp \ PythonAPI/src/FormFactorSphereGaussianRadius.pypp.cpp \ + PythonAPI/src/FormFactorSpheroid.pypp.cpp \ + PythonAPI/src/FTDistribution2DCauchy.pypp.cpp \ PythonAPI/src/HomogeneousMaterial.pypp.cpp \ PythonAPI/src/IAxis.pypp.cpp \ PythonAPI/src/ICloneable.pypp.cpp \ @@ -132,12 +141,18 @@ SOURCES += \ PythonAPI/src/ICompositeSample.pypp.cpp \ PythonAPI/src/IDecoration.pypp.cpp \ PythonAPI/src/IDetectorResolution.pypp.cpp \ - PythonAPI/src/IFTDistribution2D.pypp.cpp \ PythonAPI/src/IFormFactor.pypp.cpp \ PythonAPI/src/IFormFactorBorn.pypp.cpp \ PythonAPI/src/IFormFactorDecorator.pypp.cpp \ + PythonAPI/src/IFTDistribution2D.pypp.cpp \ PythonAPI/src/IInterferenceFunction.pypp.cpp \ PythonAPI/src/IMaterial.pypp.cpp \ + PythonAPI/src/Instrument.pypp.cpp \ + PythonAPI/src/IntensityData.pypp.cpp \ + PythonAPI/src/InterferenceFunction1DParaCrystal.pypp.cpp \ + PythonAPI/src/InterferenceFunction2DLattice.pypp.cpp \ + PythonAPI/src/InterferenceFunction2DParaCrystal.pypp.cpp \ + PythonAPI/src/InterferenceFunctionNone.pypp.cpp \ PythonAPI/src/IObservable.pypp.cpp \ PythonAPI/src/IObserver.pypp.cpp \ PythonAPI/src/IParameterized.pypp.cpp \ @@ -146,12 +161,7 @@ SOURCES += \ PythonAPI/src/ISampleBuilder.pypp.cpp \ PythonAPI/src/ISelectionRule.pypp.cpp \ PythonAPI/src/ITransform3D.pypp.cpp \ - PythonAPI/src/Instrument.pypp.cpp \ - PythonAPI/src/IntensityData.pypp.cpp \ - PythonAPI/src/InterferenceFunction1DParaCrystal.pypp.cpp \ - PythonAPI/src/InterferenceFunction2DLattice.pypp.cpp \ - PythonAPI/src/InterferenceFunction2DParaCrystal.pypp.cpp \ - PythonAPI/src/InterferenceFunctionNone.pypp.cpp \ + PythonAPI/src/kvector_t.pypp.cpp \ PythonAPI/src/Lattice.pypp.cpp \ PythonAPI/src/Lattice2DIFParameters.pypp.cpp \ PythonAPI/src/LatticeBasis.pypp.cpp \ @@ -182,8 +192,6 @@ SOURCES += \ PythonAPI/src/StochasticDoubleGaussian.pypp.cpp \ PythonAPI/src/StochasticParameter_t.pypp.cpp \ PythonAPI/src/StochasticSampledParameter.pypp.cpp \ - PythonAPI/src/cvector_t.pypp.cpp \ - PythonAPI/src/kvector_t.pypp.cpp \ PythonAPI/src/vdouble1d_t.pypp.cpp \ PythonAPI/src/vector_IFormFactorPtr_t.pypp.cpp \ PythonAPI/src/vector_integer_t.pypp.cpp \ diff --git a/Doc/UserManual/UserManual.pdf b/Doc/UserManual/UserManual.pdf index 2d73f78543b5aeecb8a8685261a72aee0ba45109..4f98977b073008eb1f015895c27700e43d55a207 100644 Binary files a/Doc/UserManual/UserManual.pdf and b/Doc/UserManual/UserManual.pdf differ diff --git a/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.cpp b/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.cpp index e7bb3e883a092f50bef29ae55b56edf395e624a4..588878ff9e0e8e336c02edadd60267dd24490fe2 100644 --- a/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.cpp +++ b/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.cpp @@ -92,24 +92,53 @@ void FunctionalTests::FTestFormFactors::run(IFormFactor *p_form_factor) if (mp_form_factor->getName().substr(10) == "Tetrahedron") m_results[kTest_Tetrahedron] = simulation.getIntensityData(); -} + if (mp_form_factor->getName().substr(10) == "Cuboctahedron") + m_results[kTest_Cuboctahedron] = simulation.getIntensityData(); + + if (mp_form_factor->getName().substr(10) == "AnisoPyramid") + m_results[kTest_AnisoPyramid] = simulation.getIntensityData(); + + if (mp_form_factor->getName().substr(10) == "EllipsoidalCylinder") + m_results[kTest_Ellipscyl] = simulation.getIntensityData(); + + if (mp_form_factor->getName().substr(10) == "FullSpheroid") + m_results[kTest_FullSpheroid] = simulation.getIntensityData(); + if (mp_form_factor->getName().substr(10) == "Spheroid") + m_results[kTest_Spheroid] = simulation.getIntensityData(); + + if (mp_form_factor->getName().substr(10) == "HemiEllipsoid") + m_results[kTest_HemiEllipsoid] = simulation.getIntensityData(); + +} int FunctionalTests::FTestFormFactors::analyseResults(const std::string &path_to_data) -{ +{ const double threshold(2e-10); const char *reference_files[kNumberOfTests] = - {"isgi_reference_cylinder_BA.ima.gz","isgi_reference_box_BA.ima.gz", - "isgi_reference_cone_BA.ima.gz","isgi_reference_cone6_BA.ima.gz", - "isgi_reference_full_sphere_BA.ima.gz","isgi_reference_parallelepiped_BA.ima.gz", - "isgi_reference_prism3_BA.ima.gz","isgi_reference_prism6_BA.ima.gz", - "isgi_reference_pyramid_BA.ima.gz","isgi_reference_sphere_BA.ima.gz", - "isgi_reference_tetrahedron_BA.ima.gz"}; + {"isgi_reference_cylinder_BA.ima.gz", + "isgi_reference_box_BA.ima.gz", + "isgi_reference_cone_BA.ima.gz", + "isgi_reference_cone6_BA.ima.gz", + "isgi_reference_full_sphere_BA.ima.gz", + "isgi_reference_parallelepiped_BA.ima.gz", + "isgi_reference_prism3_BA.ima.gz", + "isgi_reference_prism6_BA.ima.gz", + "isgi_reference_pyramid_BA.ima.gz", + "isgi_reference_sphere_BA.ima.gz", + "isgi_reference_tetrahedron_BA.ima.gz", + "isgi_reference_cuboctahedron_BA.ima.gz", + "isgi_reference_anisopyramid_BA.ima.gz", + "isgi_reference_ellipscylinder_BA.ima.gz", + "isgi_reference_full_spheroid_BA.ima.gz", + "isgi_reference_spheroid_BA.ima.gz", + "isgi_reference_hemiellipsoid_BA.ima.gz"}; bool status_ok(true); // retrieving reference data and generated examples for(size_t i_test=0; i_test<kNumberOfTests; ++i_test) { - OutputData<double> *reference = OutputDataIOFactory::readIntensityData(path_to_data + reference_files[i_test]); + OutputData<double> *reference = OutputDataIOFactory::readIntensityData( + path_to_data + reference_files[i_test]); OutputData<double> *result = m_results[i_test]; // calculating average relative difference @@ -118,7 +147,8 @@ int FunctionalTests::FTestFormFactors::analyseResults(const std::string &path_to delete reference; double diff(0); - for(OutputData<double>::const_iterator it=result->begin(); it!=result->end(); ++it) { + for(OutputData<double>::const_iterator it=result->begin(); + it!=result->end(); ++it) { diff+= std::fabs(*it); } diff /= result->getAllocatedSize(); @@ -126,7 +156,8 @@ int FunctionalTests::FTestFormFactors::analyseResults(const std::string &path_to } - std::cout << m_name << " " << m_description << " " << (status_ok ? "[OK]" : "[FAILED]") << std::endl; + /* std::cout << m_name << " " << m_description << " " + << (status_ok ? "[OK]" : "[FAILED]") << std::endl;*/ return (status_ok ? 0 : 1); } @@ -135,7 +166,8 @@ int FunctionalTests::FTestFormFactors::analyseResults(const std::string &path_to std::string GetPathToData(int argc, char **argv) { if(argc == 2) return argv[1]; - return Utils::FileSystem::GetPathToData("../../../ReferenceData/BornAgain/", argv[0]); + return Utils::FileSystem::GetPathToData("../../../ReferenceData/BornAgain/", + argv[0]); } int main(int argc, char **argv) @@ -143,58 +175,88 @@ int main(int argc, char **argv) FunctionalTests::FTestFormFactors test; //Cylinder FormFactorCylinder ff_cyl(5.0, 5.0); - IFormFactor* p_form_factor0 =& ff_cyl; - test.run(p_form_factor0->clone()); + IFormFactor* p_ff_cyl =& ff_cyl; + test.run(p_ff_cyl->clone()); //Box FormFactorBox ff_box(10.0, 20.0, 5.0); - IFormFactor* p_form_factor1 =& ff_box; - test.run(p_form_factor1->clone()); + IFormFactor* p_ff_box =& ff_box; + test.run(p_ff_box->clone()); //Cone FormFactorCone ff_cone(5.0, 5.0, Units::deg2rad(54.73 )); - IFormFactor* p_form_factor2 =& ff_cone; - test.run(p_form_factor2->clone()); + IFormFactor* p_ff_cone =& ff_cone; + test.run(p_ff_cone->clone()); //Cone6 FormFactorCone6 ff_cone6(2./sqrt(3.)*5.0, 5.0, Units::deg2rad(54.73)); - IFormFactor* p_form_factor3 =& ff_cone6; - test.run(p_form_factor3->clone()); + IFormFactor* p_ff_cone6 =& ff_cone6; + test.run(p_ff_cone6->clone()); //FullSphere FormFactorFullSphere ff_fsph(5.0); - IFormFactor* p_form_factor4 =& ff_fsph; - test.run(p_form_factor4->clone()); + IFormFactor* p_ff_fsph =& ff_fsph; + test.run(p_ff_fsph->clone()); //Parallelepiped FormFactorParallelepiped ff_par(5.0, 5.0); - IFormFactor* p_form_factor5 =& ff_par; - test.run(p_form_factor5->clone()); + IFormFactor* p_ff_par =& ff_par; + test.run(p_ff_par->clone()); //Prism3 FormFactorPrism3 ff_pr3(5.0, 5.0); - IFormFactor* p_form_factor6 =& ff_pr3; - test.run(p_form_factor6->clone()); + IFormFactor* p_ff_pr3 =& ff_pr3; + test.run(p_ff_pr3->clone()); //Prism6 - FormFactorPrism6 ff_pr6(2./sqrt(3.)*5.0, 5.0); - IFormFactor* p_form_factor7 =& ff_pr6; - test.run(p_form_factor7->clone()); + FormFactorPrism6 ff_pr6(2./sqrt(3.)*5.0, 5.0); + IFormFactor* p_ff_pr6 =& ff_pr6; + test.run(p_ff_pr6->clone()); //Pyramid FormFactorPyramid ff_pyr(5.0, 5.0, Units::deg2rad(54.73 )); - IFormFactor* p_form_factor8 =& ff_pyr; - test.run(p_form_factor8->clone()); + IFormFactor* p_ff_pyr =& ff_pyr; + test.run(p_ff_pyr->clone()); //Sphere FormFactorSphere ff_sph(5.0, 5.0); - IFormFactor* p_form_factor9 =& ff_sph; - test.run(p_form_factor9->clone()); + IFormFactor* p_ff_sph =& ff_sph; + test.run(p_ff_sph->clone()); // Tetrahedron - FormFactorTetrahedron ff_tetr(5.0, 5.0, Units::deg2rad(54.73 )); - IFormFactor* p_form_factor10 =& ff_tetr; - test.run(p_form_factor10->clone()); + FormFactorTetrahedron ff_tetr(5.0, 4.0, Units::deg2rad(54.73 )); + IFormFactor* p_ff_tetr =& ff_tetr; + test.run(p_ff_tetr->clone()); + + // Cuboctahedron + FormFactorCuboctahedron ff_cuboc(5.0, 5.0, 1.0, Units::deg2rad(54.73 )); + IFormFactor* p_ff_cuboc =& ff_cuboc; + test.run(p_ff_cuboc->clone()); + + // Anisotropic Pyramid + FormFactorAnisoPyramid ff_anipyr(10.0, 20.0, 5.0, Units::deg2rad(54.73 )); + IFormFactor* p_ff_anipyr =& ff_anipyr; + test.run(p_ff_anipyr->clone()); + + // Ellipsoidal Cylinder + FormFactorEllipsoidalCylinder ff_ellipscyl(5.0, 10.0, 5.0); + IFormFactor* p_ff_ellipscyl =& ff_ellipscyl; + test.run(p_ff_ellipscyl->clone()); + + // Full spheroid + FormFactorFullSpheroid ff_fspheroid(5.0, 5.0); + IFormFactor* p_ff_fspheroid =& ff_fspheroid; + test.run(p_ff_fspheroid ->clone()); + + // Spheroid + FormFactorSpheroid ff_spheroid(5.0, 5.0, 1.0); + IFormFactor* p_ff_spheroid =& ff_spheroid; + test.run(p_ff_spheroid->clone()); + + // HemiEllipsoid + FormFactorHemiEllipsoid ff_hemiellipsoid(5.0, 10.0, 5.0); + IFormFactor* p_ff_hemiellipsoid=& ff_hemiellipsoid; + test.run(p_ff_hemiellipsoid->clone()); return test.analyseResults(GetPathToData(argc, argv)); } diff --git a/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.h b/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.h index 63de89211a626afd7812397983eefaae651a2729..3476cae1c1042f69a6e9cb8e8206b539f8339c11 100644 --- a/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.h +++ b/Tests/FunctionalTests/TestCore/FormFactors/FTestFormFactors.h @@ -17,14 +17,18 @@ class FTestFormFactors kTest_FullSphere, kTest_Parallelepiped, kTest_Prism3, kTest_Prism6, kTest_Pyramid, kTest_Sphere, - kTest_Tetrahedron, kNumberOfTests }; + kTest_Tetrahedron, kTest_Cuboctahedron, + kTest_AnisoPyramid, kTest_Ellipscyl, + kTest_FullSpheroid, kTest_Spheroid, kTest_HemiEllipsoid, + kNumberOfTests }; FTestFormFactors(); ~FTestFormFactors(); void run(IFormFactor* p_form_factor = 0); int analyseResults(const std::string &path_to_data = std::string()); - const OutputData<double> *getOutputData(size_t ntest=0) { return m_results.at(ntest); } + const OutputData<double> *getOutputData(size_t ntest=0) + { return m_results.at(ntest); } private: std::string m_name; diff --git a/Tests/ReferenceData/BornAgain/isgi_reference_tetrahedron_BA.ima.gz b/Tests/ReferenceData/BornAgain/isgi_reference_tetrahedron_BA.ima.gz index 22381351b3dd99f6ba69ab42d6ea16cfe9b2e8ce..7abb5f2f1b37b3a8c1b4d29b27f73184de548e42 100644 Binary files a/Tests/ReferenceData/BornAgain/isgi_reference_tetrahedron_BA.ima.gz and b/Tests/ReferenceData/BornAgain/isgi_reference_tetrahedron_BA.ima.gz differ diff --git a/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_cubooctahedron_BA.inp b/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_cubooctahedron_BA.inp deleted file mode 100644 index 4cd2bb793c6e2c959fa01e72df1db1252427b137..0000000000000000000000000000000000000000 --- a/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_cubooctahedron_BA.inp +++ /dev/null @@ -1,74 +0,0 @@ -########################################## -# GISAXS SIMULATIONS : INPUT PARAMETERS -########################################### - -# Base filename -isgi_cubooctahedron_BA -############################ Framework and beam parameters ############################################ -# Framework Diffuse, Multilayer, Number of index slices, Polarization - BA LMA 0 25 ss -# Beam Wavelenght : Lambda(nm), Wl_distribution, Sigma_Wl/Wl, Wl_min(nm), Wl_max(nm), nWl, xWl - 0.1 none 0.3 0.08 0.12 20 3 -# Beam Alpha_i : Alpha_i(deg), Ai_distribution, Sigma_Ai(deg), Ai_min(deg), Ai_max(deg), nAi, xAi - 0.2 none 0.1 0.15 0.25 30 2 -# Beam 2Theta_i : 2Theta_i(deg), Ti_distribution, Sigma_Ti(deg), Ti_min(deg), Ti_max(deg), nTi, XTi - 0 none 0.5 -0.5 0.5 10 2 -# Substrate : n-delta_S, n-beta_S, Layer thickness(nm), n-delta_L, n-beta_L, RMS roughness(nm) - 6.E-06 2.e-8 0. 1.E-05 5.E-07 0. -# Particle : n-delta_I, n-beta_I, Depth(nm), n-delta_SH, n-beta_SH - 6.E-04 2.e-8 0 8.E-04 2.e-8 -################################# Grid parameters ###################################################### -# Ewald mode - T -# Output angle (deg) : Two theta min-max, Alphaf min-max, n(1), n(2) - 0. 2 0 2 100 100 -# Output q(nm-1) : Qx min-max, Qy min-max, Qz min-max, n(1), n(2), n(3) - -1 1 -1 1 -2 0 200 200 1 -################################## Particle parameters ################################################# -# Number of different particle types -1 -# Particle type, Probability -cubooctahedron 1 -# Geometrical parameters : Base angle (deg), Height ratio, Flattening, FS-radii/R - 54.73 1. 1. 0.8 0.8 -# Shell thicknesses (nm) : dR, dH, dW - 0 0 0 -# H_uncoupled, W_uncoupled - T T -# Size of particle : Radius(nm), R_distribution, SigmaR/R, Rmin(nm), Rmax(nm), nR, xR - 5 none 0.01 0.1 11 100 4 -# Height aspect ratio : Height/R, H_distribution, SigmaH/H, Hmin/R, Hmax/R, nH, xH, rho_H - 1 none 0.1 0.1 11 25 2 0 -# Width aspect ratio : Width/R, W_distribution, SigmaW/W, Wmin/R, Wmax/R, nW, xW, rho_W - 2 none 0.4 1 300 15 2 0 -# Orientation of particle : Zeta(deg), Z_distribution, SigmaZ(deg), Zmin(deg), Zmax(deg), nZ, xZ - 0 none 20. 0 120 30 2 -##################################### Lattice parameters ################################################# -# Lattice type - none -# Interference function : Peak position D(nm), w(nm), Statistics, Eta_Voigt, Size-Distance coupling, Cut-off - 20 5 gau 0.5 0 10000000 -# Pair correlation function : Density(nm-2), D1(nm), Hard core coverage, CxR - 0.007 25 0.3 1. -# Lattice parameters : L(1)(nm), L(2)(nm), Angle(deg, Xi_fixed - 10 10 90. F - Xi(deg), Xi_distribution, SigmaXi(deg), Ximin(deg), Ximax(deg), nXi, xXi - 0 gate 20 0. 240. 3 -2 - Domain sizes DL(nm), DL_distribution, SigmaDL/DL, DLmin(nm), DLmax(nm), nDL, XDL - 20000 20000 none 0.2 0.2 200 200 10000 10000 10 10 -2 -2 -# Imperfect lattice : Rod description, Rod shape, - rec_ellip cau cau - Correlation lenghts(nm), Rod orientation(deg) - 3000 1000 0 90 -# Paracrystal : Probability description - ellip - Disorder factors w(nm), DL-statistical distribution and rod orientation (deg) - 0.5 0.5 0.5 0.5 - cau cau cau cau - 0 90 0 90 -# Pattern : Regular pattern content, Number of particles per pattern - F 2 - Positions xp/L, Debye-Waller factors B11/L1 B22/L1 B12/L1 - 0. 0. 0. 0. 0. - 0.5 0.5 0. 0. 0. - diff --git a/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_tetrahedron_BA.ima b/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_tetrahedron_BA.ima index b14328105296650bb906f7dd2aa4fbb6e85c388c..64c51b2f879253d256d55a0ef3b94a53804cefa3 100644 --- a/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_tetrahedron_BA.ima +++ b/Tests/ReferenceData/IsGISAXS/FormFactors/isgi_tetrahedron_BA.ima @@ -1,100 +1,100 @@ - 4.8596777178E+02 4.8220536436E+02 4.7812880365E+02 4.7375038394E+02 4.6908314371E+02 4.6414079264E+02 4.5893763203E+02 4.5348847513E+02 4.4780855966E+02 4.4191347558E+02 4.3581884052E+02 4.2954130808E+02 4.2309637109E+02 4.1650033773E+02 4.0976925806E+02 4.0291902798E+02 3.9596531810E+02 3.8892350477E+02 3.8180860160E+02 3.7463519846E+02 3.6741740316E+02 3.6016878979E+02 3.5290235189E+02 3.4563046190E+02 3.3836483624E+02 3.3111650677E+02 3.2389579824E+02 3.1671231205E+02 3.0957491612E+02 3.0249174078E+02 2.9547018069E+02 2.8851690230E+02 2.8163785692E+02 2.7483829889E+02 2.6812280854E+02 2.6149531969E+02 2.5495915114E+02 2.4851704183E+02 2.4217118907E+02 2.3592328952E+02 2.2977458233E+02 2.2372589393E+02 2.1777768398E+02 2.1193009202E+02 2.0618298419E+02 2.0053599968E+02 1.9498859632E+02 1.8954009486E+02 1.8418972160E+02 1.7893664883E+02 1.7378003277E+02 1.6871904876E+02 1.6375292316E+02 1.5888096194E+02 1.5410257568E+02 1.4941730062E+02 1.4482481595E+02 1.4032495697E+02 1.3591772422E+02 1.3160328862E+02 1.2738199254E+02 1.2325434698E+02 1.1922102509E+02 1.1528285195E+02 1.1144079114E+02 1.0769592807E+02 1.0404945055E+02 1.0050262687E+02 9.7056781534E+01 9.3713269381E+01 9.0473448065E+01 8.7338649543E+01 8.4310150855E+01 8.1389144613E+01 7.8576709579E+01 7.5873781746E+01 7.3281126273E+01 7.0799310655E+01 6.8428679472E+01 6.6169331042E+01 6.4021096280E+01 6.1983520045E+01 6.0055845203E+01 5.8236999639E+01 5.6525586382E+01 5.4919876981E+01 5.3417808252E+01 5.2016982440E+01 5.0714670839E+01 4.9507820851E+01 4.8393066427E+01 4.7366741815E+01 4.6424898480E+01 4.5563325037E+01 4.4777570009E+01 4.4062967185E+01 4.3414663328E+01 4.2827647958E+01 4.2296784907E+01 4.1816845344E+01 - 4.8537391438E+02 4.8161519650E+02 4.7754264317E+02 4.7316853665E+02 4.6850590460E+02 4.6356844443E+02 4.5837044478E+02 4.5292670442E+02 4.4725244940E+02 4.4136324912E+02 4.3527493170E+02 4.2900349981E+02 4.2256504669E+02 4.1597567427E+02 4.0925141274E+02 4.0240814292E+02 3.9546152165E+02 3.8842691091E+02 3.8131931095E+02 3.7415329804E+02 3.6694296706E+02 3.5970187947E+02 3.5244301678E+02 3.4517873979E+02 3.3792075392E+02 3.3068008051E+02 3.2346703440E+02 3.1629120768E+02 3.0916145954E+02 3.0208591221E+02 2.9507195282E+02 2.8812624093E+02 2.8125472151E+02 2.7446264315E+02 2.6775458095E+02 2.6113446407E+02 2.5460560713E+02 2.4817074532E+02 2.4183207271E+02 2.3559128309E+02 2.2944961309E+02 2.2340788697E+02 2.1746656253E+02 2.1162577767E+02 2.0588539713E+02 2.0024505887E+02 1.9470421964E+02 1.8926219920E+02 1.8391822296E+02 1.7867146234E+02 1.7352107272E+02 1.6846622856E+02 1.6350615532E+02 1.5864015803E+02 1.5386764620E+02 1.4918815497E+02 1.4460136230E+02 1.4010710215E+02 1.3570537363E+02 1.3139634609E+02 1.2718036023E+02 1.2305792533E+02 1.1902971265E+02 1.1509654537E+02 1.1125938507E+02 1.0751931515E+02 1.0387752139E+02 1.0033526999E+02 9.6893883493E+01 9.3554714754E+01 9.0319119554E+01 8.7188428085E+01 8.4163915758E+01 8.1246773718E+01 7.8438079457E+01 7.5738767915E+01 7.3149603443E+01 7.0671152998E+01 6.8303760912E+01 6.6047525567E+01 6.3902278268E+01 6.1867564607E+01 5.9942628540E+01 5.8126399406E+01 5.6417482052E+01 5.4814150222E+01 5.3314343292E+01 5.1915666434E+01 5.0615394224E+01 4.9410477690E+01 4.8297554738E+01 4.7272963880E+01 4.6332761132E+01 4.5472739923E+01 4.4688453822E+01 4.3975241873E+01 4.3328256260E+01 4.2742492063E+01 4.2212818774E+01 4.1734013282E+01 - 4.8359485122E+02 4.7984702104E+02 4.7578630980E+02 4.7142496737E+02 4.6677598692E+02 4.6185302956E+02 4.5667034591E+02 4.5124269532E+02 4.4558526319E+02 4.3971357722E+02 4.3364342310E+02 4.2739076035E+02 4.2097163892E+02 4.1440211718E+02 4.0769818184E+02 4.0087567051E+02 3.9395019733E+02 3.8693708218E+02 3.7985128407E+02 3.7270733900E+02 3.6551930271E+02 3.5830069883E+02 3.5106447238E+02 3.4382294924E+02 3.3658780143E+02 3.2937001862E+02 3.2217988568E+02 3.1502696649E+02 3.0792009384E+02 3.0086736537E+02 2.9387614543E+02 2.8695307259E+02 2.8010407257E+02 2.7333437643E+02 2.6664854341E+02 2.6005048838E+02 2.5354351317E+02 2.4713034164E+02 2.4081315781E+02 2.3459364667E+02 2.2847303718E+02 2.2245214690E+02 2.1653142785E+02 2.1071101294E+02 2.0499076256E+02 1.9937031092E+02 1.9384911140E+02 1.8842648081E+02 1.8310164177E+02 1.7787376311E+02 1.7274199767E+02 1.6770551733E+02 1.6276354488E+02 1.5791538253E+02 1.5316043678E+02 1.4849823947E+02 1.4392846502E+02 1.3945094351E+02 1.3506566989E+02 1.3077280901E+02 1.2657269679E+02 1.2246583741E+02 1.1845289684E+02 1.1453469268E+02 1.1071218081E+02 1.0698643878E+02 1.0335864651E+02 9.9830064326E+01 9.6402008972E+01 9.3075827686E+01 8.9852870857E+01 8.6734463609E+01 8.3721876681E+01 8.0816297027E+01 7.8018798507E+01 7.5330313063E+01 7.2751602756E+01 7.0283233029E+01 6.7925547537E+01 6.5678644881E+01 6.3542357531E+01 6.1516233228E+01 5.9599519095E+01 5.7791148680E+01 5.6089732101E+01 5.4493549428E+01 5.3000547425E+01 5.1608339691E+01 5.0314210249E+01 4.9115120550E+01 4.8007719864E+01 4.6988358949E+01 4.6053106884E+01 4.5197770910E+01 4.4417919082E+01 4.3708905504E+01 4.3065897919E+01 4.2483907353E+01 4.1957819538E+01 4.1482427788E+01 - 4.8064072621E+02 4.7691068088E+02 4.7286934713E+02 4.6852892153E+02 4.6390234049E+02 4.5900320525E+02 4.5384570375E+02 4.4844453018E+02 4.4281480273E+02 4.3697198012E+02 4.3093177773E+02 4.2471008373E+02 4.1832287613E+02 4.1178614102E+02 4.0511579294E+02 3.9832759774E+02 3.9143709848E+02 3.8445954507E+02 3.7740982781E+02 3.7030241563E+02 3.6315129908E+02 3.5596993864E+02 3.4877121849E+02 3.4156740613E+02 3.3437011785E+02 3.2719029029E+02 3.2003815820E+02 3.1292323824E+02 3.0585431895E+02 2.9883945675E+02 2.9188597775E+02 2.8500048523E+02 2.7818887260E+02 2.7145634139E+02 2.6480742412E+02 2.5824601156E+02 2.5177538398E+02 2.4539824603E+02 2.3911676476E+02 2.3293261023E+02 2.2684699835E+02 2.2086073533E+02 2.1497426335E+02 2.0918770677E+02 2.0350091861E+02 1.9791352660E+02 1.9242497846E+02 1.8703458586E+02 1.8174156676E+02 1.7654508555E+02 1.7144429076E+02 1.6643834992E+02 1.6152648137E+02 1.5670798261E+02 1.5198225506E+02 1.4734882514E+02 1.4280736134E+02 1.3835768734E+02 1.3399979118E+02 1.2973383028E+02 1.2556013261E+02 1.2147919396E+02 1.1749167145E+02 1.1359837352E+02 1.0980024657E+02 1.0609835849E+02 1.0249387942E+02 9.8988059956E+01 9.5582207215E+01 9.2277659076E+01 8.9075756951E+01 8.5977817500E+01 8.2985103654E+01 8.0098795335E+01 7.7319960289E+01 7.4649525380E+01 7.2088248750E+01 6.9636693197E+01 6.7295201107E+01 6.5063871283E+01 6.2942537948E+01 6.0930752217E+01 5.9027766265E+01 5.7232520411E+01 5.5543633281E+01 5.3959395210E+01 5.2477764967E+01 5.1096369878E+01 4.9812509372E+01 4.8623161931E+01 4.7524995405E+01 4.6514380595E+01 4.5587407984E+01 4.4739907463E+01 4.3967470848E+01 4.3265476982E+01 4.2629119171E+01 4.2053434667E+01 4.1533335927E+01 4.1063643313E+01 - 4.7653009000E+02 4.7282439188E+02 4.6880963357E+02 4.6449793821E+02 4.5990216387E+02 4.5503582900E+02 4.4991303480E+02 4.4454838526E+02 4.3895690535E+02 4.3315395809E+02 4.2715516127E+02 4.2097630388E+02 4.1463326386E+02 4.0814192678E+02 4.0151810668E+02 3.9477746938E+02 3.8793545892E+02 3.8100722754E+02 3.7400756970E+02 3.6695086065E+02 3.5985099981E+02 3.5272135938E+02 3.4557473842E+02 3.3842332272E+02 3.3127865048E+02 3.2415158406E+02 3.1705228787E+02 3.0999021231E+02 3.0297408380E+02 2.9601190081E+02 2.8911093565E+02 2.8227774197E+02 2.7551816761E+02 2.6883737251E+02 2.6223985147E+02 2.5572946122E+02 2.4930945151E+02 2.4298249983E+02 2.3675074916E+02 2.3061584837E+02 2.2457899484E+02 2.1864097863E+02 2.1280222788E+02 2.0706285480E+02 2.0142270185E+02 1.9588138754E+02 1.9043835145E+02 1.8509289798E+02 1.7984423840E+02 1.7469153081E+02 1.6963391762E+02 1.6467056026E+02 1.5980067075E+02 1.5502353998E+02 1.5033856230E+02 1.4574525652E+02 1.4124328287E+02 1.3683245612E+02 1.3251275464E+02 1.2828432551E+02 1.2414748565E+02 1.2010271912E+02 1.1615067075E+02 1.1229213616E+02 1.0852804852E+02 1.0485946223E+02 1.0128753378E+02 9.7813500106E+01 9.4438654864E+01 9.1164322789E+01 8.7991832676E+01 8.4922489268E+01 8.1957544463E+01 7.9098168226E+01 7.6345419596E+01 7.3700218159E+01 7.1163316379E+01 6.8735273131E+01 6.6416428778E+01 6.4206882135E+01 6.2106469585E+01 6.0114746652E+01 5.8230972242E+01 5.6454095790E+01 5.4782747461E+01 5.3215231560E+01 5.1749523256E+01 5.0383268672E+01 4.9113788374E+01 4.7938084250E+01 4.6852849720E+01 4.5854483207E+01 4.4939104722E+01 4.4102575430E+01 4.3340519994E+01 4.2648351481E+01 4.2021298589E+01 4.1454434915E+01 4.0942709977E+01 4.0480981681E+01 - 4.7128970239E+02 4.6761454893E+02 4.6363319289E+02 4.5935766455E+02 4.5480072283E+02 4.4997578128E+02 4.4489683107E+02 4.3957836162E+02 4.3403527942E+02 4.2828282579E+02 4.2233649413E+02 4.1621194722E+02 4.0992493539E+02 4.0349121594E+02 3.9692647462E+02 3.9024624951E+02 3.8346585806E+02 3.7660032761E+02 3.6966432998E+02 3.6267212048E+02 3.5563748179E+02 3.4857367297E+02 3.4149338392E+02 3.3440869555E+02 3.2733104579E+02 3.2027120159E+02 3.1323923694E+02 3.0624451700E+02 2.9929568824E+02 2.9240067445E+02 2.8556667866E+02 2.7880019047E+02 2.7210699890E+02 2.6549221018E+02 2.5896027032E+02 2.5251499200E+02 2.4615958546E+02 2.3989669297E+02 2.3372842626E+02 2.2765640669E+02 2.2168180754E+02 2.1580539783E+02 2.1002758742E+02 2.0434847267E+02 1.9876788223E+02 1.9328542260E+02 1.8790052276E+02 1.8261247758E+02 1.7742048967E+02 1.7232370892E+02 1.6732126984E+02 1.6241232596E+02 1.5759608119E+02 1.5287181792E+02 1.4823892145E+02 1.4369690082E+02 1.3924540574E+02 1.3488423956E+02 1.3061336834E+02 1.2643292593E+02 1.2234321512E+02 1.1834470500E+02 1.1443802466E+02 1.1062395332E+02 1.0690340723E+02 1.0327742346E+02 9.9747140989E+01 9.6313779239E+01 9.2978614515E+01 8.9742954632E+01 8.6608112096E+01 8.3575376238E+01 8.0645984649E+01 7.7821094335E+01 7.5101752950E+01 7.2488870502E+01 6.9983191896E+01 6.7585270667E+01 6.5295444254E+01 6.3113811124E+01 6.1040210049E+01 5.9074201793E+01 5.7215053471E+01 5.5461725760E+01 5.3812863155E+01 5.2266787407E+01 5.0821494228E+01 4.9474653354E+01 4.8223611964E+01 4.7065401464E+01 4.5996747582E+01 4.5014083677E+01 4.4113567155E+01 4.3291098835E+01 4.2542345065E+01 4.1862762388E+01 4.1247624500E+01 4.0692051245E+01 4.0191039343E+01 3.9739494552E+01 - 4.6495424449E+02 4.6131544259E+02 4.5737391513E+02 4.5314158104E+02 4.4863108013E+02 4.4385569979E+02 4.3882929869E+02 4.3356622817E+02 4.2808125181E+02 4.2238946398E+02 4.1650620782E+02 4.1044699345E+02 4.0422741680E+02 3.9786307990E+02 3.9136951303E+02 3.8476209944E+02 3.7805600301E+02 3.7126609953E+02 3.6440691186E+02 3.5749254961E+02 3.5053665353E+02 3.4355234505E+02 3.3655218121E+02 3.2954811525E+02 3.2255146294E+02 3.1557287487E+02 3.0862231478E+02 3.0170904381E+02 2.9484161074E+02 2.8802784819E+02 2.8127487439E+02 2.7458910063E+02 2.6797624391E+02 2.6144134463E+02 2.5498878898E+02 2.4862233560E+02 2.4234514621E+02 2.3615981976E+02 2.3006842958E+02 2.2407256316E+02 2.1817336403E+02 2.1237157531E+02 2.0666758428E+02 2.0106146772E+02 1.9555303728E+02 1.9014188457E+02 1.8482742548E+02 1.7960894318E+02 1.7448562955E+02 1.6945662447E+02 1.6452105275E+02 1.5967805826E+02 1.5492683505E+02 1.5026665517E+02 1.4569689295E+02 1.4121704561E+02 1.3682675008E+02 1.3252579592E+02 1.2831413427E+02 1.2419188296E+02 1.2015932767E+02 1.1621691934E+02 1.1236526797E+02 1.0860513286E+02 1.0493740969E+02 1.0136311447E+02 9.7883364865E+01 9.4499358910E+01 9.1212351747E+01 8.8023630494E+01 8.4934487704E+01 8.1946193781E+01 7.9059968708E+01 7.6276953478E+01 7.3598181620E+01 7.1024551175E+01 6.8556797501E+01 6.6195467260E+01 6.3940893918E+01 6.1793175081E+01 5.9752151952E+01 5.7817391183E+01 5.5988169352E+01 5.4263460282E+01 5.2641925354E+01 5.1121906977E+01 4.9701425292E+01 4.8378178187E+01 4.7149544648E+01 4.6012591432E+01 4.4964083008E+01 4.4000494701E+01 4.3118028887E+01 4.2312634125E+01 4.1580027003E+01 4.0915716506E+01 4.0315030670E+01 3.9773145226E+01 3.9285113987E+01 3.8845900636E+01 - 4.5756594515E+02 4.5396888988E+02 4.5007319202E+02 4.4589064155E+02 4.4143374016E+02 4.3671562877E+02 4.3175001204E+02 4.2655108053E+02 4.2113343168E+02 4.1551198828E+02 4.0970191834E+02 4.0371855372E+02 3.9757731003E+02 3.9129360779E+02 3.8488279547E+02 3.7836007512E+02 3.7174043081E+02 3.6503856075E+02 3.5826881321E+02 3.5144512689E+02 3.4458097599E+02 3.3768932037E+02 3.3078256101E+02 3.2387250107E+02 3.1697031265E+02 3.1008650948E+02 3.0323092547E+02 2.9641269924E+02 2.8964026448E+02 2.8292134625E+02 2.7626296278E+02 2.6967143287E+02 2.6315238844E+02 2.5671079210E+02 2.5035095925E+02 2.4407658458E+02 2.3789077234E+02 2.3179607015E+02 2.2579450575E+02 2.1988762644E+02 2.1407654046E+02 2.0836196010E+02 2.0274424584E+02 1.9722345115E+02 1.9179936745E+02 1.8647156867E+02 1.8123945515E+02 1.7610229618E+02 1.7105927096E+02 1.6610950753E+02 1.6125211928E+02 1.5648623875E+02 1.5181104844E+02 1.4722580830E+02 1.4272987985E+02 1.3832274652E+02 1.3400403036E+02 1.2977350482E+02 1.2563110365E+02 1.2157692598E+02 1.1761123750E+02 1.1373446794E+02 1.0994720495E+02 1.0625018454E+02 1.0264427825E+02 9.9130477394E+01 9.5709874557E+01 9.2383642647E+01 8.9153011863E+01 8.6019244898E+01 8.2983610716E+01 8.0047357296E+01 7.7211683698E+01 7.4477711831E+01 7.1846458310E+01 6.9318806753E+01 6.6895480902E+01 6.4577018900E+01 6.2363749065E+01 6.0255767472E+01 5.8252917632E+01 5.6354772531E+01 5.4560619263E+01 5.2869446464E+01 5.1279934709E+01 4.9790450017E+01 4.8399040557E+01 4.7103436624E+01 4.5901053901E+01 4.4789000007E+01 4.3764084280E+01 4.2822830706E+01 4.1961493884E+01 4.1176077870E+01 4.0462357716E+01 3.9815903507E+01 3.9232106629E+01 3.8706208041E+01 3.8233328238E+01 3.7808498622E+01 - 4.4917412671E+02 4.4562378468E+02 4.4177947201E+02 4.3765283314E+02 4.3325621364E+02 4.2860258865E+02 4.2370548832E+02 4.1857892111E+02 4.1323729517E+02 4.0769533899E+02 4.0196802123E+02 3.9607047095E+02 3.9001789841E+02 3.8382551732E+02 3.7750846892E+02 3.7108174852E+02 3.6456013499E+02 3.5795812375E+02 3.5128986357E+02 3.4456909779E+02 3.3780911013E+02 3.3102267555E+02 3.2422201633E+02 3.1741876372E+02 3.1062392521E+02 3.0384785756E+02 2.9710024576E+02 2.9039008777E+02 2.8372568514E+02 2.7711463933E+02 2.7056385360E+02 2.6407954036E+02 2.5766723364E+02 2.5133180642E+02 2.4507749259E+02 2.3890791309E+02 2.3282610588E+02 2.2683455931E+02 2.2093524852E+02 2.1512967434E+02 2.0941890423E+02 2.0380361483E+02 1.9828413562E+02 1.9286049311E+02 1.8753245533E+02 1.8229957581E+02 1.7716123694E+02 1.7211669200E+02 1.6716510564E+02 1.6230559230E+02 1.5753725235E+02 1.5285920540E+02 1.4827062081E+02 1.4377074481E+02 1.3935892436E+02 1.3503462728E+02 1.3079745874E+02 1.2664717391E+02 1.2258368682E+02 1.1860707535E+02 1.1471758248E+02 1.1091561380E+02 1.0720173152E+02 1.0357664505E+02 1.0004119842E+02 9.6596354698E+01 9.3243177784E+01 8.9982811775E+01 8.6816458252E+01 8.3745351828E+01 8.0770734298E+01 7.7893827759E+01 7.5115807055E+01 7.2437771937E+01 6.9860719294E+01 6.7385515824E+01 6.5012871512E+01 6.2743314246E+01 6.0577165904E+01 5.8514520223E+01 5.6555222733E+01 5.4698853016E+01 5.2944709519E+01 5.1291797131E+01 4.9738817670E+01 4.8284163448E+01 4.6925913975E+01 4.5661835893E+01 4.4489386149E+01 4.3405718411E+01 4.2407692659E+01 4.1491887890E+01 4.0654617812E+01 3.9891949376E+01 3.9199723967E+01 3.8573581048E+01 3.8008984024E+01 3.7501248062E+01 3.7045569592E+01 3.6637057190E+01 - 4.3983467657E+02 4.3633557382E+02 4.3254774110E+02 4.2848266173E+02 4.2415250823E+02 4.1957007176E+02 4.1474868855E+02 4.0970216433E+02 4.0444469696E+02 3.9899079804E+02 3.9335521407E+02 3.8755284779E+02 3.8159868021E+02 3.7550769396E+02 3.6929479857E+02 3.6297475813E+02 3.5656212182E+02 3.5007115797E+02 3.4351579187E+02 3.3690954785E+02 3.3026549600E+02 3.2359620380E+02 3.1691369295E+02 3.1022940162E+02 3.0355415230E+02 2.9689812531E+02 2.9027083814E+02 2.8368113048E+02 2.7713715508E+02 2.7064637420E+02 2.6421556154E+02 2.5785080957E+02 2.5155754186E+02 2.4534053028E+02 2.3920391666E+02 2.3315123864E+02 2.2718545923E+02 2.2130899979E+02 2.1552377597E+02 2.0983123599E+02 2.0423240118E+02 1.9872790782E+02 1.9331805027E+02 1.8800282459E+02 1.8278197233E+02 1.7765502398E+02 1.7262134167E+02 1.6768016067E+02 1.6283062931E+02 1.5807184682E+02 1.5340289899E+02 1.4882289109E+02 1.4433097783E+02 1.3992639026E+02 1.3560845920E+02 1.3137663514E+02 1.2723050455E+02 1.2316980234E+02 1.1919442061E+02 1.1530441365E+02 1.1149999914E+02 1.0778155581E+02 1.0414961748E+02 1.0060486387E+02 9.7148108218E+01 9.3780281985E+01 9.0502416916E+01 8.7315624753E+01 8.4221074895E+01 8.1219970327E+01 7.8313522181E+01 7.5502923279E+01 7.2789321007E+01 7.0173789904E+01 6.7657304324E+01 6.5240711527E+01 6.2924705553E+01 6.0709802222E+01 5.8596315580E+01 5.6584336092E+01 5.4673710863E+01 5.2864026153E+01 5.1154592397E+01 4.9544431940E+01 4.8032269644E+01 4.6616526514E+01 4.5295316411E+01 4.4066445950E+01 4.2927417575E+01 4.1875435827E+01 4.0907416738E+01 4.0020000288E+01 3.9209565795E+01 3.8472250107E+01 3.7803968406E+01 3.7200437425E+01 3.6657200851E+01 3.6169656650E+01 3.5733086049E+01 3.5342683882E+01 - 4.2960945169E+02 4.2616566624E+02 4.2243893672E+02 4.1844057088E+02 4.1418255240E+02 4.0967747130E+02 4.0493845169E+02 3.9997907732E+02 3.9481331546E+02 3.8945543981E+02 3.8391995295E+02 3.7822150898E+02 3.7237483684E+02 3.6639466499E+02 3.6029564792E+02 3.5409229503E+02 3.4779890244E+02 3.4142948812E+02 3.3499773082E+02 3.2851691318E+02 3.2199986944E+02 3.1545893787E+02 3.0890591852E+02 3.0235203608E+02 2.9580790839E+02 2.8928352054E+02 2.8278820454E+02 2.7633062482E+02 2.6991876923E+02 2.6355994570E+02 2.5726078425E+02 2.5102724426E+02 2.4486462670E+02 2.3877759115E+02 2.3277017716E+02 2.2684582978E+02 2.2100742871E+02 2.1525732084E+02 2.0959735556E+02 2.0402892264E+02 1.9855299200E+02 1.9317015508E+02 1.8788066717E+02 1.8268449046E+02 1.7758133711E+02 1.7257071203E+02 1.6765195498E+02 1.6282428133E+02 1.5808682141E+02 1.5343865779E+02 1.4887886031E+02 1.4440651855E+02 1.4002077132E+02 1.3572083313E+02 1.3150601724E+02 1.2737575532E+02 1.2332961348E+02 1.1936730453E+02 1.1548869671E+02 1.1169381851E+02 1.0798285998E+02 1.0435617039E+02 1.0081425246E+02 9.7357753308E+01 9.3987452329E+01 9.0704246159E+01 8.7509131090E+01 8.4403183138E+01 8.1387536100E+01 7.8463357914E+01 7.5631825671E+01 7.2894099620E+01 7.0251296516E+01 6.7704462689E+01 6.5254547175E+01 6.2902375270E+01 6.0648622855E+01 5.8493791819E+01 5.6438186898E+01 5.4481894237E+01 5.2624761934E+01 5.0866382837E+01 4.9206079800E+01 4.7642893603E+01 4.6175573698E+01 4.4802571899E+01 4.3522039128E+01 4.2331825265E+01 4.1229482134E+01 4.0212269606E+01 3.9277164791E+01 3.8420874217E+01 3.7639848902E+01 3.6930302173E+01 3.6288230045E+01 3.5709433977E+01 3.5189545768E+01 3.4724054340E+01 3.4308334158E+01 3.3937674974E+01 - 4.1856562448E+02 4.1518078330E+02 4.1151930275E+02 4.0759230169E+02 4.0341156024E+02 3.9898945144E+02 3.9433887023E+02 3.8947316031E+02 3.8440603938E+02 3.7915152344E+02 3.7372385066E+02 3.6813740542E+02 3.6240664304E+02 3.5654601591E+02 3.5056990135E+02 3.4449253184E+02 3.3832792817E+02 3.3208983580E+02 3.2579166500E+02 3.1944643510E+02 3.1306672322E+02 3.0666461774E+02 3.0025167682E+02 2.9383889218E+02 2.8743665823E+02 2.8105474673E+02 2.7470228705E+02 2.6838775196E+02 2.6211894898E+02 2.5590301719E+02 2.4974642934E+02 2.4365499905E+02 2.3763389303E+02 2.3168764778E+02 2.2582019077E+02 2.2003486551E+02 2.1433446035E+02 2.0872124044E+02 2.0319698254E+02 1.9776301224E+02 1.9242024312E+02 1.8716921739E+02 1.8201014757E+02 1.7694295872E+02 1.7196733088E+02 1.6708274106E+02 1.6228850460E+02 1.5758381530E+02 1.5296778399E+02 1.4843947526E+02 1.4399794182E+02 1.3964225641E+02 1.3537154083E+02 1.3118499188E+02 1.2708190407E+02 1.2306168893E+02 1.1912389074E+02 1.1526819867E+02 1.1149445528E+02 1.0780266132E+02 1.0419297708E+02 1.0066572004E+02 9.7221359300E+01 9.3860506701E+01 9.0583904925E+01 8.7392412809E+01 8.4286988088E+01 8.1268667860E+01 7.8338547079E+01 7.5497755378E+01 7.2747432571E+01 7.0088703153E+01 6.7522650180E+01 6.5050288846E+01 6.2672540136E+01 6.0390204884E+01 5.8203938591E+01 5.6114227313E+01 5.4121364936E+01 5.2225432139E+01 5.0426277301E+01 4.8723499608E+01 4.7116434575E+01 4.5604142178E+01 4.4185397742E+01 4.2858685735E+01 4.1622196534E+01 4.0473826248E+01 3.9411179596E+01 3.8431575861E+01 3.7532057849E+01 3.6709403783E+01 3.5960142039E+01 3.5280568552E+01 3.4666766754E+01 3.4114629820E+01 3.3619885024E+01 3.3178119941E+01 3.2784810242E+01 3.2435348803E+01 - 4.0677497890E+02 4.0345225925E+02 3.9985969454E+02 3.9600820252E+02 3.9190934629E+02 3.8757526723E+02 3.8301861534E+02 3.7825247747E+02 3.7329030409E+02 3.6814583502E+02 3.6283302483E+02 3.5736596841E+02 3.5175882727E+02 3.4602575711E+02 3.4018083725E+02 3.3423800228E+02 3.2821097665E+02 3.2211321237E+02 3.1595783047E+02 3.0975756648E+02 3.0352472028E+02 2.9727111065E+02 2.9100803474E+02 2.8474623272E+02 2.7849585766E+02 2.7226645087E+02 2.6606692264E+02 2.5990553851E+02 2.5378991095E+02 2.4772699631E+02 2.4172309709E+02 2.3578386913E+02 2.2991433365E+02 2.2411889385E+02 2.1840135570E+02 2.1276495269E+02 2.0721237410E+02 2.0174579647E+02 1.9636691782E+02 1.9107699418E+02 1.8587687806E+02 1.8076705836E+02 1.7574770128E+02 1.7081869181E+02 1.6597967527E+02 1.6123009866E+02 1.5656925109E+02 1.5199630325E+02 1.4751034521E+02 1.4311042243E+02 1.3879556949E+02 1.3456484138E+02 1.3041734192E+02 1.2635224930E+02 1.2236883828E+02 1.1846649914E+02 1.1464475314E+02 1.1090326442E+02 1.0724184833E+02 1.0366047622E+02 1.0015927666E+02 9.6738533311E+01 9.3398679369E+01 9.0140288939E+01 8.6964065400E+01 8.3870827032E+01 8.0861490132E+01 7.7937049909E+01 7.5098559434E+01 7.2347106964E+01 6.9683791960E+01 6.7109700141E+01 6.4625877913E+01 6.2233306511E+01 5.9932876209E+01 5.7725360927E+01 5.5611393583E+01 5.3591442481E+01 5.1665789070E+01 4.9834507339E+01 4.8097445122E+01 4.6454207545E+01 4.4904142849E+01 4.3446330742E+01 4.2079573473E+01 4.0802389720E+01 3.9613011404E+01 3.8509383480E+01 3.7489166723E+01 3.6549743508E+01 3.5688226544E+01 3.4901470466E+01 3.4186086202E+01 3.3538457962E+01 3.2954762693E+01 3.2430991791E+01 3.1962974871E+01 3.1546405353E+01 3.1176867591E+01 3.0849865293E+01 - 3.9431316627E+02 3.9105530121E+02 3.8753484328E+02 3.8376249808E+02 3.7974959941E+02 3.7550804356E+02 3.7105022111E+02 3.6638894663E+02 3.6153738699E+02 3.5650898872E+02 3.5131740501E+02 3.4597642289E+02 3.4049989119E+02 3.3490164974E+02 3.2919546037E+02 3.2339494017E+02 3.1751349754E+02 3.1156427143E+02 3.0556007414E+02 2.9951333811E+02 2.9343606705E+02 2.8733979161E+02 2.8123552988E+02 2.7513375296E+02 2.6904435572E+02 2.6297663276E+02 2.5693925982E+02 2.5094028049E+02 2.4498709821E+02 2.3908647352E+02 2.3324452639E+02 2.2746674342E+02 2.2175798982E+02 2.1612252575E+02 2.1056402682E+02 2.0508560841E+02 1.9968985351E+02 1.9437884358E+02 1.8915419210E+02 1.8401708051E+02 1.7896829585E+02 1.7400826989E+02 1.6913711930E+02 1.6435468618E+02 1.5966057891E+02 1.5505421248E+02 1.5053484825E+02 1.4610163247E+02 1.4175363338E+02 1.3748987639E+02 1.3330937718E+02 1.2921117223E+02 1.2519434675E+02 1.2125805957E+02 1.1740156493E+02 1.1362423102E+02 1.0992555513E+02 1.0630517522E+02 1.0276287820E+02 9.9298604541E+01 9.5912449514E+01 9.2604661102E+01 8.9375634617E+01 8.6225904253E+01 8.3156131740E+01 8.0167092302E+01 7.7259658175E+01 7.4434779944E+01 7.1693465983E+01 6.9036760308E+01 6.6465719154E+01 6.3981386606E+01 6.1584769623E+01 5.9276812782E+01 5.7058373084E+01 5.4930195155E+01 5.2892887157E+01 5.0946897739E+01 4.9092494293E+01 4.7329742835E+01 4.5658489726E+01 4.4078345509E+01 4.2588671037E+01 4.1188566094E+01 3.9876860651E+01 3.8652108885E+01 3.7512586041E+01 3.6456288202E+01 3.5480934980E+01 3.4583975134E+01 3.3762595055E+01 3.3013730052E+01 3.2334078340E+01 3.1720117583E+01 3.1168123837E+01 3.0674192707E+01 3.0234262498E+01 2.9844139138E+01 2.9499522613E+01 2.9196034646E+01 - 3.8125893102E+02 3.7806821882E+02 3.7462258984E+02 3.7093252763E+02 3.6700912564E+02 3.6286402294E+02 3.5850933749E+02 3.5395759748E+02 3.4922167125E+02 3.4431469632E+02 3.3925000813E+02 3.3404106891E+02 3.2870139743E+02 3.2324449987E+02 3.1768380252E+02 3.1203258676E+02 3.0630392669E+02 3.0051062989E+02 2.9466518178E+02 2.8877969378E+02 2.8286585576E+02 2.7693489291E+02 2.7099752739E+02 2.6506394488E+02 2.5914376620E+02 2.5324602409E+02 2.4737914522E+02 2.4155093738E+02 2.3576858195E+02 2.3003863134E+02 2.2436701146E+02 2.1875902901E+02 2.1321938325E+02 2.0775218219E+02 2.0236096278E+02 1.9704871477E+02 1.9181790807E+02 1.8667052300E+02 1.8160808321E+02 1.7663169083E+02 1.7174206337E+02 1.6693957203E+02 1.6222428095E+02 1.5759598692E+02 1.5305425928E+02 1.4859847942E+02 1.4422787956E+02 1.3994158049E+02 1.3573862773E+02 1.3161802601E+02 1.2757877152E+02 1.2361988178E+02 1.1974042289E+02 1.1593953389E+02 1.1221644799E+02 1.0857051070E+02 1.0500119460E+02 1.0150811068E+02 9.8091016377E+01 9.4749820128E+01 9.1484582568E+01 8.8295514483E+01 8.5182971581E+01 8.2147446260E+01 7.9189556538E+01 7.6310032369E+01 7.3509699572E+01 7.0789461634E+01 6.8150279668E+01 6.5593150822E+01 6.3119085443E+01 6.0729083323E+01 5.8424109353E+01 5.6205068898E+01 5.4072783249E+01 5.2027965441E+01 5.0071196782E+01 4.8202904375E+01 4.6423339938E+01 4.4732560179E+01 4.3130408988E+01 4.1616501674E+01 4.0190211442E+01 3.8850658294E+01 3.7596700500E+01 3.6426928751E+01 3.5339663095E+01 3.4332952684E+01 3.3404578386E+01 3.2552058225E+01 3.1772655627E+01 3.1063390384E+01 3.0421052248E+01 2.9842217011E+01 2.9323264918E+01 2.8860401240E+01 2.8449678771E+01 2.8087022066E+01 2.7768253128E+01 2.7489118328E+01 - 3.6769331636E+02 3.6457163359E+02 3.6120309805E+02 3.5759796252E+02 3.5376707025E+02 3.4972179220E+02 3.4547396191E+02 3.4103580843E+02 3.3641988805E+02 3.3163901501E+02 3.2670619207E+02 3.2163454125E+02 3.1643723532E+02 3.1112743052E+02 3.0571820109E+02 3.0022247594E+02 2.9465297801E+02 2.8902216674E+02 2.8334218389E+02 2.7762480330E+02 2.7188138463E+02 2.6612283163E+02 2.6035955488E+02 2.5460143949E+02 2.4885781757E+02 2.4313744591E+02 2.3744848861E+02 2.3179850489E+02 2.2619444190E+02 2.2064263250E+02 2.1514879789E+02 2.0971805487E+02 2.0435492759E+02 1.9906336350E+02 1.9384675314E+02 1.8870795372E+02 1.8364931581E+02 1.7867271303E+02 1.7377957431E+02 1.6897091820E+02 1.6424738901E+02 1.5960929424E+02 1.5505664288E+02 1.5058918426E+02 1.4620644695E+02 1.4190777732E+02 1.3769237743E+02 1.3355934175E+02 1.2950769254E+02 1.2553641339E+02 1.2164448071E+02 1.1783089282E+02 1.1409469655E+02 1.1043501090E+02 1.0685104781E+02 1.0334212980E+02 9.9907704295E+01 9.6547354773E+01 9.3260808504E+01 9.0047941008E+01 8.6908777237E+01 8.3843489563E+01 8.0852392686E+01 7.7935935619E+01 7.5094690912E+01 7.2329341329E+01 6.9640664207E+01 6.7029513745E+01 6.4496801502E+01 6.2043475383E+01 5.9670497426E+01 5.7378820690E+01 5.5169365566E+01 5.3042995833E+01 5.1000494771E+01 4.9042541650E+01 4.7169688895E+01 4.5382340233E+01 4.3680730093E+01 4.2064904524E+01 4.0534703878E+01 3.9089747482E+01 3.7729420489E+01 3.6452863086E+01 3.5258962192E+01 3.4146345778E+01 3.3113379870E+01 3.2158168304E+01 3.1278555247E+01 3.0472130472E+01 2.9736237359E+01 2.9067983527E+01 2.8464254029E+01 2.7921726947E+01 2.7436891267E+01 2.7006066826E+01 2.6625426150E+01 2.6291017961E+01 2.5998792095E+01 2.5744625614E+01 - 3.5369886060E+02 3.5064767853E+02 3.4735805797E+02 3.4384001330E+02 3.4010412898E+02 3.3616149826E+02 3.3202365972E+02 3.2770253199E+02 3.2321034713E+02 3.1855958333E+02 3.1376289729E+02 3.0883305683E+02 3.0378287433E+02 2.9862514138E+02 2.9337256510E+02 2.8803770675E+02 2.8263292281E+02 2.7717030919E+02 2.7166164874E+02 2.6611836255E+02 2.6055146515E+02 2.5497152418E+02 2.4938862435E+02 2.4381233625E+02 2.3825168988E+02 2.3271515313E+02 2.2721061519E+02 2.2174537490E+02 2.1632613407E+02 2.1095899552E+02 2.0564946591E+02 2.0040246306E+02 1.9522232758E+02 1.9011283860E+02 1.8507723329E+02 1.8011822992E+02 1.7523805407E+02 1.7043846764E+02 1.6572080040E+02 1.6108598354E+02 1.5653458490E+02 1.5206684552E+02 1.4768271701E+02 1.4338189939E+02 1.3916387904E+02 1.3502796625E+02 1.3097333207E+02 1.2699904420E+02 1.2310410127E+02 1.1928746559E+02 1.1554809374E+02 1.1188496489E+02 1.0829710663E+02 1.0478361802E+02 1.0134368976E+02 9.7976621298E+01 9.4681834808E+01 9.1458885962E+01 8.8307471464E+01 8.5227433367E+01 8.2218760203E+01 7.9281585019E+01 7.6416180421E+01 7.3622950768E+01 7.0902421701E+01 6.8255227191E+01 6.5682094333E+01 6.3183826148E+01 6.0761282633E+01 5.8415360354E+01 5.6146970875E+01 5.3957018316E+01 5.1846376363E+01 4.9815865018E+01 4.7866227420E+01 4.5998107025E+01 4.4212025458E+01 4.2508361303E+01 4.0887330120E+01 3.9348965940E+01 3.7893104467E+01 3.6519368216E+01 3.5227153759E+01 3.4015621265E+01 3.2883686452E+01 3.1830015083E+01 3.0853020056E+01 2.9950861175E+01 2.9121447588E+01 2.8362442904E+01 2.7671272937E+01 2.7045136019E+01 2.6481015769E+01 2.5975696209E+01 2.5525779066E+01 2.5127703091E+01 2.4777765205E+01 2.4472143250E+01 2.4206920112E+01 2.3978108987E+01 - 3.3935879427E+02 3.3637919830E+02 3.3316988929E+02 3.2974063679E+02 3.2610175900E+02 3.2226406314E+02 3.1823878370E+02 3.1403751888E+02 3.0967216587E+02 3.0515485548E+02 3.0049788640E+02 2.9571365988E+02 2.9081461509E+02 2.8581316574E+02 2.8072163841E+02 2.7555221301E+02 2.7031686581E+02 2.6502731540E+02 2.5969497194E+02 2.5433089006E+02 2.4894572574E+02 2.4354969719E+02 2.3815255032E+02 2.3276352864E+02 2.2739134784E+02 2.2204417520E+02 2.1672961379E+02 2.1145469141E+02 2.0622585442E+02 2.0104896611E+02 1.9592930975E+02 1.9087159589E+02 1.8587997402E+02 1.8095804800E+02 1.7610889529E+02 1.7133508955E+02 1.6663872627E+02 1.6202145120E+02 1.5748449105E+02 1.5302868629E+02 1.4865452549E+02 1.4436218090E+02 1.4015154486E+02 1.3602226664E+02 1.3197378930E+02 1.2800538627E+02 1.2411619718E+02 1.2030526263E+02 1.1657155764E+02 1.1291402334E+02 1.0933159671E+02 1.0582323806E+02 1.0238795611E+02 9.9024830301E+01 9.5733030400E+01 9.2511833043E+01 8.9360635292E+01 8.6278965057E+01 8.3266488379E+01 8.0323013594E+01 7.7448492403E+01 7.4643017945E+01 7.1906819968E+01 6.9240257241E+01 6.6643807384E+01 6.4118054289E+01 6.1663673382E+01 5.9281414923E+01 5.6972085646E+01 5.4736528969E+01 5.2575604094E+01 5.0490164258E+01 4.8481034463E+01 4.6548988958E+01 4.4694728791E+01 4.2918859720E+01 4.1221870766E+01 3.9604113692E+01 3.8065783665E+01 3.6606901350E+01 3.5227296670E+01 3.3926594425E+01 3.2704201973E+01 3.1559299114E+01 3.0490830320E+01 2.9497499422E+01 2.8577766812E+01 2.7729849227E+01 2.6951722123E+01 2.6241124632E+01 2.5595567063E+01 2.5012340874E+01 2.4488531028E+01 2.4021030608E+01 2.3606557540E+01 2.3241673267E+01 2.2922803179E+01 2.2646258590E+01 2.2408260039E+01 2.2204961687E+01 - 3.2475624839E+02 3.2184896007E+02 3.1872095518E+02 3.1538175306E+02 3.1184139941E+02 3.0811040839E+02 3.0419970248E+02 3.0012055088E+02 2.9588450671E+02 2.9150334351E+02 2.8698899159E+02 2.8235347474E+02 2.7760884766E+02 2.7276713457E+02 2.6784026963E+02 2.6284003936E+02 2.5777802760E+02 2.5266556338E+02 2.4751367193E+02 2.4233302932E+02 2.3713392088E+02 2.3192620366E+02 2.2671927322E+02 2.2152203472E+02 2.1634287871E+02 2.1118966140E+02 2.0606968972E+02 2.0098971093E+02 1.9595590692E+02 1.9097389300E+02 1.8604872110E+02 1.8118488724E+02 1.7638634298E+02 1.7165651076E+02 1.6699830276E+02 1.6241414303E+02 1.5790599256E+02 1.5347537703E+02 1.4912341677E+02 1.4485085870E+02 1.4065810975E+02 1.3654527151E+02 1.3251217554E+02 1.2855841926E+02 1.2468340170E+02 1.2088635897E+02 1.1716639908E+02 1.1352253564E+02 1.0995372028E+02 1.0645887334E+02 1.0303691272E+02 9.9686780470E+01 9.6407467023E+01 9.3198032858E+01 9.0057627379E+01 8.6985504954E+01 8.3981037983E+01 8.1043726955E+01 7.8173207464E+01 7.5369254198E+01 7.2631781940E+01 6.9960843666E+01 6.7356625839E+01 6.4819441037E+01 6.2349718079E+01 5.9947989842E+01 5.7614878970E+01 5.5351081716E+01 5.3157350161E+01 5.1034473075E+01 4.8983255696E+01 4.7004498707E+01 4.5098976699E+01 4.3267416421E+01 4.1510475083E+01 3.9828719027E+01 3.8222603014E+01 3.6692450412E+01 3.5238434540E+01 3.3860561384E+01 3.2558653943E+01 3.1332338357E+01 3.0181032039E+01 2.9103933938E+01 2.8100017058E+01 2.7168023357E+01 2.6306461072E+01 2.5513604537E+01 2.4787496496E+01 2.4125952911E+01 2.3526570212E+01 2.2986734947E+01 2.2503635704E+01 2.2074277227E+01 2.1695496549E+01 2.1363981008E+01 2.1076287946E+01 2.0828865890E+01 2.0618077017E+01 2.0440220644E+01 - 3.0997348363E+02 3.0713888490E+02 3.0409279617E+02 3.0084448224E+02 2.9740371126E+02 2.9378069839E+02 2.8998604763E+02 2.8603069195E+02 2.8192583253E+02 2.7768287727E+02 2.7331337924E+02 2.6882897546E+02 2.6424132640E+02 2.5956205681E+02 2.5480269816E+02 2.4997463310E+02 2.4508904246E+02 2.4015685502E+02 2.3518870044E+02 2.3019486561E+02 2.2518525473E+02 2.2016935337E+02 2.1515619659E+02 2.1015434143E+02 2.0517184372E+02 2.0021623948E+02 1.9529453073E+02 1.9041317583E+02 1.8557808434E+02 1.8079461617E+02 1.7606758504E+02 1.7140126600E+02 1.6679940687E+02 1.6226524332E+02 1.5780151743E+02 1.5341049937E+02 1.4909401185E+02 1.4485345723E+02 1.4068984668E+02 1.3660383127E+02 1.3259573442E+02 1.2866558557E+02 1.2481315449E+02 1.2103798601E+02 1.1733943472E+02 1.1371669934E+02 1.1016885641E+02 1.0669489290E+02 1.0329373759E+02 9.9964290727E+01 9.6705451914E+01 9.3516145788E+01 9.0395345422E+01 8.7342093213E+01 8.4355519093E+01 8.1434855983E+01 7.8579452370E+01 7.5788781969E+01 7.3062450453E+01 7.0400199251E+01 6.7801906467E+01 6.5267584992E+01 6.2797377912E+01 6.0391551352E+01 5.8050484899E+01 5.5774659811E+01 5.3564645186E+01 5.1421082349E+01 4.9344667671E+01 4.7336134085E+01 4.5396231568E+01 4.3525706858E+01 4.1725282681E+01 3.9995636776E+01 3.8337380990E+01 3.6751040717E+01 3.5237034959E+01 3.3795657245E+01 3.2427057674E+01 3.1131226295E+01 2.9907978047E+01 2.8756939434E+01 2.7677537126E+01 2.6668988616E+01 2.5730295059E+01 2.4860236392E+01 2.4057368806E+01 2.3320024599E+01 2.2646314452E+01 2.2034132080E+01 2.1481161258E+01 2.0984885125E+01 2.0542597693E+01 2.0151417446E+01 1.9808302888E+01 1.9510069881E+01 1.9253410602E+01 1.9034913924E+01 1.8851087007E+01 1.8698377887E+01 - 2.9509114973E+02 2.9232930901E+02 2.8936539358E+02 2.8620841041E+02 2.8286784606E+02 2.7935361212E+02 2.7567598872E+02 2.7184556679E+02 2.6787318912E+02 2.6376989105E+02 2.5954684101E+02 2.5521528145E+02 2.5078647051E+02 2.4627162504E+02 2.4168186509E+02 2.3702816061E+02 2.3232128044E+02 2.2757174405E+02 2.2278977645E+02 2.1798526627E+02 2.1316772766E+02 2.0834626585E+02 2.0352954679E+02 1.9872577094E+02 1.9394265131E+02 1.8918739586E+02 1.8446669420E+02 1.7978670867E+02 1.7515306976E+02 1.7057087569E+02 1.6604469609E+02 1.6157857962E+02 1.5717606540E+02 1.5284019787E+02 1.4857354500E+02 1.4437821950E+02 1.4025590277E+02 1.3620787119E+02 1.3223502459E+02 1.2833791640E+02 1.2451678518E+02 1.2077158722E+02 1.1710202985E+02 1.1350760500E+02 1.0998762280E+02 1.0654124482E+02 1.0316751659E+02 9.9865399122E+01 9.6633799178E+01 9.3471597896E+01 9.0377677642E+01 8.7350946779E+01 8.4390362195E+01 8.1494949383E+01 7.8663819969E+01 7.5896186539E+01 7.3191374706E+01 7.0548832362E+01 6.7968136093E+01 6.5448994774E+01 6.2991250392E+01 6.0594876162E+01 5.8259972041E+01 5.5986757779E+01 5.3775563642E+01 5.1626819008E+01 4.9541039011E+01 4.7518809469E+01 4.5560770312E+01 4.3667597774E+01 4.1839985585E+01 4.0078625443E+01 3.8384187029E+01 3.6757297822E+01 3.5198523005E+01 3.3708345706E+01 3.2287147837E+01 3.0935191783E+01 2.9652603162E+01 2.8439354890E+01 2.7295252743E+01 2.6219922599E+01 2.5212799527E+01 2.4273118867E+01 2.3399909395E+01 2.2591988696E+01 2.1847960783E+01 2.1166216017E+01 2.0544933336E+01 1.9982084779E+01 1.9475442275E+01 1.9022586621E+01 1.8620918571E+01 1.8267671921E+01 1.7959928459E+01 1.7694634631E+01 1.7468619742E+01 1.7278615521E+01 1.7121276835E+01 1.6993203349E+01 - 2.8018758390E+02 2.7749828365E+02 2.7461647111E+02 2.7155089316E+02 2.6831075184E+02 2.6490565162E+02 2.6134554479E+02 2.5764067558E+02 2.5380152337E+02 2.4983874544E+02 2.4576311966E+02 2.4158548765E+02 2.3731669863E+02 2.3296755464E+02 2.2854875731E+02 2.2407085660E+02 2.1954420196E+02 2.1497889611E+02 2.1038475187E+02 2.0577125220E+02 2.0114751372E+02 1.9652225404E+02 1.9190376280E+02 1.8729987693E+02 1.8271795985E+02 1.7816488493E+02 1.7364702317E+02 1.6917023500E+02 1.6473986628E+02 1.6036074832E+02 1.5603720185E+02 1.5177304475E+02 1.4757160338E+02 1.4343572734E+02 1.3936780730E+02 1.3536979574E+02 1.3144323032E+02 1.2758925951E+02 1.2380867018E+02 1.2010191689E+02 1.1646915248E+02 1.1291025959E+02 1.0942488287E+02 1.0601246144E+02 1.0267226132E+02 9.9403407502E+01 9.6204915314E+01 9.3075720791E+01 9.0014709800E+01 8.7020745618E+01 8.4092694728E+01 8.1229450631E+01 7.8429955467E+01 7.5693219288E+01 7.3018336844E+01 7.0404501781E+01 6.7851018167E+01 6.5357309313E+01 6.2922923853E+01 6.0547539129E+01 5.8230961890E+01 5.5973126408E+01 5.3774090091E+01 5.1634026731E+01 4.9553217527E+01 4.7532040064E+01 4.5570955433E+01 4.3670493704E+01 4.1831237978E+01 4.0053807252E+01 3.8338838339E+01 3.6686967110E+01 3.5098809302E+01 3.3574941152E+01 3.2115880124E+01 3.0722065970E+01 2.9393842377E+01 2.8131439432E+01 2.6934957134E+01 2.5804350153E+01 2.4739414045E+01 2.3739773074E+01 2.2804869817E+01 2.1933956676E+01 2.1126089398E+01 2.0380122711E+01 1.9694708106E+01 1.9068293839E+01 1.8499127125E+01 1.7985258548E+01 1.7524548613E+01 1.7114676412E+01 1.6753150291E+01 1.6437320425E+01 1.6164393171E+01 1.5931447053E+01 1.5735450206E+01 1.5573279117E+01 1.5441738449E+01 1.5337581764E+01 - 2.6533815624E+02 2.6272092139E+02 2.5992084251E+02 2.5694640491E+02 2.5380652426E+02 2.5051049551E+02 2.4706794021E+02 2.4348875263E+02 2.3978304498E+02 2.3596109237E+02 2.3203327766E+02 2.2801003683E+02 2.2390180514E+02 2.1971896454E+02 2.1547179269E+02 2.1117041390E+02 2.0682475244E+02 2.0244448841E+02 1.9803901655E+02 1.9361740819E+02 1.8918837658E+02 1.8476024586E+02 1.8034092373E+02 1.7593787800E+02 1.7155811712E+02 1.6720817476E+02 1.6289409835E+02 1.5862144176E+02 1.5439526184E+02 1.5022011893E+02 1.4610008108E+02 1.4203873196E+02 1.3803918213E+02 1.3410408360E+02 1.3023564734E+02 1.2643566361E+02 1.2270552465E+02 1.1904624967E+02 1.1545851160E+02 1.1194266549E+02 1.0849877808E+02 1.0512665830E+02 1.0182588834E+02 9.8595855005E+01 9.5435780916E+01 9.2344755416E+01 8.9321764740E+01 8.6365721222E+01 8.3475491264E+01 8.0649921802E+01 7.7887865054E+01 7.5188201330E+01 7.2549859733E+01 6.9971836587E+01 6.7453211468E+01 6.4993160746E+01 6.2590968551E+01 6.0246035135E+01 5.7957882615E+01 5.5726158112E+01 5.3550634332E+01 5.1431207656E+01 4.9367893848E+01 4.7360821490E+01 4.5410223303E+01 4.3516425506E+01 4.1679835409E+01 3.9900927438E+01 3.8180227810E+01 3.6518298075E+01 3.4915717783E+01 3.3373066493E+01 3.1890905396E+01 3.0469758777E+01 2.9110095576E+01 2.7812311291E+01 2.6576710442E+01 2.5403489838E+01 2.4292722849E+01 2.3244344893E+01 2.2258140305E+01 2.1333730772E+01 2.0470565463E+01 1.9667912998E+01 1.8924855335E+01 1.8240283684E+01 1.7612896477E+01 1.7041199450E+01 1.6523507834E+01 1.6057950640E+01 1.5642477003E+01 1.5274864532E+01 1.4952729561E+01 1.4673539224E+01 1.4434625207E+01 1.4233199052E+01 1.4066368847E+01 1.3931157132E+01 1.3824519832E+01 1.3743366032E+01 - 2.5061466912E+02 2.4806879626E+02 2.4534981248E+02 2.4246594106E+02 2.3942581030E+02 2.3623840432E+02 2.3291301221E+02 2.2945917615E+02 2.2588663879E+02 2.2220529028E+02 2.1842511541E+02 2.1455614122E+02 2.1060838541E+02 2.0659180608E+02 2.0251625295E+02 1.9839142058E+02 1.9422680385E+02 1.9003165594E+02 1.8581494914E+02 1.8158533879E+02 1.7735113043E+02 1.7312025045E+02 1.6890022034E+02 1.6469813470E+02 1.6052064306E+02 1.5637393554E+02 1.5226373240E+02 1.4819527750E+02 1.4417333550E+02 1.4020219281E+02 1.3628566214E+02 1.3242709052E+02 1.2862937056E+02 1.2489495484E+02 1.2122587311E+02 1.1762375210E+02 1.1408983771E+02 1.1062501920E+02 1.0722985518E+02 1.0390460108E+02 1.0064923769E+02 9.7463500661E+01 9.4346910378E+01 9.1298802174E+01 8.8318356364E+01 8.5404627905E+01 8.2556575373E+01 7.9773088972E+01 7.7053017332E+01 7.4395192846E+01 7.1798455336E+01 6.9261673849E+01 6.6783766404E+01 6.4363717565E+01 6.2000593690E+01 5.9693555791E+01 5.7441869926E+01 5.5244915089E+01 5.3102188588E+01 5.1013308930E+01 4.8978016263E+01 4.6996170439E+01 4.5067746797E+01 4.3192829782E+01 4.1371604553E+01 3.9604346723E+01 3.7891410419E+01 3.6233214861E+01 3.4630229656E+01 3.3082959033E+01 3.1591925246E+01 3.0157651373E+01 2.8780643748E+01 2.7461374273E+01 2.6200262821E+01 2.4997659989E+01 2.3853830397E+01 2.2768936775E+01 2.1743025009E+01 2.0776010361E+01 1.9867665029E+01 1.9017607190E+01 1.8225291691E+01 1.7490002475E+01 1.6810846862E+01 1.6186751752E+01 1.5616461796E+01 1.5098539580E+01 1.4631367812E+01 1.4213153504E+01 1.3841934120E+01 1.3515585608E+01 1.3231832255E+01 1.2988258255E+01 1.2782320877E+01 1.2611365083E+01 1.2472639466E+01 1.2363313321E+01 1.2280494686E+01 1.2221249163E+01 - 2.3608481680E+02 2.3360940347E+02 2.3097063704E+02 2.2817647902E+02 2.2523527037E+02 2.2215568398E+02 2.1894667586E+02 2.1561743520E+02 2.1217733384E+02 2.0863587555E+02 2.0500264535E+02 2.0128725941E+02 1.9749931577E+02 1.9364834636E+02 1.8974377055E+02 1.8579485057E+02 1.8181064922E+02 1.7779998998E+02 1.7377141993E+02 1.6973317557E+02 1.6569315188E+02 1.6165887468E+02 1.5763747651E+02 1.5363567607E+02 1.4965976135E+02 1.4571557644E+02 1.4180851211E+02 1.3794350001E+02 1.3412501058E+02 1.3035705450E+02 1.2664318750E+02 1.2298651855E+02 1.1938972113E+02 1.1585504743E+02 1.1238434524E+02 1.0897907729E+02 1.0564034287E+02 1.0236890128E+02 9.9165197031E+01 9.6029386357E+01 9.2961364796E+01 8.9960795549E+01 8.7027138294E+01 8.4159678159E+01 8.1357554576E+01 7.8619789710E+01 7.5945316209E+01 7.3333004003E+01 7.0781685911E+01 6.8290181831E+01 6.5857321305E+01 6.3481964274E+01 6.1163019872E+01 5.8899463095E+01 5.6690349275E+01 5.4534826229E+01 5.2432144058E+01 5.0381662548E+01 4.8382856169E+01 4.6435316696E+01 4.4538753489E+01 4.2692991522E+01 4.0897967228E+01 3.9153722299E+01 3.7460395565E+01 3.5818213114E+01 3.4227476815E+01 3.2688551445E+01 3.1201850607E+01 2.9767821653E+01 2.8386929829E+01 2.7059641866E+01 2.5786409235E+01 2.4567651297E+01 2.3403738578E+01 2.2294976369E+01 2.1241588878E+01 2.0243704140E+01 1.9301339854E+01 1.8414390358E+01 1.7582614876E+01 1.6805627206E+01 1.6082886960E+01 1.5413692486E+01 1.4797175543E+01 1.4232297813E+01 1.3717849287E+01 1.3252448561E+01 1.2834545034E+01 1.2462423007E+01 1.2134207627E+01 1.1847872630E+01 1.1601249801E+01 1.1392040045E+01 1.1217825974E+01 1.1076085849E+01 1.0964208766E+01 1.0879510898E+01 1.0819252645E+01 1.0780656495E+01 - 2.2181171040E+02 2.1940568423E+02 2.1684604837E+02 2.1414050356E+02 2.1129710420E+02 2.0832421263E+02 2.0523045211E+02 2.0202465903E+02 1.9871583444E+02 1.9531309548E+02 1.9182562703E+02 1.8826263382E+02 1.8463329354E+02 1.8094671111E+02 1.7721187454E+02 1.7343761267E+02 1.6963255503E+02 1.6580509419E+02 1.6196335067E+02 1.5811514081E+02 1.5426794768E+02 1.5042889520E+02 1.4660472559E+02 1.4280178038E+02 1.3902598477E+02 1.3528283568E+02 1.3157739327E+02 1.2791427605E+02 1.2429765941E+02 1.2073127754E+02 1.1721842863E+02 1.1376198318E+02 1.1036439528E+02 1.0702771664E+02 1.0375361317E+02 1.0054338388E+02 9.7397981887E+01 9.4318037168E+01 9.1303880939E+01 8.8355571232E+01 8.5472919480E+01 8.2655517782E+01 7.9902766576E+01 7.7213902429E+01 7.4588025664E+01 7.2024127560E+01 6.9521116859E+01 6.7077845338E+01 6.4693132218E+01 6.2365787183E+01 6.0094631836E+01 5.7878519399E+01 5.5716352519E+01 5.3607099048E+01 5.1549805693E+01 4.9543609460E+01 4.7587746836E+01 4.5681560686E+01 4.3824504859E+01 4.2016146528E+01 4.0256166302E+01 3.8544356201E+01 3.6880615560E+01 3.5264944989E+01 3.3697438529E+01 3.2178274130E+01 3.0707702642E+01 2.9286035480E+01 2.7913631165E+01 2.6590880932E+01 2.5318193620E+01 2.4095980050E+01 2.2924637110E+01 2.1804531755E+01 2.0735985142E+01 1.9719257095E+01 1.8754531119E+01 1.7841900131E+01 1.6981353116E+01 1.6172762846E+01 1.5415874846E+01 1.4710297717E+01 1.4055494963E+01 1.3450778401E+01 1.2895303252E+01 1.2388064976E+01 1.1927897883E+01 1.1513475555E+01 1.1143313072E+01 1.0815771031E+01 1.0529061309E+01 1.0281254523E+01 1.0070289102E+01 9.8939818795E+00 9.7500400978E+00 9.6360746936E+00 9.5496147295E+00 9.4881228187E+00 9.4490113806E+00 9.4296595596E+00 - 2.0785347222E+02 2.0551561960E+02 2.0303384835E+02 2.0041560022E+02 1.9766864464E+02 1.9480103483E+02 1.9182106272E+02 1.8873721308E+02 1.8555811728E+02 1.8229250684E+02 1.7894916733E+02 1.7553689284E+02 1.7206444130E+02 1.6854049117E+02 1.6497359955E+02 1.6137216224E+02 1.5774437582E+02 1.5409820212E+02 1.5044133530E+02 1.4678117165E+02 1.4312478242E+02 1.3947888968E+02 1.3584984545E+02 1.3224361412E+02 1.2866575823E+02 1.2512142763E+02 1.2161535208E+02 1.1815183715E+02 1.1473476346E+02 1.1136758912E+02 1.0805335522E+02 1.0479469437E+02 1.0159384190E+02 9.8452649839E+01 9.5372603094E+01 9.2354837967E+01 8.9400162530E+01 8.6509078713E+01 8.3681805818E+01 8.0918305197E+01 7.8218305817E+01 7.5581330441E+01 7.3006722154E+01 7.0493670955E+01 6.8041240164E+01 6.5648392375E+01 6.3314014717E+01 6.1036943188E+01 5.8815985852E+01 5.6649944682E+01 5.4537635889E+01 5.2477908555E+01 5.0469661446E+01 4.8511857875E+01 4.6603538530E+01 4.4743832186E+01 4.2931964263E+01 4.1167263207E+01 3.9449164685E+01 3.7777213630E+01 3.6151064183E+01 3.4570477587E+01 3.3035318147E+01 3.1545547345E+01 3.0101216248E+01 2.8702456353E+01 2.7349469026E+01 2.6042513704E+01 2.4781895054E+01 2.3567949257E+01 2.2401029649E+01 2.1281491877E+01 2.0209678818E+01 1.9185905426E+01 1.8210443730E+01 1.7283508175E+01 1.6405241491E+01 1.5575701265E+01 1.4794847403E+01 1.4062530621E+01 1.3378482124E+01 1.2742304589E+01 1.2153464569E+01 1.1611286420E+01 1.1114947814E+01 1.0663476903E+01 1.0255751174E+01 9.8904980093E+00 9.5662969504E+00 9.2815836504E+00 9.0346554703E+00 8.8236786654E+00 8.6466970843E+00 8.5016422914E+00 8.3863450038E+00 8.2985477241E+00 8.2359184336E+00 8.1960652036E+00 8.1765515696E+00 8.1749125079E+00 - 1.9426290243E+02 1.9199189620E+02 1.8958657376E+02 1.8705412016E+02 1.8440202220E+02 1.8163802628E+02 1.7877009523E+02 1.7580636444E+02 1.7275509774E+02 1.6962464313E+02 1.6642338896E+02 1.6315972062E+02 1.5984197825E+02 1.5647841570E+02 1.5307716098E+02 1.4964617860E+02 1.4619323384E+02 1.4272585946E+02 1.3925132482E+02 1.3577660771E+02 1.3230836905E+02 1.2885293053E+02 1.2541625537E+02 1.2200393225E+02 1.1862116242E+02 1.1527275008E+02 1.1196309595E+02 1.0869619407E+02 1.0547563172E+02 1.0230459233E+02 9.9185861393E+01 9.6121835105E+01 9.3114531651E+01 9.0165604936E+01 8.7276360566E+01 8.4447773859E+01 8.1680509656E+01 7.8974943704E+01 7.6331185349E+01 7.3749101292E+01 7.1228340142E+01 6.8768357513E+01 6.6368441399E+01 6.4027737574E+01 6.1745274766E+01 5.9519989363E+01 5.7350749427E+01 5.5236377779E+01 5.3175673980E+01 5.1167434990E+01 4.9210474358E+01 4.7303639786E+01 4.5445828931E+01 4.3636003349E+01 4.1873200481E+01 4.0156543628E+01 3.8485249875E+01 3.6858635937E+01 3.5276121935E+01 3.3737233140E+01 3.2241599716E+01 3.0788954544E+01 2.9379129212E+01 2.8012048273E+01 2.6687721907E+01 2.5406237112E+01 2.4167747583E+01 2.2972462454E+01 2.1820634050E+01 2.0712544860E+01 1.9648493906E+01 1.8628782687E+01 1.7653700918E+01 1.6723512229E+01 1.5838440026E+01 1.4998653705E+01 1.4204255373E+01 1.3455267271E+01 1.2751620049E+01 1.2093142026E+01 1.1479549589E+01 1.0910438846E+01 1.0385278620E+01 9.9034048884E+00 9.4640167390E+00 9.0661738732E+00 8.7087957122E+00 8.3906621077E+00 8.1104156582E+00 7.8665656071E+00 7.6574932839E+00 7.4814590308E+00 7.3366105426E+00 7.2209925299E+00 7.1325576040E+00 7.0691782677E+00 7.0286598830E+00 7.0087544803E+00 7.0071752621E+00 7.0216116478E+00 - 1.8108721980E+02 1.7888164590E+02 1.7655123489E+02 1.7410291805E+02 1.7154390253E+02 1.6888163092E+02 1.6612374004E+02 1.6327801903E+02 1.6035236733E+02 1.5735475261E+02 1.5429316912E+02 1.5117559674E+02 1.4800996099E+02 1.4480409423E+02 1.4156569850E+02 1.3830231005E+02 1.3502126594E+02 1.3172967283E+02 1.2843437822E+02 1.2514194430E+02 1.2185862449E+02 1.1859034291E+02 1.1534267671E+02 1.1212084156E+02 1.0892968007E+02 1.0577365338E+02 1.0265683575E+02 9.9582912221E+01 9.6555179201E+01 9.3576547953E+01 9.0649550802E+01 8.7776349977E+01 8.4958748919E+01 8.2198205865E+01 7.9495849533E+01 7.6852496692E+01 7.4268671406E+01 7.1744625707E+01 6.9280361478E+01 6.6875653288E+01 6.4530071940E+01 6.2243008486E+01 6.0013698451E+01 5.7841246045E+01 5.5724648101E+01 5.3662817544E+01 5.1654606138E+01 4.9698826339E+01 4.7794272045E+01 4.5939738072E+01 4.4134038201E+01 4.2376021663E+01 4.0664587928E+01 3.8998699718E+01 3.7377394147E+01 3.5799791953E+01 3.4265104766E+01 3.2772640423E+01 3.1321806310E+01 2.9912110789E+01 2.8543162743E+01 2.7214669305E+01 2.5926431874E+01 2.4678340511E+01 2.3470366829E+01 2.2302555532E+01 2.1175014726E+01 2.0087905171E+01 1.9041428644E+01 1.8035815574E+01 1.7071312137E+01 1.6148166984E+01 1.5266617789E+01 1.4426877797E+01 1.3629122550E+01 1.2873476957E+01 1.2160002884E+01 1.1488687418E+01 1.0859431949E+01 1.0272042215E+01 9.7262194216E+00 9.2215525585E+00 8.7575119992E+00 8.3334444650E+00 7.9485694167E+00 7.6019769177E+00 7.2926269974E+00 7.0193505252E+00 6.7808515887E+00 6.5757113516E+00 6.4023933522E+00 6.2592501843E+00 6.1445314913E+00 6.0563931853E+00 5.9929077939E+00 5.9520758232E+00 5.9318380149E+00 5.9300883677E+00 5.9446877836E+00 5.9734781951E+00 - 1.6836787731E+02 1.6622625987E+02 1.6396912845E+02 1.6160316392E+02 1.5913529734E+02 1.5657267123E+02 1.5392260022E+02 1.5119253118E+02 1.4839000322E+02 1.4552260781E+02 1.4259794936E+02 1.3962360653E+02 1.3660709445E+02 1.3355582839E+02 1.3047708870E+02 1.2737798776E+02 1.2426543867E+02 1.2114612629E+02 1.1802648052E+02 1.1491265211E+02 1.1181049114E+02 1.0872552819E+02 1.0566295839E+02 1.0262762831E+02 9.9624025786E+01 9.6656272654E+01 9.3728120414E+01 9.0842948718E+01 8.8003766669E+01 8.5213216808E+01 8.2473581690E+01 7.9786792909E+01 7.7154442423E+01 7.4577796006E+01 7.2057808642E+01 6.9595141663E+01 6.7190181419E+01 6.4843059263E+01 6.2553672621E+01 6.0321706917E+01 5.8146658121E+01 5.6027855681E+01 5.3964485613E+01 5.1955613517E+01 5.0000207299E+01 4.8097159383E+01 4.6245308220E+01 4.4443458890E+01 4.2690402632E+01 4.0984935134E+01 3.9325873436E+01 3.7712071334E+01 3.6142433151E+01 3.4615925818E+01 3.3131589162E+01 3.1688544383E+01 3.0286000673E+01 2.8923259973E+01 2.7599719891E+01 2.6314874791E+01 2.5068315129E+01 2.3859725087E+01 2.2688878598E+01 2.1555633864E+01 2.0459926473E+01 1.9401761266E+01 1.8381203070E+01 1.7398366458E+01 1.6453404699E+01 1.5546498051E+01 1.4677841574E+01 1.3847632626E+01 1.3056058222E+01 1.2303282417E+01 1.1589433882E+01 1.0914593844E+01 1.0278784525E+01 9.6819582487E+00 9.1239873309E+00 8.6046549010E+00 8.1236467489E+00 7.6805443090E+00 7.2748188639E+00 6.9058270373E+00 6.5728076343E+00 6.2748798652E+00 6.0110429784E+00 5.7801773062E+00 5.5810467166E+00 5.4123024434E+00 5.2724882544E+00 5.1600469013E+00 5.0733277825E+00 5.0105957331E+00 4.9700408501E+00 4.9497892434E+00 4.9479145993E+00 4.9624504298E+00 4.9914028793E+00 5.0327639495E+00 - 1.5614045211E+02 1.5406127694E+02 1.5187572433E+02 1.4959022860E+02 1.4721144874E+02 1.4474623154E+02 1.4220157399E+02 1.3958458541E+02 1.3690244951E+02 1.3416238663E+02 1.3137161652E+02 1.2853732189E+02 1.2566661295E+02 1.2276649324E+02 1.1984382699E+02 1.1690530817E+02 1.1395743147E+02 1.1100646544E+02 1.0805842784E+02 1.0511906342E+02 1.0219382428E+02 9.9287852767E+01 9.6405967167E+01 9.3552650064E+01 9.0732039511E+01 8.7947922957E+01 8.5203733906E+01 8.2502551285E+01 7.9847101422E+01 7.7239762556E+01 7.4682571769E+01 7.2177234195E+01 6.9725134374E+01 6.7327349568E+01 6.4984664872E+01 6.2697589927E+01 6.0466377024E+01 5.8291040407E+01 5.6171376538E+01 5.4106985117E+01 5.2097290643E+01 5.0141564272E+01 4.8238945773E+01 4.6388465366E+01 4.4589065224E+01 4.2839620449E+01 4.1138959336E+01 3.9485882737E+01 3.7879182370E+01 3.6317657929E+01 3.4800132849E+01 3.3325468622E+01 3.1892577560E+01 3.0500433933E+01 2.9148083409E+01 2.7834650773E+01 2.6559345886E+01 2.5321467890E+01 2.4120407677E+01 2.2955648651E+01 2.1826765839E+01 2.0733423416E+01 1.9675370732E+01 1.8652436939E+01 1.7664524333E+01 1.6711600522E+01 1.5793689579E+01 1.4910862294E+01 1.4063225700E+01 1.3250912010E+01 1.2474067137E+01 1.1732838949E+01 1.1027365420E+01 1.0357762846E+01 9.7241142651E+00 9.1264582442E+00 8.5647781733E+00 8.0389921998E+00 7.5489439321E+00 7.0943940265E+00 6.6750127614E+00 6.2903736894E+00 5.9399484450E+00 5.6231027701E+00 5.3390938062E+00 5.0870686854E+00 4.8660644392E+00 4.6750092262E+00 4.5127248671E+00 4.3779306584E+00 4.2692484240E+00 4.1852087479E+00 4.1242583206E+00 4.0847683178E+00 4.0650437189E+00 4.0633334659E+00 4.0778413499E+00 4.1067375087E+00 4.1481704116E+00 4.2002792018E+00 - 1.4443460829E+02 1.4241634448E+02 1.4030062485E+02 1.3809364131E+02 1.3580178537E+02 1.3343161293E+02 1.3098980849E+02 1.2848314929E+02 1.2591846928E+02 1.2330262358E+02 1.2064245340E+02 1.1794475174E+02 1.1521623026E+02 1.1246348730E+02 1.0969297751E+02 1.0691098309E+02 1.0412358697E+02 1.0133664805E+02 9.8555778572E+01 9.5786323884E+01 9.3033344606E+01 9.0301601305E+01 8.7595541748E+01 8.4919290762E+01 8.2276642713E+01 7.9671056604E+01 7.7105653755E+01 7.4583218009E+01 7.2106198402E+01 6.9676714191E+01 6.7296562134E+01 6.4967225890E+01 6.2689887398E+01 6.0465440064E+01 5.8294503594E+01 5.6177440287E+01 5.4114372582E+01 5.2105201681E+01 5.0149627027E+01 4.8247166427E+01 4.6397176629E+01 4.4598874124E+01 4.2851355979E+01 4.1153620503E+01 3.9504587541E+01 3.7903118227E+01 3.6348034008E+01 3.4838134778E+01 3.3372215986E+01 3.1949084557E+01 3.0567573531E+01 2.9226555300E+01 2.7924953360E+01 2.6661752511E+01 2.5436007453E+01 2.4246849737E+01 2.3093493070E+01 2.1975236963E+01 2.0891468745E+01 1.9841663992E+01 1.8825385402E+01 1.7842280206E+01 1.6892076190E+01 1.5974576416E+01 1.5089652772E+01 1.4237238443E+01 1.3417319456E+01 1.2629925418E+01 1.1875119602E+01 1.1152988519E+01 1.0463631123E+01 9.8071478149E+00 9.1836293777E+00 8.5931460025E+00 8.0357365452E+00 7.5113981542E+00 7.0200764017E+00 6.5616560432E+00 6.1359525202E+00 5.7427043122E+00 5.3815662307E+00 5.0521037370E+00 4.7537883527E+00 4.4859942178E+00 4.2479958376E+00 4.0389670445E+00 3.8579811888E+00 3.7040125556E+00 3.5759389927E+00 3.4725457186E+00 3.3925302708E+00 3.3345085347E+00 3.2970217903E+00 3.2785446950E+00 3.2774941155E+00 3.2922387122E+00 3.3211091695E+00 3.3624089625E+00 3.4144255402E+00 3.4754418087E+00 - 1.3327413017E+02 1.3131524961E+02 1.2926759394E+02 1.2713711717E+02 1.2492994824E+02 1.2265235748E+02 1.2031072265E+02 1.1791149491E+02 1.1546116489E+02 1.1296622914E+02 1.1043315720E+02 1.0786835954E+02 1.0527815655E+02 1.0266874886E+02 1.0004618908E+02 9.7416355318E+01 9.4784926451E+01 9.2157359430E+01 8.9538868705E+01 8.6934407886E+01 8.4348653730E+01 8.1785992528E+01 7.9250508939E+01 7.6745977294E+01 7.4275855391E+01 7.1843280735E+01 6.9451069227E+01 6.7101716203E+01 6.4797399780E+01 6.2539986398E+01 6.0331038445E+01 5.8171823845E+01 5.6063327464E+01 5.4006264168E+01 5.2001093389E+01 5.0048034989E+01 4.8147086274E+01 4.6298039941E+01 4.4500502773E+01 4.2753914883E+01 4.1057569320E+01 3.9410631823E+01 3.7812160546E+01 3.6261125567E+01 3.4756427988E+01 3.3296918474E+01 3.1881415054E+01 3.0508720038E+01 2.9177635927E+01 2.7886980167E+01 2.6635598664E+01 2.5422377951E+01 2.4246255936E+01 2.3106231172E+01 2.2001370605E+01 2.0930815770E+01 1.9893787435E+01 1.8889588688E+01 1.7917606504E+01 1.6977311821E+01 1.6068258187E+01 1.5190079045E+01 1.4342483733E+01 1.3525252300E+01 1.2738229243E+01 1.1981316273E+01 1.1254464240E+01 1.0557664337E+01 9.8909387368E+00 9.2543307734E+00 8.6478948311E+00 8.0716860703E+00 7.5257501340E+00 7.0101129723E+00 6.5247709174E+00 6.0696811394E+00 5.6447526025E+00 5.2498376379E+00 4.8847242353E+00 4.5491291510E+00 4.2426919144E+00 3.9649698061E+00 3.7154338677E+00 3.4934659903E+00 3.2983571160E+00 3.1293065739E+00 2.9854225559E+00 2.8657237296E+00 2.7691419671E+00 2.6945261585E+00 2.6406470676E+00 2.6062031726E+00 2.5898274282E+00 2.5900948696E+00 2.6055309779E+00 2.6346207090E+00 2.6758180906E+00 2.7275562782E+00 2.7882579634E+00 2.8563460183E+00 - 1.2267702239E+02 1.2077601715E+02 1.1879465312E+02 1.1673865111E+02 1.1461388277E+02 1.1242633859E+02 1.1018209577E+02 1.0788728604E+02 1.0554806368E+02 1.0317057401E+02 1.0076092260E+02 9.8325145264E+01 9.5869179309E+01 9.3398835957E+01 9.0919774318E+01 8.8437476987E+01 8.5957227459E+01 8.3484089464E+01 8.1022888367E+01 7.8578194717E+01 7.6154310021E+01 7.3755254812E+01 7.1384759030E+01 6.9046254759E+01 6.6742871293E+01 6.4477432522E+01 6.2252456590E+01 6.0070157768E+01 5.7932450458E+01 5.5840955237E+01 5.3797006828E+01 5.1801663866E+01 4.9855720329E+01 4.7959718476E+01 4.6113963134E+01 4.4318537165E+01 4.2573317927E+01 4.0877994570E+01 3.9232085958E+01 3.7634959045E+01 3.6085847522E+01 3.4583870542E+01 3.3128051352E+01 3.1717335656E+01 3.0350609546E+01 2.9026716833E+01 2.7744475648E+01 2.6502694159E+01 2.5300185291E+01 2.4135780330E+01 2.3008341328E+01 2.1916772209E+01 2.0860028524E+01 1.9837125801E+01 1.8847146448E+01 1.7889245200E+01 1.6962653103E+01 1.6066680049E+01 1.5200715881E+01 1.4364230128E+01 1.3556770411E+01 1.2777959592E+01 1.2027491752E+01 1.1305127087E+01 1.0610685825E+01 9.9440412637E+00 9.3051120700E+00 8.6938539372E+00 8.1102507452E+00 7.5543053471E+00 7.0260301149E+00 6.5254373761E+00 6.0525298714E+00 5.6072913604E+00 5.1896774991E+00 4.7996071065E+00 4.4369539317E+00 4.1015390244E+00 3.7931238035E+00 3.5114039092E+00 3.2560039125E+00 3.0264729454E+00 2.8222813038E+00 2.6428180629E+00 2.4873897312E+00 2.3552199597E+00 2.2454503076E+00 2.1571420542E+00 2.0892790368E+00 2.0407714782E+00 2.0104607624E+00 1.9971251005E+00 1.9994860232E+00 2.0162156257E+00 2.0459444839E+00 2.0872701508E+00 2.1387661416E+00 2.1989913046E+00 2.2664994775E+00 2.3398493207E+00 - 1.1265567273E+02 1.1081107023E+02 1.0889423986E+02 1.0691067420E+02 1.0486599308E+02 1.0276591327E+02 1.0061621802E+02 9.8422726724E+01 9.6191264854E+01 9.3927634478E+01 9.1637585466E+01 8.9326787663E+01 8.7000804176E+01 8.4665065980E+01 8.2324847992E+01 7.9985246777E+01 7.7651160006E+01 7.5327267808E+01 7.3018016095E+01 7.0727601958E+01 6.8459961197E+01 6.6218758022E+01 6.4007376964E+01 6.1828917000E+01 5.9686187875E+01 5.7581708594E+01 5.5517708046E+01 5.3496127675E+01 5.1518626140E+01 4.9586585841E+01 4.7701121228E+01 4.5863088741E+01 4.4073098266E+01 4.2331525945E+01 4.0638528198E+01 3.8994056780E+01 3.7397874723E+01 3.5849572969E+01 3.4348587543E+01 3.2894217072E+01 3.1485640486E+01 3.0121934735E+01 2.8802092342E+01 2.7525038645E+01 2.6289648568E+01 2.5094762773E+01 2.3939203075E+01 2.2821786974E+01 2.1741341210E+01 2.0696714233E+01 1.9686787507E+01 1.8710485577E+01 1.7766784844E+01 1.6854720995E+01 1.5973395086E+01 1.5121978239E+01 1.4299714972E+01 1.3505925182E+01 1.2740004800E+01 1.2001425170E+01 1.1289731220E+01 1.0604538466E+01 9.9455289634E+00 9.3124462686E+00 8.7050895240E+00 8.1233067665E+00 7.5669875724E+00 7.0360551563E+00 6.5304580426E+00 6.0501614335E+00 5.5951383952E+00 5.1653609856E+00 4.7607914436E+00 4.3813735574E+00 4.0270243248E+00 3.6976260123E+00 3.3930187150E+00 3.1129935088E+00 2.8572862799E+00 2.6255723074E+00 2.4174616634E+00 2.2324954844E+00 2.0701431598E+00 1.9298004665E+00 1.8107886727E+00 1.7123546189E+00 1.6336717727E+00 1.5738422449E+00 1.5318997408E+00 1.5068134118E+00 1.4974925607E+00 1.5027921461E+00 1.5215190222E+00 1.5524388412E+00 1.5942835406E+00 1.6457593299E+00 1.7055550860E+00 1.7723510656E+00 1.8448278347E+00 1.9216753199E+00 - 1.0321707260E+02 1.0142744840E+02 9.9573423489E+01 9.7660267263E+01 9.5693353502E+01 9.3678131601E+01 9.1620097821E+01 8.9524766725E+01 8.7397643021E+01 8.5244193991E+01 8.3069822735E+01 8.0879842372E+01 7.8679451414E+01 7.6473710444E+01 7.4267520266E+01 7.2065601658E+01 6.9872476838E+01 6.7692452774E+01 6.5529606388E+01 6.3387771761E+01 6.1270529367E+01 5.9181197375E+01 5.7122825050E+01 5.5098188224E+01 5.3109786849E+01 5.1159844567E+01 4.9250310267E+01 4.7382861542E+01 4.5558909974E+01 4.3779608143E+01 4.2045858248E+01 4.0358322219E+01 3.8717433193E+01 3.7123408198E+01 3.5576261904E+01 3.4075821291E+01 3.2621741056E+01 3.1213519619E+01 2.9850515540E+01 2.8531964205E+01 2.7256994604E+01 2.6024646045E+01 2.4833884658E+01 2.3683619531E+01 2.2572718347E+01 2.1500022378E+01 2.0464360731E+01 1.9464563723E+01 1.8499475287E+01 1.7567964330E+01 1.6668934956E+01 1.5801335512E+01 1.4964166391E+01 1.4156486571E+01 1.3377418877E+01 1.2626153940E+01 1.1901952890E+01 1.1204148784E+01 1.0532146811E+01 9.8854233322E+00 9.2635237901E+00 8.6660595873E+00 8.0927039887E+00 7.5431871478E+00 7.0172903484E+00 6.5148395648E+00 6.0356984452E+00 5.5797608310E+00 5.1469429236E+00 4.7371752140E+00 4.3503942905E+00 3.9865346360E+00 3.6455205284E+00 3.3272581500E+00 3.0316280093E+00 2.7584777727E+00 2.5076155968E+00 2.2788040428E+00 2.0717546499E+00 1.8861232314E+00 1.7215059507E+00 1.5774362219E+00 1.4533824716E+00 1.3487467861E+00 1.2628644579E+00 1.1950044345E+00 1.1443706628E+00 1.1101043099E+00 1.0912868339E+00 1.0869438648E+00 1.0960498512E+00 1.1175334156E+00 1.1502833561E+00 1.1931552247E+00 1.2449784062E+00 1.3045636164E+00 1.3707107340E+00 1.4422168787E+00 1.5178846441E+00 1.5965303940E+00 - 9.4363089356E+01 9.2627077728E+01 9.0834172971E+01 8.8989426487E+01 8.7097971889E+01 8.5164997797E+01 8.3195720730E+01 8.1195358292E+01 7.9169102838E+01 7.7122095819E+01 7.5059402971E+01 7.2985990517E+01 7.0906702559E+01 6.8826239780E+01 6.6749139616E+01 6.4679757996E+01 6.2622252774E+01 6.0580568927E+01 5.8558425603E+01 5.6559305075E+01 5.4586443634E+01 5.2642824451E+01 5.0731172411E+01 4.8853950912E+01 4.7013360596E+01 4.5211339970E+01 4.3449567869E+01 4.1729467667E+01 4.0052213175E+01 3.8418736101E+01 3.6829734984E+01 3.5285685462E+01 3.3786851761E+01 3.2333299249E+01 3.0924907925E+01 2.9561386688E+01 2.8242288239E+01 2.6967024445E+01 2.5734882036E+01 2.4545038464E+01 2.3396577770E+01 2.2288506330E+01 2.1219768322E+01 2.0189260781E+01 1.9195848122E+01 1.8238376007E+01 1.7315684444E+01 1.6426620027E+01 1.5570047220E+01 1.4744858621E+01 1.3949984135E+01 1.3184399006E+01 1.2447130681E+01 1.1737264467E+01 1.1053947986E+01 1.0396394417E+01 9.7638845495E+00 9.1557676748E+00 8.5714613456E+00 8.0104500658E+00 7.4722829627E+00 6.9565705139E+00 6.4629804081E+00 5.9912326232E+00 5.5410938163E+00 5.1123711219E+00 4.7049054590E+00 4.3185644547E+00 3.9532350873E+00 3.6088161586E+00 3.2852107005E+00 2.9823184219E+00 2.7000282963E+00 2.4382113895E+00 2.1967140211E+00 1.9753513448E+00 1.7739014315E+00 1.5920999251E+00 1.4296353393E+00 1.2861450483E+00 1.1612120224E+00 1.0543623417E+00 9.6506351974E-01 8.9272365128E-01 8.3669139381E-01 7.9625677949E-01 7.7065284548E-01 7.5905806060E-01 7.6059951762E-01 7.7435685118E-01 7.9936683364E-01 8.3462859358E-01 8.7910939477E-01 9.3175090757E-01 9.9147589961E-01 1.0571952683E+00 1.1278153340E+00 1.2022453115E+00 1.2794048745E+00 1.3582317278E+00 - 8.6090784485E+01 8.4407086619E+01 8.2673670473E+01 8.0895374650E+01 7.9077098608E+01 7.7223776955E+01 7.5340353946E+01 7.3431758370E+01 7.1502878998E+01 6.9558540781E+01 6.7603481934E+01 6.5642332088E+01 6.3679591636E+01 6.1719612405E+01 5.9766579789E+01 5.7824496420E+01 5.5897167498E+01 5.3988187838E+01 5.2100930688E+01 5.0238538384E+01 4.8403914853E+01 4.6599719980E+01 4.4828365837E+01 4.3092014751E+01 4.1392579187E+01 3.9731723379E+01 3.8110866661E+01 3.6531188414E+01 3.4993634538E+01 3.3498925358E+01 3.2047564846E+01 3.0639851033E+01 2.9275887504E+01 2.7955595824E+01 2.6678728755E+01 2.5444884145E+01 2.4253519309E+01 2.3103965792E+01 2.1995444336E+01 2.0927079937E+01 1.9897916828E+01 1.8906933266E+01 1.7953055989E+01 1.7035174221E+01 1.6152153105E+01 1.5302846460E+01 1.4486108773E+01 1.3700806320E+01 1.2945827364E+01 1.2220091346E+01 1.1522557026E+01 1.0852229543E+01 1.0208166340E+01 9.5894819727E+00 8.9953517698E+00 8.4250143739E+00 7.8777731715E+00 7.3529966515E+00 6.8501177300E+00 6.3686320973E+00 5.9080956463E+00 5.4681210539E+00 5.0483735918E+00 4.6485662510E+00 4.2684542697E+00 3.9078291568E+00 3.5665123096E+00 3.2443483228E+00 2.9411980907E+00 2.6569318008E+00 2.3914219183E+00 2.1445362583E+00 1.9161312379E+00 1.7060453979E+00 1.5140932779E+00 1.3400597227E+00 1.1836946908E+00 1.0447086291E+00 9.2276846994E-01 8.1749429741E-01 7.2845672117E-01 6.5517498800E-01 5.9711585061E-01 5.5369320439E-01 5.2426849357E-01 5.0815187886E-01 5.0460414949E-01 5.1283935418E-01 5.3202811704E-01 5.6130159677E-01 5.9975604031E-01 6.4645787544E-01 7.0044928112E-01 7.6075416933E-01 8.2638450768E-01 8.9634690895E-01 9.6964941098E-01 1.0453083689E+00 1.1223553806E+00 1.1998441670E+00 - 7.8392770807E+01 7.6760160876E+01 7.5084664146E+01 7.3370911645E+01 7.1623574751E+01 6.9847340944E+01 6.8046889867E+01 6.6226869861E+01 6.4391875152E+01 6.2546423837E+01 6.0694936820E+01 5.8841717842E+01 5.6990934726E+01 5.5146601958E+01 5.3312564713E+01 5.1492484403E+01 4.9689825837E+01 4.7907846049E+01 4.6149584841E+01 4.4417857070E+01 4.2715246706E+01 4.1044102651E+01 3.9406536310E+01 3.7804420889E+01 3.6239392375E+01 3.4712852142E+01 3.3225971115E+01 3.1779695418E+01 3.0374753398E+01 2.9011663948E+01 2.7690746000E+01 2.6412129072E+01 2.5175764757E+01 2.3981439006E+01 2.2828785096E+01 2.1717297114E+01 2.0646343853E+01 1.9615182956E+01 1.8622975194E+01 1.7668798721E+01 1.6751663198E+01 1.5870523648E+01 1.5024293927E+01 1.4211859697E+01 1.3432090807E+01 1.2683852966E+01 1.1966018651E+01 1.1277477150E+01 1.0617143690E+01 9.9839675912E+00 9.3769394078E+00 8.7950970241E+00 8.2375306880E+00 7.7033869749E+00 7.1918716860E+00 6.7022516971E+00 6.2338557844E+00 5.7860744623E+00 5.3583588812E+00 4.9502188385E+00 4.5612199665E+00 4.1909801676E+00 3.8391653728E+00 3.5054847061E+00 3.1896851409E+00 2.8915457379E+00 2.6108715574E+00 2.3474873391E+00 2.1012310421E+00 1.8719473405E+00 1.6594811623E+00 1.4636713635E+00 1.2843446193E+00 1.1213096141E+00 9.7435160512E-01 8.4322742714E-01 7.2766100213E-01 6.2733940708E-01 5.4190954754E-01 4.7097547566E-01 4.1409638267E-01 3.7078528768E-01 3.4050843535E-01 3.2268540657E-01 3.1668993748E-01 3.2185143354E-01 3.3745715727E-01 3.6275506043E-01 3.9695722394E-01 4.3924386188E-01 4.8876783974E-01 5.4465965146E-01 6.0603279464E-01 6.7198947940E-01 7.4162660276E-01 8.1404191797E-01 8.8834032630E-01 9.6364021816E-01 1.0390797901E+00 1.1138232652E+00 - 7.1257601963E+01 6.9674931007E+01 6.8055853270E+01 6.6404797401E+01 6.4726212797E+01 6.3024546769E+01 6.1304222115E+01 5.9569615269E+01 5.7825035155E+01 5.6074702921E+01 5.4322732657E+01 5.2573113243E+01 5.0829691433E+01 4.9096156278E+01 4.7376024978E+01 4.5672630240E+01 4.3989109206E+01 4.2328393995E+01 4.0693203901E+01 3.9086039261E+01 3.7509176998E+01 3.5964667841E+01 3.4454335179E+01 3.2979775540E+01 3.1542360622E+01 3.0143240826E+01 2.8783350221E+01 2.7463412850E+01 2.6183950285E+01 2.4945290335E+01 2.3747576790E+01 2.2590780091E+01 2.1474708799E+01 2.0399021737E+01 1.9363240687E+01 1.8366763498E+01 1.7408877483E+01 1.6488772972E+01 1.5605556897E+01 1.4758266281E+01 1.3945881516E+01 1.3167339309E+01 1.2421545190E+01 1.1707385496E+01 1.1023738708E+01 1.0369486089E+01 9.7435215300E+00 9.1447605484E+00 8.5721483779E+00 8.0246671165E+00 7.5013418941E+00 7.0012460404E+00 6.5235052445E+00 6.0673007061E+00 5.6318712897E+00 5.2165147046E+00 4.8205877410E+00 4.4435056035E+00 4.0847403917E+00 3.7438187837E+00 3.4203189884E+00 3.1138670358E+00 2.8241324811E+00 2.5508236040E+00 2.2936821855E+00 2.0524779491E+00 1.8270027538E+00 1.6170646267E+00 1.4224817239E+00 1.2430763046E+00 1.0786688030E+00 9.2907207857E-01 7.9408592089E-01 6.7349188131E-01 5.6704849701E-01 4.7448696772E-01 3.9550733829E-01 3.2977523301E-01 2.7691918004E-01 2.3652855650E-01 2.0815217636E-01 1.9129753536E-01 1.8543071868E-01 1.8997696896E-01 2.0432190426E-01 2.2781336773E-01 2.5976388321E-01 2.9945368406E-01 3.4613427581E-01 3.9903248723E-01 4.5735495898E-01 5.2029301413E-01 5.8702785098E-01 6.5673599496E-01 7.2859494405E-01 8.0178894029E-01 8.7551479891E-01 9.4898772644E-01 1.0214470598E+00 1.0921618594E+00 - 6.4670187036E+01 6.3136384849E+01 6.1572298782E+01 5.9982160255E+01 5.8370202767E+01 5.6740640448E+01 5.5097647099E+01 5.3445335890E+01 5.1787739846E+01 5.0128793257E+01 4.8472314119E+01 4.6821987740E+01 4.5181351594E+01 4.3553781515E+01 4.1942479313E+01 4.0350461867E+01 3.8780551755E+01 3.7235369439E+01 3.5717327057E+01 3.4228623792E+01 3.2771242857E+01 3.1346950033E+01 2.9957293770E+01 2.8603606775E+01 2.7287009051E+01 2.6008412316E+01 2.4768525714E+01 2.3567862755E+01 2.2406749358E+01 2.1285332924E+01 2.0203592309E+01 1.9161348592E+01 1.8158276515E+01 1.7193916481E+01 1.6267686976E+01 1.5378897298E+01 1.4526760465E+01 1.3710406191E+01 1.2928893788E+01 1.2181224912E+01 1.1466356010E+01 1.0783210387E+01 1.0130689786E+01 9.5076853901E+00 8.9130881717E+00 8.3457985109E+00 7.8047350211E+00 7.2888425300E+00 6.7970991713E+00 6.3285225557E+00 5.8821749980E+00 5.4571677878E+00 5.0526645044E+00 4.6678833821E+00 4.3020987457E+00 3.9546415429E+00 3.6248990112E+00 3.3123135227E+00 3.0163806608E+00 2.7366465862E+00 2.4727047597E+00 2.2241920903E+00 1.9907845850E+00 1.7721925784E+00 1.5681556231E+00 1.3784371232E+00 1.2028187941E+00 1.0410950330E+00 8.9306727964E-01 7.5853844913E-01 6.3730751226E-01 5.2916429737E-01 4.3388458209E-01 3.5122553864E-01 2.8092159035E-01 2.2268073123E-01 1.7618135311E-01 1.4106961805E-01 1.1695740620E-01 1.0342086170E-01 9.9999551161E-02 1.0619624181E-01 1.2147729835E-01 1.4527369003E-01 1.7698259198E-01 2.1596955779E-01 2.6157123354E-01 3.1309857713E-01 3.6984054093E-01 4.3106817085E-01 4.9603906974E-01 5.6400216968E-01 6.3420275391E-01 7.0588766714E-01 7.7831065065E-01 8.5073773803E-01 9.2245264665E-01 9.9276210093E-01 1.0610010241E+00 1.1265375377E+00 - 5.8612223227E+01 5.7126298356E+01 5.5615852110E+01 5.4084923735E+01 5.2537536881E+01 5.0977679473E+01 4.9409284188E+01 4.7836209647E+01 4.6262222472E+01 4.4690980315E+01 4.3126015962E+01 4.1570722627E+01 4.0028340509E+01 3.8501944687E+01 3.6994434427E+01 3.5508523944E+01 3.4046734649E+01 3.2611388927E+01 3.1204605424E+01 2.9828295882E+01 2.8484163466E+01 2.7173702585E+01 2.5898200158E+01 2.4658738265E+01 2.3456198142E+01 2.2291265426E+01 2.1164436583E+01 2.0076026427E+01 1.9026176629E+01 1.8014865117E+01 1.7041916256E+01 1.6107011697E+01 1.5209701777E+01 1.4349417354E+01 1.3525481961E+01 1.2737124151E+01 1.1983489930E+01 1.1263655153E+01 1.0576637776E+01 9.9214098624E+00 9.2969092298E+00 8.7020506621E+00 8.1357365831E+00 7.5968671210E+00 7.0843494894E+00 6.5971066255E+00 6.1340850291E+00 5.6942617635E+00 5.2766505815E+00 4.8803071557E+00 4.5043333990E+00 4.1478808718E+00 3.8101532821E+00 3.4904080955E+00 3.1879572776E+00 2.9021672046E+00 2.6324577813E+00 2.3783008159E+00 2.1392177076E+00 1.9147765071E+00 1.7045884170E+00 1.5083038032E+00 1.3256077900E+00 1.1562155184E+00 9.9986714209E-01 8.5632264485E-01 7.2535655429E-01 6.0675263280E-01 5.0029862068E-01 4.0578110545E-01 3.2298058732E-01 2.5166680702E-01 1.9159439703E-01 1.4249891225E-01 1.0409328977E-01 7.6064781341E-02 5.8072395342E-02 4.9744877723E-02 5.0679254474E-02 6.0439950483E-02 7.8558492349E-02 1.0453379520E-01 1.3783302633E-01 1.7789303135E-01 2.2412230169E-01 2.7590345582E-01 3.3259620062E-01 3.9354073347E-01 4.5806154095E-01 5.2547154517E-01 5.9507654529E-01 6.6617989839E-01 7.3808738134E-01 8.1011217377E-01 8.8157990087E-01 9.5183367468E-01 1.0202390728E+00 1.0861889942E+00 1.1491083351E+00 1.2084584267E+00 - 5.3062639560E+01 5.1623677597E+01 5.0165595334E+01 4.8692244806E+01 4.7207445777E+01 4.5714966913E+01 4.4218507624E+01 4.2721680714E+01 4.1227995946E+01 3.9740844630E+01 3.8263485329E+01 3.6799030767E+01 3.5350436022E+01 3.3920488052E+01 3.2511796618E+01 3.1126786635E+01 2.9767691980E+01 2.8436550760E+01 2.7135202054E+01 2.5865284116E+01 2.4628233991E+01 2.3425288546E+01 2.2257486840E+01 2.1125673778E+01 2.0030505005E+01 1.8972452927E+01 1.7951813810E+01 1.6968715835E+01 1.6023128036E+01 1.5114869997E+01 1.4243622212E+01 1.3408936995E+01 1.2610249824E+01 1.1846891006E+01 1.1118097554E+01 1.0423025156E+01 9.7607601305E+00 9.1303312606E+00 8.5307214046E+00 7.9608787834E+00 7.4197278554E+00 6.9061796926E+00 6.4191417814E+00 5.9575271778E+00 5.5202629568E+00 5.1062979034E+00 4.7146094033E+00 4.3442094985E+00 3.9941500862E+00 3.6635272446E+00 3.3514846831E+00 3.0572163200E+00 2.7799680025E+00 2.5190383912E+00 2.2737790395E+00 2.0435937076E+00 1.8279369556E+00 1.6263120687E+00 1.4382683715E+00 1.2633979971E+00 1.1013321743E+00 9.5173710778E-01 8.1430952152E-01 6.8877194245E-01 5.7486779908E-01 4.7235641162E-01 3.8100794833E-01 3.0059842155E-01 2.3090479426E-01 1.7170026488E-01 1.2274979409E-01 8.3805932742E-02 5.4605005220E-02 3.4863696361E-02 2.4276084492E-02 2.2511156321E-02 2.9210832792E-02 4.3988528002E-02 6.6428256169E-02 9.6084294462E-02 1.3248140237E-01 1.7511559123E-01 2.2345543083E-01 2.7694387305E-01 3.3500056682E-01 3.9702463220E-01 4.6239785649E-01 5.3048826997E-01 6.0065405497E-01 6.7224773770E-01 7.4462060976E-01 8.1712732337E-01 8.8913060277E-01 9.6000601324E-01 1.0291467287E+00 1.0959682392E+00 1.1599129412E+00 1.2204545533E+00 1.2771023056E+00 1.3294048509E+00 - 4.7998044771E+01 4.6605205099E+01 4.5198285881E+01 4.3780956777E+01 4.2356839542E+01 4.0929490445E+01 3.9502383447E+01 3.8078894244E+01 3.6662285284E+01 3.5255691859E+01 3.3862109337E+01 3.2484381625E+01 3.1125190922E+01 2.9787048802E+01 2.8472288682E+01 2.7183059683E+01 2.5921321917E+01 2.4688843184E+01 2.3487197083E+01 2.2317762508E+01 2.1181724496E+01 2.0080076382E+01 1.9013623217E+01 1.7982986366E+01 1.6988609233E+01 1.6030764017E+01 1.5109559421E+01 1.4224949210E+01 1.3376741534E+01 1.2564608887E+01 1.1788098628E+01 1.1046643920E+01 1.0339575008E+01 9.6661307019E+00 9.0254699729E+00 8.4166835416E+00 7.8388053669E+00 7.2908239265E+00 6.7716931994E+00 6.2803432574E+00 5.8156903855E+00 5.3766466534E+00 4.9621288709E+00 4.5710668674E+00 4.2024110428E+00 3.8551391497E+00 3.5282622709E+00 3.2208299704E+00 2.9319346018E+00 2.6607147694E+00 2.4063579450E+00 2.1681022531E+00 1.9452374452E+00 1.7371050926E+00 1.5430980331E+00 1.3626591169E+00 1.1952792992E+00 1.0404951377E+00 8.9788575343E-01 7.6706932114E-01 6.4769915617E-01 5.3945946964E-01 4.4206086373E-01 3.5523564063E-01 2.7873299862E-01 2.1231418786E-01 1.5574769716E-01 1.0880454033E-01 7.1253708108E-02 4.2857847444E-02 2.3369226019E-02 1.2526034572E-02 1.0049074396E-02 1.5638871388E-02 2.8973251785E-02 4.9705408230E-02 7.7462477974E-02 1.1184464820E-01 1.5242479646E-01 1.9874866728E-01 2.5033557920E-01 3.0667964985E-01 3.6725152011E-01 4.3150055262E-01 4.9885747387E-01 5.6873742401E-01 6.4054337363E-01 7.1366986267E-01 7.8750701281E-01 8.6144476172E-01 9.3487726510E-01 1.0072074109E+00 1.0778513886E+00 1.1462432567E+00 1.2118394513E+00 1.2741231800E+00 1.3326086461E+00 1.3868450521E+00 1.4364203328E+00 1.4809645708E+00 - 4.3393172842E+01 4.2045684034E+01 4.0688799220E+01 3.9326010392E+01 3.7960747051E+01 3.6596359842E+01 3.5236105012E+01 3.3883129798E+01 3.2540458840E+01 3.1210981710E+01 2.9897441607E+01 2.8602425306E+01 2.7328354396E+01 2.6077477848E+01 2.4851865947E+01 2.3653405595E+01 2.2483796991E+01 2.1344551684E+01 2.0236991974E+01 1.9162251629E+01 1.8121277886E+01 1.7114834672E+01 1.6143506990E+01 1.5207706403E+01 1.4307677533E+01 1.3443505491E+01 1.2615124149E+01 1.1822325158E+01 1.1064767608E+01 1.0341988229E+01 9.6534120249E+00 8.9983632370E+00 8.3760765267E+00 7.7857082703E+00 7.2263478643E+00 6.6970289381E+00 6.1967403764E+00 5.7244370582E+00 5.2790502246E+00 4.8594973952E+00 4.4646917556E+00 4.0935509524E+00 3.7450052331E+00 3.4180048824E+00 3.1115269111E+00 2.8245809654E+00 2.5562144312E+00 2.3055167187E+00 2.0716227213E+00 1.8537154511E+00 1.6510278614E+00 1.4628438778E+00 1.2884986635E+00 1.1273781545E+00 9.7891790667E-01 8.4260130216E-01 7.1795716978E-01 6.0455687724E-01 5.0201095845E-01 4.0996534212E-01 3.2809725030E-01 2.5611083757E-01 1.9373264249E-01 1.4070692276E-01 9.6790945360E-02 6.1750301061E-02 3.5354310747E-02 1.7371587952E-02 7.5658184662E-03 5.6918136501E-03 1.1491889290E-02 2.4692616564E-02 4.5001985965E-02 7.2107018910E-02 1.0567185544E-01 1.4533633975E-01 1.9071511858E-01 2.4139726072E-01 2.9694639906E-01 3.5690138990E-01 4.2077747775E-01 4.8806794754E-01 5.5824624016E-01 6.3076850160E-01 7.0507653082E-01 7.8060108670E-01 8.5676551031E-01 9.3298961499E-01 1.0086937939E+00 1.0833032920E+00 1.1562525883E+00 1.2269898321E+00 1.2949812776E+00 1.3597156613E+00 1.4207084662E+00 1.4775060212E+00 1.5296893827E+00 1.5768779508E+00 1.6187327751E+00 1.6549595087E+00 - 3.9221320017E+01 3.7918474080E+01 3.6610563434E+01 3.5300906958E+01 3.3992747531E+01 3.2689236825E+01 3.1393421005E+01 3.0108227406E+01 2.8836452290E+01 2.7580749741E+01 2.6343621765E+01 2.5127409648E+01 2.3934286612E+01 2.2766251790E+01 2.1625125544E+01 2.0512546132E+01 1.9429967707E+01 1.8378659639E+01 1.7359707136E+01 1.6374013106E+01 1.5422301231E+01 1.4505120183E+01 1.3622848918E+01 1.2775702971E+01 1.1963741672E+01 1.1186876195E+01 1.0444878340E+01 9.7373899634E+00 9.0639329358E+00 8.4239195441E+00 7.8166632186E+00 7.2413894872E+00 6.6972470487E+00 6.1833188662E+00 5.6986331766E+00 5.2421743237E+00 4.8128933206E+00 4.4097180556E+00 4.0315630617E+00 3.6773387742E+00 3.3459602116E+00 3.0363550186E+00 2.7474708231E+00 2.4782818616E+00 2.2277948427E+00 1.9950540215E+00 1.7791454697E+00 1.5792005350E+00 1.3943984908E+00 1.2239683871E+00 1.0671901195E+00 9.2339474546E-01 7.9196407802E-01 6.7232960031E-01 5.6397074588E-01 4.6641259798E-01 3.7922306475E-01 3.0200959182E-01 2.3441547732E-01 1.7611585656E-01 1.2681342591E-01 8.6233976105E-02 5.4121805565E-02 3.0235083760E-02 1.4341233166E-02 6.2123964083E-03 5.6210522881E-03 1.2335840949E-02 2.6117654323E-02 4.6716043344E-02 7.3865988260E-02 1.0728507275E-01 1.4667109659E-01 1.9170015536E-01 2.4202520917E-01 2.9727515571E-01 3.5705441628E-01 4.2094303679E-01 4.8849729890E-01 5.5925083024E-01 6.3271619626E-01 7.0838695040E-01 7.8574011355E-01 8.6423904873E-01 9.4333669225E-01 1.0224790981E+00 1.1011092491E+00 1.1786710852E+00 1.2546136966E+00 1.3283956277E+00 1.3994892377E+00 1.4673850610E+00 1.5315961134E+00 1.5916620892E+00 1.6471533958E+00 1.6976749755E+00 1.7428698666E+00 1.7824224579E+00 1.8160613955E+00 1.8435621060E+00 - 3.5454767619E+01 3.4195913291E+01 3.2935979978E+01 3.1678117861E+01 3.0425388675E+01 2.9180751641E+01 2.7947050345E+01 2.6727000662E+01 2.5523179789E+01 2.4338016456E+01 2.3173782354E+01 2.2032584842E+01 2.0916360936E+01 1.9826872625E+01 1.8765703497E+01 1.7734256684E+01 1.6733754106E+01 1.5765236987E+01 1.4829567608E+01 1.3927432244E+01 1.3059345234E+01 1.2225654121E+01 1.1426545777E+01 1.0662053454E+01 9.9320646497E+00 9.2363297141E+00 8.5744710978E+00 7.9459931357E+00 7.3502922725E+00 6.7866676210E+00 6.2543317540E+00 5.7524216237E+00 5.2800095088E+00 4.8361138901E+00 4.4197101591E+00 4.0297410694E+00 3.6651268425E+00 3.3247748508E+00 3.0075888017E+00 2.7124773572E+00 2.4383621294E+00 2.1841850009E+00 1.9489147277E+00 1.7315527896E+00 1.5311384631E+00 1.3467531000E+00 1.1775236039E+00 1.0226251050E+00 8.8128284289E-01 7.5277327405E-01 6.3642442984E-01 5.3161555700E-01 4.3777608030E-01 3.5438393273E-01 2.8096330466E-01 2.1708186806E-01 1.6234753628E-01 1.1640482324E-01 7.8930868778E-02 4.9631198605E-02 2.8235288584E-02 1.4492003295E-02 8.1649783952E-03 9.0280150341E-03 1.6860552605E-02 3.1443283403E-02 5.2553969392E-02 7.9963517314E-02 1.1343236378E-01 1.5270721695E-01 1.9751819586E-01 2.4757640263E-01 3.0257195648E-01 3.6217251221E-01 4.2602227904E-01 4.9374154918E-01 5.6492673882E-01 6.3915093748E-01 7.1596495543E-01 7.9489885248E-01 8.7546392553E-01 9.5715512671E-01 1.0394538786E+00 1.1218312487E+00 1.2037514397E+00 1.2846755514E+00 1.3640655627E+00 1.4413884840E+00 1.5161206251E+00 1.5877519245E+00 1.6557902850E+00 1.7197658595E+00 1.7792352335E+00 1.8337854507E+00 1.8830378312E+00 1.9266515331E+00 1.9643268126E+00 1.9958079413E+00 2.0208857424E+00 2.0393997127E+00 - 3.2065185516E+01 3.0849720818E+01 2.9636825505E+01 2.8429485318E+01 2.7230586187E+01 2.6042901248E+01 2.4869078868E+01 2.3711631758E+01 2.2572927227E+01 2.1455178644E+01 2.0360438138E+01 1.9290590565E+01 1.8247348780E+01 1.7232250201E+01 1.6246654670E+01 1.5291743603E+01 1.4368520394E+01 1.3477812045E+01 1.2620271976E+01 1.1796383955E+01 1.1006467094E+01 1.0250681831E+01 9.5290368323E+00 8.8413967109E+00 8.1874904941E+00 7.5669207286E+00 6.9791731336E+00 6.4236266991E+00 5.8995641276E+00 5.4061825176E+00 4.9426041849E+00 4.5078875235E+00 4.1010378056E+00 3.7210178266E+00 3.3667583049E+00 3.0371679483E+00 2.7311431083E+00 2.4475769481E+00 2.1853680558E+00 1.9434284440E+00 1.7206908843E+00 1.5161155317E+00 1.3286958044E+00 1.1574634930E+00 1.0014930798E+00 8.5990526093E-01 7.3186966913E-01 6.1660680622E-01 5.1338920110E-01 4.2154181708E-01 3.4044174006E-01 2.6951718578E-01 2.0824587055E-01 1.5615279598E-01 1.1280750287E-01 7.7820853991E-02 5.0841409063E-02 3.1551457973E-02 1.9662780409E-02 1.4912201271E-02 1.7057011696E-02 2.5870325177E-02 4.1136437147E-02 6.2646254548E-02 9.0192859306E-02 1.2356726641E-01 1.6255443339E-01 2.0692957354E-01 2.5645482026E-01 3.1087628445E-01 3.6992154107E-01 4.3329757485E-01 5.0068920870E-01 5.7175803192E-01 6.4614183851E-01 7.2345457939E-01 8.0328682544E-01 8.8520673222E-01 9.6876149049E-01 1.0534792408E+00 1.1388714253E+00 1.2244355428E+00 1.3096582717E+00 1.3940189163E+00 1.4769931339E+00 1.5580568902E+00 1.6366905956E+00 1.7123833654E+00 1.7846373512E+00 1.8529720875E+00 1.9169287977E+00 1.9760746056E+00 2.0300065980E+00 2.0783556863E+00 2.1207902202E+00 2.1570193044E+00 2.1867957783E+00 2.2099188181E+00 2.2262361289E+00 2.2356456969E+00 - 2.9024011699E+01 2.7851375946E+01 2.6684630192E+01 2.5526599849E+01 2.4380000223E+01 2.3247424577E+01 2.2131333257E+01 2.1034043942E+01 1.9957723068E+01 1.8904378473E+01 1.7875853299E+01 1.6873821172E+01 1.5899782656E+01 1.4955063006E+01 1.4040811186E+01 1.3158000142E+01 1.2307428285E+01 1.1489722160E+01 1.0705340232E+01 9.9545777326E+00 9.2375725023E+00 8.5543117508E+00 7.9046396491E+00 7.2882656684E+00 6.7047735723E+00 6.1536309661E+00 5.6341993018E+00 5.1457442407E+00 4.6874462692E+00 4.2584114673E+00 3.8576823299E+00 3.4842485414E+00 3.1370576087E+00 2.8150252621E+00 2.5170455365E+00 2.2420004520E+00 1.9887692187E+00 1.7562368985E+00 1.5433024611E+00 1.3488861828E+00 1.1719363422E+00 1.0114351759E+00 8.6640406682E-01 7.3590794521E-01 6.1905889247E-01 5.1501894474E-01 4.2300210364E-01 3.4227556833E-01 2.7216021163E-01 2.1203033027E-01 1.6131270619E-01 1.1948502240E-01 8.6073682829E-02 6.0651090520E-02 4.2832443292E-02 3.2272109566E-02 2.8659650124E-02 3.1715553757E-02 4.1186756145E-02 5.6842011980E-02 7.8467190111E-02 1.0586056058E-01 1.3882814070E-01 1.7717916485E-01 2.2072173968E-01 2.6925874252E-01 3.2258401641E-01 3.8047891057E-01 4.4270920944E-01 5.0902248781E-01 5.7914592349E-01 6.5278459261E-01 7.2962026602E-01 8.0931071864E-01 8.9148955695E-01 9.7576656314E-01 1.0617285478E+00 1.1489406966E+00 1.2369483910E+00 1.3252794761E+00 1.4134469436E+00 1.5009519947E+00 1.5872874393E+00 1.6719413896E+00 1.7544011956E+00 1.8341575756E+00 1.9107088842E+00 1.9835654659E+00 2.0522540368E+00 2.1163220397E+00 2.1753419155E+00 2.2289152384E+00 2.2766766613E+00 2.3182976212E+00 2.3534897575E+00 2.3820079995E+00 2.4036532829E+00 2.4182748597E+00 2.4257721714E+00 2.4260962589E+00 - 2.6302804074E+01 2.5172469541E+01 2.4051028678E+01 2.2941150534E+01 2.1845384816E+01 2.0766150964E+01 1.9705728330E+01 1.8666247516E+01 1.7649682907E+01 1.6657846452E+01 1.5692382696E+01 1.4754765092E+01 1.3846293590E+01 1.2968093484E+01 1.2121115519E+01 1.1306137203E+01 1.0523765303E+01 9.7744394576E+00 9.0584368714E+00 8.3758779971E+00 7.7267331515E+00 7.1108299746E+00 6.5278616490E+00 5.9773957854E+00 5.4588838815E+00 4.9716712532E+00 4.5150073396E+00 4.0880562796E+00 3.6899076583E+00 3.3195873234E+00 2.9760681728E+00 2.6582808169E+00 2.3651240245E+00 2.0954748644E+00 1.8481984597E+00 1.6221572795E+00 1.4162198974E+00 1.2292691548E+00 1.0602096739E+00 9.0797467311E-01 7.7153204716E-01 6.4988968138E-01 5.4209997875E-01 4.4726358762E-01 3.6453232569E-01 2.9311130532E-01 2.3226027263E-01 1.8129418171E-01 1.3958303201E-01 1.0655100484E-01 8.1674941055E-02 6.4482208098E-02 5.4548010181E-02 5.1492199728E-02 5.4975652415E-02 6.4696271218E-02 8.0384687337E-02 1.0179972749E-01 1.2872371785E-01 1.6095769508E-01 1.9831659382E-01 2.4062447907E-01 2.8770988887E-01 3.3940135052E-01 3.9552312940E-01 4.5589126552E-01 5.2030994808E-01 5.8856827312E-01 6.6043742355E-01 7.3566830495E-01 8.1398966402E-01 8.9510671029E-01 9.7870025469E-01 1.0644263721E+00 1.1519165883E+00 1.2407785845E+00 1.3305974079E+00 1.4209371672E+00 1.5113431907E+00 1.6013446137E+00 1.6904573622E+00 1.7781874910E+00 1.8640348312E+00 1.9474969014E+00 2.0280730288E+00 2.1052686291E+00 2.1785995885E+00 2.2475966929E+00 2.3118100464E+00 2.3708134249E+00 2.4242085068E+00 2.4716289299E+00 2.5127441209E+00 2.5472628495E+00 2.5749364618E+00 2.5955617513E+00 2.6089834294E+00 2.6150961640E+00 2.6138461575E+00 2.6052322427E+00 - 2.3873561255E+01 2.2785024688E+01 2.1708080378E+01 2.0645244840E+01 1.9598907056E+01 1.8571318525E+01 1.7564584450E+01 1.6580656120E+01 1.5621324497E+01 1.4688215065E+01 1.3782783937E+01 1.2906315232E+01 1.2059919717E+01 1.1244534689E+01 1.0460925085E+01 9.7096857619E+00 8.9912449156E+00 8.3058685792E+00 7.6536661296E+00 7.0345967378E+00 6.4484766798E+00 5.8949874246E+00 5.3736844091E+00 4.8840064041E+00 4.4252853766E+00 3.9967567453E+00 3.5975699312E+00 3.2267990987E+00 2.8834539900E+00 2.5664907506E+00 2.2748226502E+00 2.0073306078E+00 1.7628734281E+00 1.5402976696E+00 1.3384470638E+00 1.1561714136E+00 9.9233490889E-01 8.4582379929E-01 7.1555337654E-01 6.0047422541E-01 4.9957771058E-01 4.1190067585E-01 3.3652934086E-01 2.7260238892E-01 2.1931324835E-01 1.7591157818E-01 1.4170397684E-01 1.1605394064E-01 9.8381105713E-02 8.8159814358E-02 8.4917052393E-02 8.8229810233E-02 9.7721925010E-02 1.1306046535E-01 1.3395172387E-01 1.6013688517E-01 1.9138743886E-01 2.2750040838E-01 2.6829346654E-01 3.1360000824E-01 3.6326424967E-01 4.1713642091E-01 4.7506811651E-01 5.3690786507E-01 6.0249697449E-01 6.7166570555E-01 7.4422982071E-01 8.1998754988E-01 8.9871700874E-01 9.8017409891E-01 1.0640909128E+00 1.1501746591E+00 1.2381071190E+00 1.3275446342E+00 1.4181186243E+00 1.5094366215E+00 1.6010838061E+00 1.6926250199E+00 1.7836072274E+00 1.8735623922E+00 1.9620107273E+00 2.0484642785E+00 2.1324307908E+00 2.2134178089E+00 2.2909369581E+00 2.3645083511E+00 2.4336650624E+00 2.4979576162E+00 2.5569584278E+00 2.6102661442E+00 2.6575098280E+00 2.6983529316E+00 2.7324970121E+00 2.7596851385E+00 2.7797049479E+00 2.7923913126E+00 2.7976285803E+00 2.7953523609E+00 2.7855508323E+00 2.7682655480E+00 - 2.1709009827E+01 2.0661783978E+01 1.9628556628E+01 1.8611695462E+01 1.7613433460E+01 1.6635859895E+01 1.5680912488E+01 1.4750370775E+01 1.3845850705E+01 1.2968800496E+01 1.2120497750E+01 1.1302047837E+01 1.0514383510E+01 9.7582657582E+00 9.0342858387E+00 8.3428684520E+00 7.6842760112E+00 7.0586139365E+00 6.4658369100E+00 5.9057560111E+00 5.3780466508E+00 4.8822572163E+00 4.4178183317E+00 3.9840526396E+00 3.5801850035E+00 3.2053530308E+00 2.8586178137E+00 2.5389747885E+00 2.2453646127E+00 1.9766839624E+00 1.7317961551E+00 1.5095415090E+00 1.3087473513E+00 1.1282375966E+00 9.6684182193E-01 8.2340377009E-01 6.9678922273E-01 5.8589319111E-01 4.8964638091E-01 4.0702089591E-01 3.3703515399E-01 2.7875799793E-01 2.3131199170E-01 1.9387590206E-01 1.6568637369E-01 1.4603881400E-01 1.3428751221E-01 1.2984502419E-01 1.3218086213E-01 1.4081953400E-01 1.5533798414E-01 1.7536249104E-01 2.0056508324E-01 2.3065953763E-01 2.6539702783E-01 3.0456149206E-01 3.4796479169E-01 3.9544173186E-01 4.4684501572E-01 5.0204020241E-01 5.6090073754E-01 6.2330312214E-01 6.8912228286E-01 7.5822720270E-01 8.3047686653E-01 9.0571657129E-01 9.8377464473E-01 1.0644596112E+00 1.1475578365E+00 1.2328316768E+00 1.3200181517E+00 1.4088281520E+00 1.4989461891E+00 1.5900306822E+00 1.6817147778E+00 1.7736076844E+00 1.8652965025E+00 1.9563485227E+00 2.0463139593E+00 2.1347290817E+00 2.2211197017E+00 2.3050049700E+00 2.3859014320E+00 2.4633272905E+00 2.5368068199E+00 2.6058748762E+00 2.6700814442E+00 2.7289961646E+00 2.7822127842E+00 2.8293534726E+00 2.8700729501E+00 2.9040623767E+00 2.9310529505E+00 2.9508191721E+00 2.9631817308E+00 2.9680099780E+00 2.9652239527E+00 2.9547959339E+00 2.9367514961E+00 2.9111700535E+00 - 1.9782856276E+01 1.8776461622E+01 1.7786192828E+01 1.6814272325E+01 1.5862781681E+01 1.4933653493E+01 1.4028664477E+01 1.3149429776E+01 1.2297398508E+01 1.1473850581E+01 1.0679894752E+01 9.9164679440E+00 9.1843357828E+00 8.4840943348E+00 7.8161729950E+00 7.1808384823E+00 6.5781998802E+00 6.0082146566E+00 5.4706955874E+00 4.9653185050E+00 4.4916307819E+00 4.0490604612E+00 3.6369259359E+00 3.2544460801E+00 2.9007507311E+00 2.5748914213E+00 2.2758522589E+00 2.0025608552E+00 1.7538992034E+00 1.5287144087E+00 1.3258291826E+00 1.1440520089E+00 9.8218690385E-01 8.3904269059E-01 7.1344172019E-01 6.0422797640E-01 5.1027450916E-01 4.3049015047E-01 3.6382547405E-01 3.0927796926E-01 2.6589640831E-01 2.3278439438E-01 2.0910308749E-01 1.9407311296E-01 1.8697566616E-01 1.8715283510E-01 1.9400717002E-01 2.0700053656E-01 2.2565229575E-01 2.4953685993E-01 2.7828067965E-01 3.1155872083E-01 3.4909049606E-01 3.9063571676E-01 4.3598963569E-01 4.8497815103E-01 5.3745274384E-01 5.9328532124E-01 6.5236303666E-01 7.1458315711E-01 7.7984804523E-01 8.4806032097E-01 9.1911826409E-01 9.9291151446E-01 1.0693171224E+00 1.1481959960E+00 1.2293897865E+00 1.3127182465E+00 1.3979770907E+00 1.4849363795E+00 1.5733394421E+00 1.6629023464E+00 1.7533139178E+00 1.8442363014E+00 1.9353060544E+00 2.0261357526E+00 2.1163160845E+00 2.2054184027E+00 2.2929976981E+00 2.3785959557E+00 2.4617458460E+00 2.5419747057E+00 2.6188087526E+00 2.6917774832E+00 2.7604181947E+00 2.8242805740E+00 2.8829312965E+00 2.9359585748E+00 2.9829766024E+00 3.0236298336E+00 3.0575970484E+00 3.0845951497E+00 3.1043826452E+00 3.1167627704E+00 3.1215862113E+00 3.1187533940E+00 3.1082163086E+00 3.0899798437E+00 3.0641026126E+00 3.0306972569E+00 - 1.8070002448E+01 1.7103959252E+01 1.6155904411E+01 1.5227918584E+01 1.4321936373E+01 1.3439739096E+01 1.2582948759E+01 1.1753023257E+01 1.0951252834E+01 1.0178757787E+01 9.4364874170E+00 8.7252202178E+00 8.0455652611E+00 7.3979647523E+00 6.7826977044E+00 6.1998846784E+00 5.6494935225E+00 5.1313460426E+00 4.6451255216E+00 4.1903850070E+00 3.7665562737E+00 3.3729593702E+00 3.0088126501E+00 2.6732431890E+00 2.3652974868E+00 2.0839523524E+00 1.8281258710E+00 1.5966883548E+00 1.3884731787E+00 1.2022874093E+00 1.0369221358E+00 8.9116242049E-01 7.6379678771E-01 6.5362618080E-01 5.5947232053E-01 4.8018540746E-01 4.1465111803E-01 3.6179685278E-01 3.2059720327E-01 2.9007861337E-01 2.6932321894E-01 2.5747185918E-01 2.5372626119E-01 2.5735040795E-01 2.6767110826E-01 2.8407779485E-01 3.0602158443E-01 3.3301364047E-01 3.6462288569E-01 4.0047311731E-01 4.4023958288E-01 4.8364507925E-01 5.3045564062E-01 5.8047588450E-01 6.3354408675E-01 6.8952705776E-01 7.4831489258E-01 8.0981566731E-01 8.7395015300E-01 9.4064661638E-01 1.0098357743E+00 1.0814459648E+00 1.1553985954E+00 1.2316039218E+00 1.3099572083E+00 1.3903353135E+00 1.4725937397E+00 1.5565641776E+00 1.6420525725E+00 1.7288377289E+00 1.8166704677E+00 1.9052733385E+00 1.9943408855E+00 2.0835404594E+00 2.1725135578E+00 2.2608776740E+00 2.3482286257E+00 2.4341433303E+00 2.5181829882E+00 2.5998966316E+00 2.6788249909E+00 2.7545046276E+00 2.8264722814E+00 2.8942693744E+00 2.9574466144E+00 3.0155686413E+00 3.0682186545E+00 3.1150029663E+00 3.1555554221E+00 3.1895416326E+00 3.2166629652E+00 3.2366602448E+00 3.2493171162E+00 3.2544630278E+00 3.2519757955E+00 3.2417837174E+00 3.2238672073E+00 3.1982599286E+00 3.1650494080E+00 3.1243771220E+00 - 1.6546724090E+01 1.5620544930E+01 1.4713966181E+01 1.3828930116E+01 1.2967228705E+01 1.2130497229E+01 1.1320209091E+01 1.0537671884E+01 9.7840246928E+00 9.0602366437E+00 8.3671066901E+00 7.7052646057E+00 7.0751731558E+00 6.4771314036E+00 5.9112791006E+00 5.3776020990E+00 4.8759387197E+00 4.4059869995E+00 3.9673127355E+00 3.5593582400E+00 3.1814517128E+00 2.8328171362E+00 2.5125845930E+00 2.2198009079E+00 1.9534405101E+00 1.7124164168E+00 1.4955912375E+00 1.3017880999E+00 1.1298014040E+00 9.7840731184E-01 8.4637388656E-01 7.3247079975E-01 6.3547853139E-01 5.5419699417E-01 4.8745352081E-01 4.3411016072E-01 3.9307024082E-01 3.6328415315E-01 3.4375434128E-01 3.3353946555E-01 3.3175773655E-01 3.3758941465E-01 3.5027848213E-01 3.6913350268E-01 3.9352769141E-01 4.2289822572E-01 4.5674483501E-01 4.9462771362E-01 5.3616480760E-01 5.8102853124E-01 6.2894197424E-01 6.7967466406E-01 7.3303795166E-01 7.8888009100E-01 8.4708108436E-01 9.0754736662E-01 9.7020640135E-01 1.0350012611E+00 1.1018852626E+00 1.1708167254E+00 1.2417539194E+00 1.3146502629E+00 1.3894498297E+00 1.4660832162E+00 1.5444638176E+00 1.6244845543E+00 1.7060150830E+00 1.7888995225E+00 1.8729547161E+00 1.9579690457E+00 2.0437018063E+00 2.1298831425E+00 2.2162145410E+00 2.3023698680E+00 2.3879969322E+00 2.4727195489E+00 2.5561400749E+00 2.6378423777E+00 2.7173951990E+00 2.7943558657E+00 2.8682743009E+00 2.9386972815E+00 3.0051728875E+00 3.0672550860E+00 3.1245083921E+00 3.1765125470E+00 3.2228671554E+00 3.2631962230E+00 3.2971525389E+00 3.3244218466E+00 3.3447267531E+00 3.3578303262E+00 3.3635393352E+00 3.3617070955E+00 3.3522358782E+00 3.3350788563E+00 3.3102415606E+00 3.2777828252E+00 3.2378152078E+00 3.1905048783E+00 - 1.5190812661E+01 1.4303995541E+01 1.3438155139E+01 1.2595098653E+01 1.1776479645E+01 1.0983792452E+01 1.0218367816E+01 9.4813697577E+00 8.7737936835E+00 8.0964657275E+00 7.4500433092E+00 6.8350168770E+00 6.2517127991E+00 5.7002973570E+00 5.1807817823E+00 4.6930282742E+00 4.2367569253E+00 3.8115534754E+00 3.4168778115E+00 3.0520731211E+00 2.7163756062E+00 2.4089246617E+00 2.1287734168E+00 1.8748995401E+00 1.6462162064E+00 1.4415831258E+00 1.2598175349E+00 1.0997050550E+00 9.6001032372E-01 8.3948731082E-01 7.3688923567E-01 6.5097800729E-01 5.8053311582E-01 5.2435991071E-01 4.8129720842E-01 4.5022418050E-01 4.3006648100E-01 4.1980158082E-01 4.1846328532E-01 4.2514542009E-01 4.3900467886E-01 4.5926263590E-01 4.8520693384E-01 5.1619166619E-01 5.5163698142E-01 5.9102794324E-01 6.3391268827E-01 6.7989992909E-01 7.2865585601E-01 7.7990049635E-01 8.3340359430E-01 8.8898007776E-01 9.4648518208E-01 1.0058093020E+00 1.0668726447E+00 1.1296197576E+00 1.1940140036E+00 1.2600320555E+00 1.3276584799E+00 1.3968804785E+00 1.4676828492E+00 1.5400432291E+00 1.6139276736E+00 1.6892866224E+00 1.7660512980E+00 1.8441305747E+00 1.9234083505E+00 2.0037414498E+00 2.0849580735E+00 2.1668568107E+00 2.2492062164E+00 2.3317449545E+00 2.4141824969E+00 2.4962003641E+00 2.5774538860E+00 2.6575744557E+00 2.7361722432E+00 2.8128393299E+00 2.8871532234E+00 2.9586807017E+00 3.0269819404E+00 3.0916148651E+00 3.1521396767E+00 3.2081234885E+00 3.2591450191E+00 3.3047992807E+00 3.3447022043E+00 3.3784951439E+00 3.4058492048E+00 3.4264693411E+00 3.4400981717E+00 3.4465194682E+00 3.4455612704E+00 3.4370985909E+00 3.4210556738E+00 3.3974077803E+00 3.3661824743E+00 3.3274603942E+00 3.2813754956E+00 3.2281147604E+00 - 1.3981681197E+01 1.3133703341E+01 1.2307857576E+01 1.1505819279E+01 1.0729107726E+01 9.9790812763E+00 9.2569337780E+00 8.5636922093E+00 7.9002155434E+00 7.2671948321E+00 6.6651544810E+00 6.0944546844E+00 5.5552949758E+00 5.0477188436E+00 4.5716193501E+00 4.1267456868E+00 3.7127105899E+00 3.3289985345E+00 2.9749746209E+00 2.6498940602E+00 2.3529121659E+00 2.0830947506E+00 1.8394288309E+00 1.6208335376E+00 1.4261711319E+00 1.2542580287E+00 1.1038757280E+00 9.7378156146E-01 8.6271916371E-01 7.6942858090E-01 6.9265593748E-01 6.3116258571E-01 5.8373367033E-01 5.4918604743E-01 5.2637550478E-01 5.1420323839E-01 5.1162154888E-01 5.1763872961E-01 5.3132312726E-01 5.5180636431E-01 5.7828572163E-01 6.1002568783E-01 6.4635869047E-01 6.8668503207E-01 7.3047206187E-01 7.7725262098E-01 8.2662280565E-01 8.7823909925E-01 9.3181492906E-01 9.8711670877E-01 1.0439594314E+00 1.1022018810E+00 1.1617415336E+00 1.2225092203E+00 1.2844636242E+00 1.3475856868E+00 1.4118729950E+00 1.4773342192E+00 1.5439836744E+00 1.6118360662E+00 1.6809014884E+00 1.7511807270E+00 1.8226609261E+00 1.8953116629E+00 1.9690814751E+00 2.0438948754E+00 2.1196498850E+00 2.1962161074E+00 2.2734333598E+00 2.3511108718E+00 2.4290270528E+00 2.5069298248E+00 2.5845375089E+00 2.6615402484E+00 2.7376019441E+00 2.8123626726E+00 2.8854415526E+00 2.9564400185E+00 3.0249454568E+00 3.0905351579E+00 3.1527805289E+00 3.2112515159E+00 3.2655211763E+00 3.3151703451E+00 3.3597923348E+00 3.3989976116E+00 3.4324183877E+00 3.4597130750E+00 3.4805705430E+00 3.4947141294E+00 3.5019053540E+00 3.5019472896E+00 3.4946875477E+00 3.4800208433E+00 3.4578911050E+00 3.4282931039E+00 3.3912735798E+00 3.3469318498E+00 3.2954198880E+00 3.2369418731E+00 - 1.2900435567E+01 1.2090747964E+01 1.1304141712E+01 1.0542163571E+01 9.8062025726E+00 9.0974859374E+00 8.4170762278E+00 7.7658697117E+00 7.1445959426E+00 6.5538185337E+00 5.9939370994E+00 5.4651903245E+00 4.9676601153E+00 4.5012767767E+00 4.0658251500E+00 3.6609516413E+00 3.2861720624E+00 2.9408801989E+00 2.6243570191E+00 2.3357804273E+00 2.0742354693E+00 1.8387248881E+00 1.6281799321E+00 1.4414713156E+00 1.2774202315E+00 1.1348093187E+00 1.0123934892E+00 9.0891052182E-01 8.2309133604E-01 7.5366986140E-01 6.9939242626E-01 6.5902659443E-01 6.3136938552E-01 6.1525482236E-01 6.0956075642E-01 6.1321493067E-01 6.2520024726E-01 6.4455921658E-01 6.7039757247E-01 7.0188704731E-01 7.3826730913E-01 7.7884707155E-01 8.2300439517E-01 8.7018620714E-01 9.1990707294E-01 9.7174726127E-01 1.0253501493E+00 1.0804190218E+00 1.1367133215E+00 1.1940444140E+00 1.2522709341E+00 1.3112937806E+00 1.3710508335E+00 1.4315114649E+00 1.4926709165E+00 1.5545446184E+00 1.6171625188E+00 1.6805634971E+00 1.7447899264E+00 1.8098824506E+00 1.8758750373E+00 1.9427903608E+00 2.0106355692E+00 2.0793984784E+00 2.1490442352E+00 2.2195124823E+00 2.2907150511E+00 2.3625342053E+00 2.4348214466E+00 2.5073968898E+00 2.5800492082E+00 2.6525361405E+00 2.7245855469E+00 2.7958969945E+00 2.8661438454E+00 2.9349758156E+00 3.0020219693E+00 3.0668941047E+00 3.1291904876E+00 3.1884998808E+00 3.2444058190E+00 3.2964910717E+00 3.3443422391E+00 3.3875544209E+00 3.4257359013E+00 3.4585127902E+00 3.4855335642E+00 3.5064734502E+00 3.5210385988E+00 3.5289699949E+00 3.5300470591E+00 3.5240908941E+00 3.5109671371E+00 3.4905883824E+00 3.4629161445E+00 3.4279623360E+00 3.3857902412E+00 3.3365149720E+00 3.2803033981E+00 3.2173735494E+00 - 1.1929912943E+01 1.1157935714E+01 1.0409797679E+01 9.6869201654E+00 8.9905659227E+00 8.3218357669E+00 7.6816664280E+00 7.0708296062E+00 6.4899322204E+00 5.9394178265E+00 5.4195691730E+00 4.9305118515E+00 4.4722189912E+00 4.0445169378E+00 3.6470918502E+00 3.2794971403E+00 2.9411616759E+00 2.6313986611E+00 2.3494151043E+00 2.0943217791E+00 1.8651435826E+00 1.6608301917E+00 1.4802669195E+00 1.3222856715E+00 1.1856759048E+00 1.0691954934E+00 9.7158140637E-01 8.9156011090E-01 8.2785761270E-01 7.7920905622E-01 7.4436780950E-01 7.2211396670E-01 7.1126220797E-01 7.1066896382E-01 7.1923883912E-01 7.3593026022E-01 7.5976031680E-01 7.8980877912E-01 8.2522127936E-01 8.6521165498E-01 9.0906345992E-01 9.5613065799E-01 1.0058375208E+00 1.0576777599E+00 1.1112129302E+00 1.1660701484E+00 1.2219391758E+00 1.2785689206E+00 1.3357634207E+00 1.3933773688E+00 1.4513112495E+00 1.5095061566E+00 1.5679383631E+00 1.6266137163E+00 1.6855619310E+00 1.7448308529E+00 1.8044807634E+00 1.8645787948E+00 1.9251935218E+00 1.9863897921E+00 2.0482238546E+00 2.1107388401E+00 2.1739606414E+00 2.2378942386E+00 2.3025205047E+00 2.3677935238E+00 2.4336384458E+00 2.4999498955E+00 2.5665909470E+00 2.6333926671E+00 2.7001542261E+00 2.7666435651E+00 2.8325986047E+00 2.8977289743E+00 2.9617182310E+00 3.0242265385E+00 3.0848937643E+00 3.1433429543E+00 3.1991841368E+00 3.2520184061E+00 3.3014422316E+00 3.3470519377E+00 3.3884482974E+00 3.4252411813E+00 3.4570542040E+00 3.4835293101E+00 3.5043312437E+00 3.5191518461E+00 3.5277141282E+00 3.5297760697E+00 3.5251340967E+00 3.5136261973E+00 3.4951346349E+00 3.4695882276E+00 3.4369641651E+00 3.3972893389E+00 3.3506411703E+00 3.2971479233E+00 3.2369884974E+00 3.1703916990E+00 - 1.1054689734E+01 1.0319808345E+01 9.6093470560E+00 8.9246049249E+00 8.2667223361E+00 7.6366783274E+00 7.0352891107E+00 6.4632077780E+00 5.9209251774E+00 5.4087719297E+00 4.9269215487E+00 4.4753946214E+00 4.0540639908E+00 3.6626608806E+00 3.3007818925E+00 2.9678967974E+00 2.6633570419E+00 2.3864048802E+00 2.1361830422E+00 1.9117448427E+00 1.7120646356E+00 1.5360485157E+00 1.3825451689E+00 1.2503567742E+00 1.1382498612E+00 1.0449660283E+00 9.6923243212E-01 9.0977196144E-01 8.6531301228E-01 8.3459878966E-01 8.1639606441E-01 8.0950332198E-01 8.1275824660E-01 8.2504449221E-01 8.4529769914E-01 8.7251072419E-01 9.0573805981E-01 9.4409942686E-01 9.8678253374E-01 1.0330450034E+00 1.0822154776E+00 1.1336939165E+00 1.1869511183E+00 1.2415274926E+00 1.2970311256E+00 1.3531351852E+00 1.4095747152E+00 1.4661428774E+00 1.5226867016E+00 1.5791024090E+00 1.6353303772E+00 1.6913498159E+00 1.7471732260E+00 1.8028407146E+00 1.8584142363E+00 1.9139718345E+00 1.9696019505E+00 2.0253978689E+00 2.0814523636E+00 2.1378526038E+00 2.1946753786E+00 2.2519826905E+00 2.3098177639E+00 2.3682015111E+00 2.4271294878E+00 2.4865693695E+00 2.5464589675E+00 2.6067048030E+00 2.6671812435E+00 2.7277302079E+00 2.7881614304E+00 2.8482532760E+00 2.9077540863E+00 2.9663840335E+00 3.0238374531E+00 3.0797856193E+00 3.1338799245E+00 3.1857554187E+00 3.2350346604E+00 3.2813318295E+00 3.3242570472E+00 3.3634208485E+00 3.3984387503E+00 3.4289358570E+00 3.4545514481E+00 3.4749434883E+00 3.4897930074E+00 3.4988082948E+00 3.5017288573E+00 3.4983290934E+00 3.4884216386E+00 3.4718603413E+00 3.4485428331E+00 3.4184126625E+00 3.3814609654E+00 3.3377276520E+00 3.2873020941E+00 3.2303233035E+00 3.1669795979E+00 3.0975077555E+00 - 1.0261061596E+01 9.5626239404E+00 8.8890245171E+00 8.2414432806E+00 7.6209021169E+00 7.0282628275E+00 6.4642262879E+00 5.9293327683E+00 5.4239633959E+00 4.9483427248E+00 4.5025423760E+00 4.0864856951E+00 3.6999533725E+00 3.3425899595E+00 3.0139112101E+00 2.7133121683E+00 2.4400759202E+00 2.1933829208E+00 1.9723208054E+00 1.7758945917E+00 1.6030371759E+00 1.4526200260E+00 1.3234639769E+00 1.2143500289E+00 1.1240300589E+00 1.0512373500E+00 9.9469685267E-01 9.5313509530E-01 9.2528966312E-01 9.0991817459E-01 9.0580668771E-01 9.1177747683E-01 9.2669612747E-01 9.4947790427E-01 9.7909335552E-01 1.0145731254E+00 1.0550119543E+00 1.0995718542E+00 1.1474844579E+00 1.1980525442E+00 1.2506507547E+00 1.3047255206E+00 1.3597942297E+00 1.4154436675E+00 1.4713277749E+00 1.5271647706E+00 1.5827336902E+00 1.6378704020E+00 1.6924631601E+00 1.7464477609E+00 1.7998023712E+00 1.8525420989E+00 1.9047133749E+00 1.9563882217E+00 2.0076584756E+00 2.0586300362E+00 2.1094172092E+00 2.1601372085E+00 2.2109048806E+00 2.2618277091E+00 2.3130011536E+00 2.3645043730E+00 2.4163963758E+00 2.4687126364E+00 2.5214622087E+00 2.5746253643E+00 2.6281517718E+00 2.6819592324E+00 2.7359329765E+00 2.7899255200E+00 2.8437570744E+00 2.8972164958E+00 2.9500627544E+00 3.0020268974E+00 3.0528144753E+00 3.1021083963E+00 3.1495721657E+00 3.1948534687E+00 3.2375880463E+00 3.2774038139E+00 3.3139251696E+00 3.3467774363E+00 3.3755913821E+00 3.4000077621E+00 3.4196818254E+00 3.4342877312E+00 3.4435228213E+00 3.4471116953E+00 3.4448100401E+00 3.4364081677E+00 3.4217342179E+00 3.4006569872E+00 3.3730883518E+00 3.3389852523E+00 3.2983512186E+00 3.2512374153E+00 3.1977431933E+00 3.1380161418E+00 3.0722516365E+00 3.0006918899E+00 - 9.5369984003E+00 8.8743127613E+00 8.2367344749E+00 7.6253275730E+00 7.0409992796E+00 6.4844986245E+00 5.9564162076E+00 5.4571850997E+00 4.9870828501E+00 4.5462345699E+00 4.1346170437E+00 3.7520638192E+00 3.3982712134E+00 3.0728051693E+00 2.7751088890E+00 2.5045111638E+00 2.2602353170E+00 2.0414086722E+00 1.8470724549E+00 1.6761920337E+00 1.5276674074E+00 1.4003438411E+00 1.2930225570E+00 1.2044713859E+00 1.1334352887E+00 1.0786466583E+00 1.0388353170E+00 1.0127381309E+00 9.9910816388E-01 9.9672330439E-01 1.0043943001E+00 1.0209721465E+00 1.0453547797E+00 1.0764930336E+00 1.1133958278E+00 1.1551345626E+00 1.2008467039E+00 1.2497385500E+00 1.3010871814E+00 1.3542416007E+00 1.4086230786E+00 1.4637247307E+00 1.5191103551E+00 1.5744125685E+00 1.6293302842E+00 1.6836255823E+00 1.7371200263E+00 1.7896904848E+00 1.8412645211E+00 1.8918154176E+00 1.9413569012E+00 1.9899376414E+00 2.0376355897E+00 2.0845522330E+00 2.1308068283E+00 2.1765306896E+00 2.2218615914E+00 2.2669383543E+00 2.3118956702E+00 2.3568592265E+00 2.4019411783E+00 2.4472360163E+00 2.4928168719E+00 2.5387322944E+00 2.5850035297E+00 2.6316223237E+00 2.6785492675E+00 2.7257126929E+00 2.7730081239E+00 2.8202982795E+00 2.8674136192E+00 2.9141534154E+00 2.9602873322E+00 3.0055574822E+00 3.0496809304E+00 3.0923526072E+00 3.1332485906E+00 3.1720297101E+00 3.2083454276E+00 3.2418379402E+00 3.2721464551E+00 3.2989115805E+00 3.3217797777E+00 3.3404078181E+00 3.3544671912E+00 3.3636484091E+00 3.3676651537E+00 3.3662582189E+00 3.3591991980E+00 3.3462938736E+00 3.3273852684E+00 3.3023563207E+00 3.2711321538E+00 3.2336819102E+00 3.1900201304E+00 3.1402076578E+00 3.0843520606E+00 3.0226075623E+00 2.9551744820E+00 2.8822981898E+00 - 8.8720772774E+00 8.2444111484E+00 7.6419857706E+00 7.0657524614E+00 6.5165075999E+00 5.9948918433E+00 5.5013904670E+00 5.0363348088E+00 4.5999047873E+00 4.1921324549E+00 3.8129065396E+00 3.4619779197E+00 3.1389659693E+00 2.8433657061E+00 2.5745556656E+00 2.3318064227E+00 2.1142896751E+00 1.9210878013E+00 1.7512038018E+00 1.6035715307E+00 1.4770661250E+00 1.3705145366E+00 1.2827060754E+00 1.2124028709E+00 1.1583501650E+00 1.1192863490E+00 1.0939526649E+00 1.0811024933E+00 1.0795101562E+00 1.0879791713E+00 1.1053498967E+00 1.1305065164E+00 1.1623833201E+00 1.1999702426E+00 1.2423176325E+00 1.2885402305E+00 1.3378203436E+00 1.3894102117E+00 1.4426335698E+00 1.4968864167E+00 1.5516370097E+00 1.6064251113E+00 1.6608605209E+00 1.7146209311E+00 1.7674491545E+00 1.8191497705E+00 1.8695852494E+00 1.9186716118E+00 1.9663736876E+00 2.0127000394E+00 2.0576976188E+00 2.1014462235E+00 2.1440528262E+00 2.1856458428E+00 2.2263694096E+00 2.2663777351E+00 2.3058295912E+00 2.3448830052E+00 2.3836902100E+00 2.4223929062E+00 2.4611178854E+00 2.4999730585E+00 2.5390439273E+00 2.5783905320E+00 2.6180449021E+00 2.6580090299E+00 2.6982533817E+00 2.7387159534E+00 2.7793018728E+00 2.8198835425E+00 2.8603013127E+00 2.9003646670E+00 2.9398538976E+00 2.9785222420E+00 3.0160984483E+00 3.0522897313E+00 3.0867850770E+00 3.1192588513E+00 3.1493746644E+00 3.1767894388E+00 3.2011576311E+00 3.2221355516E+00 3.2393857281E+00 3.2525812608E+00 3.2614101129E+00 3.2655792853E+00 3.2648188255E+00 3.2588856211E+00 3.2475669330E+00 3.2306836267E+00 3.2080930626E+00 3.1796916113E+00 3.1454167643E+00 3.1052488154E+00 3.0592120919E+00 3.0073757226E+00 2.9498539310E+00 2.8868058521E+00 2.8184348715E+00 2.7449874963E+00 - 8.2573969816E+00 7.6639767172E+00 7.0958076402E+00 6.5537315995E+00 6.0384379380E+00 5.5504632847E+00 5.0901924402E+00 4.6578603324E+00 4.2535550069E+00 3.8772216125E+00 3.5286673306E+00 3.2075671921E+00 2.9134707161E+00 2.6458093024E+00 2.4039043001E+00 2.1869756718E+00 1.9941511696E+00 1.8244759353E+00 1.6769224330E+00 1.5504006257E+00 1.4437683012E+00 1.3558414570E+00 1.2854046540E+00 1.2312212494E+00 1.1920434245E+00 1.1666219233E+00 1.1537154267E+00 1.1520994867E+00 1.1605749547E+00 1.1779758425E+00 1.2031765604E+00 1.2350984865E+00 1.2727158249E+00 1.3150607208E+00 1.3612276092E+00 1.4103767769E+00 1.4617371329E+00 1.5146081821E+00 1.5683612125E+00 1.6224397074E+00 1.6763590064E+00 1.7297052426E+00 1.7821335907E+00 1.8333658687E+00 1.8831875392E+00 1.9314441614E+00 1.9780373517E+00 2.0229203111E+00 2.0660929836E+00 2.1075969100E+00 2.1475098453E+00 2.1859402065E+00 2.2230214193E+00 2.2589062313E+00 2.2937610588E+00 2.3277604301E+00 2.3610815892E+00 2.3938993173E+00 2.4263810282E+00 2.4586821881E+00 2.4909421060E+00 2.5232801362E+00 2.5557923280E+00 2.5885485537E+00 2.6215901369E+00 2.6549280006E+00 2.6885413462E+00 2.7223768680E+00 2.7563485031E+00 2.7903377089E+00 2.8241942560E+00 2.8577375169E+00 2.8907582265E+00 2.9230206862E+00 2.9542653756E+00 2.9842119357E+00 3.0125624802E+00 3.0390051903E+00 3.0632181451E+00 3.0848733367E+00 3.1036408201E+00 3.1191929433E+00 3.1312086058E+00 3.1393774925E+00 3.1434042315E+00 3.1430124241E+00 3.1379484993E+00 3.1279853470E+00 3.1129256851E+00 3.0926051222E+00 3.0668948792E+00 3.0357041377E+00 2.9989819884E+00 2.9567189555E+00 2.9089480817E+00 2.8557455580E+00 2.7972308939E+00 2.7335666234E+00 2.6649575514E+00 2.5916495470E+00 - 7.6854768899E+00 7.1254881492E+00 6.5906502469E+00 6.0816988581E+00 5.5992200995E+00 5.1436508712E+00 4.7152802585E+00 4.3142519659E+00 3.9405677456E+00 3.5940917769E+00 3.2745559441E+00 2.9815659530E+00 2.7146082216E+00 2.4730574719E+00 2.2561849479E+00 2.0631671784E+00 1.8930951997E+00 1.7449841524E+00 1.6177831630E+00 1.5103854205E+00 1.4216383584E+00 1.3503538518E+00 1.2953183437E+00 1.2553028137E+00 1.2290725066E+00 1.2153963429E+00 1.2130559376E+00 1.2208541562E+00 1.2376231471E+00 1.2622317914E+00 1.2935925202E+00 1.3306674557E+00 1.3724738405E+00 1.4180887253E+00 1.4666528948E+00 1.5173740189E+00 1.5695290224E+00 1.6224656770E+00 1.6756034242E+00 1.7284334471E+00 1.7805180141E+00 1.8314891264E+00 1.8810465053E+00 1.9289549624E+00 1.9750412010E+00 2.0191901002E+00 2.0613405396E+00 2.1014808231E+00 2.1396437659E+00 2.1759015081E+00 2.2103601222E+00 2.2431540798E+00 2.2744406450E+00 2.3043942593E+00 2.3332009841E+00 2.3610530608E+00 2.3881436490E+00 2.4146618006E+00 2.4407877183E+00 2.4666883518E+00 2.4925133698E+00 2.5183915506E+00 2.5444276206E+00 2.5706995704E+00 2.5972564678E+00 2.6241167836E+00 2.6512672401E+00 2.6786621834E+00 2.7062234783E+00 2.7338409152E+00 2.7613731157E+00 2.7886489159E+00 2.8154692019E+00 2.8416091683E+00 2.8668209641E+00 2.8908366882E+00 2.9133716918E+00 2.9341281440E+00 2.9527988111E+00 2.9690710028E+00 2.9826306323E+00 2.9931663410E+00 3.0003736352E+00 3.0039589833E+00 3.0036438254E+00 2.9991684442E+00 2.9902956534E+00 2.9768142567E+00 2.9585422397E+00 2.9353296546E+00 2.9070611654E+00 2.8736582234E+00 2.8350808490E+00 2.7913289978E+00 2.7424434964E+00 2.6885065375E+00 2.6296417277E+00 2.5660136890E+00 2.4978272162E+00 2.4253260030E+00 - 7.1501439625E+00 6.6227328882E+00 6.1202730762E+00 5.6433973790E+00 5.1925925068E+00 4.7681998939E+00 4.3704175880E+00 3.9993031307E+00 3.6547773902E+00 3.3366292991E+00 3.0445214416E+00 2.7779964322E+00 2.5364840149E+00 2.3193088153E+00 2.1256986645E+00 1.9547934181E+00 1.8056541837E+00 1.6772728728E+00 1.5685819897E+00 1.4784645687E+00 1.4057641730E+00 1.3492948683E+00 1.3078510860E+00 1.2802172948E+00 1.2651774003E+00 1.2615238001E+00 1.2680660212E+00 1.2836388773E+00 1.3071100854E+00 1.3373872893E+00 1.3734244432E+00 1.4142275162E+00 1.4588594864E+00 1.5064445978E+00 1.5561718660E+00 1.6072978195E+00 1.6591484779E+00 1.7111205703E+00 1.7626820067E+00 1.8133716237E+00 1.8627982290E+00 1.9106389778E+00 1.9566371206E+00 2.0005991653E+00 2.0423915026E+00 2.0819365476E+00 2.1192084552E+00 2.1542284675E+00 2.1870599565E+00 2.2178032255E+00 2.2465901331E+00 2.2735786065E+00 2.2989471076E+00 2.3228891154E+00 2.3456076880E+00 2.3673101622E+00 2.3882030492E+00 2.4084871789E+00 2.4283531422E+00 2.4479770772E+00 2.4675168393E+00 2.4871085902E+00 2.5068638361E+00 2.5268669393E+00 2.5471731214E+00 2.5678069710E+00 2.5887614618E+00 2.6099974829E+00 2.6314438751E+00 2.6529979633E+00 2.6745265679E+00 2.6958674746E+00 2.7168313352E+00 2.7372039702E+00 2.7567490356E+00 2.7752110187E+00 2.7923185173E+00 2.8077877607E+00 2.8213263246E+00 2.8326369912E+00 2.8414217060E+00 2.8473855812E+00 2.8502408951E+00 2.8497110397E+00 2.8455343676E+00 2.8374678915E+00 2.8252907937E+00 2.8088077019E+00 2.7878516948E+00 2.7622870013E+00 2.7320113624E+00 2.6969580292E+00 2.6570973730E+00 2.6124380916E+00 2.5630279957E+00 2.5089543690E+00 2.4503438972E+00 2.3873621675E+00 2.3202127443E+00 2.2491358324E+00 - 6.6464109229E+00 6.1506859955E+00 5.6796244374E+00 5.2337596924E+00 4.8134829013E+00 4.4190442674E+00 4.0505554046E+00 3.7079926345E+00 3.3912011901E+00 3.0999002768E+00 2.8336889346E+00 2.5920526386E+00 2.3743705716E+00 2.1799234939E+00 2.0079021364E+00 1.8574160346E+00 1.7275027218E+00 1.6171371982E+00 1.5252415881E+00 1.4506949016E+00 1.3923428157E+00 1.3490073893E+00 1.3194966330E+00 1.3026138534E+00 1.2971666974E+00 1.3019758255E+00 1.3158831479E+00 1.3377595628E+00 1.3665121412E+00 1.4010907109E+00 1.4404937961E+00 1.4837738784E+00 1.5300419507E+00 1.5784713440E+00 1.6283008120E+00 1.6788368702E+00 1.7294553877E+00 1.7796024429E+00 1.8287944564E+00 1.8766176249E+00 1.9227266831E+00 1.9668430290E+00 2.0087522517E+00 2.0483011078E+00 2.0853939939E+00 2.1199889707E+00 2.1520933931E+00 2.1817592074E+00 2.2090779750E+00 2.2341756873E+00 2.2572074325E+00 2.2783519801E+00 2.2978063439E+00 2.3157803856E+00 2.3324915189E+00 2.3481595700E+00 2.3630018498E+00 2.3772284878E+00 2.3910380734E+00 2.4046136485E+00 2.4181190866E+00 2.4316958930E+00 2.4454604505E+00 2.4595017343E+00 2.4738795097E+00 2.4886230244E+00 2.5037301984E+00 2.5191673104E+00 2.5348691736E+00 2.5507397885E+00 2.5666534545E+00 2.5824563187E+00 2.5979683337E+00 2.6129855930E+00 2.6272830092E+00 2.6406172970E+00 2.6527302169E+00 2.6633520394E+00 2.6722051802E+00 2.6790079622E+00 2.6834784543E+00 2.6853383399E+00 2.6843167668E+00 2.6801541311E+00 2.6726057503E+00 2.6614453795E+00 2.6464685317E+00 2.6274955609E+00 2.6043744732E+00 2.5769834327E+00 2.5452329353E+00 2.5090676229E+00 2.4684677205E+00 2.4234500792E+00 2.3740688133E+00 2.3204155261E+00 2.2626191224E+00 2.2008452096E+00 2.1352950958E+00 2.0662043967E+00 - 6.1703488027E+00 5.7053832981E+00 5.2647151965E+00 4.8487820148E+00 4.4578831848E+00 4.0921818915E+00 3.7517078526E+00 3.4363610024E+00 3.1459160350E+00 2.8800277554E+00 2.6382371813E+00 2.4199783313E+00 2.2245856325E+00 2.0513018739E+00 1.8992866290E+00 1.7676250695E+00 1.6553370884E+00 1.5613866484E+00 1.4846912747E+00 1.4241316074E+00 1.3785609310E+00 1.3468146029E+00 1.3277192997E+00 1.3201020087E+00 1.3227986920E+00 1.3346625579E+00 1.3545718750E+00 1.3814372758E+00 1.4142084966E+00 1.4518805102E+00 1.4934990143E+00 1.5381652433E+00 1.5850400804E+00 1.6333474529E+00 1.6823770019E+00 1.7314860214E+00 1.7801006748E+00 1.8277164968E+00 1.8738982015E+00 1.9182788187E+00 1.9605581906E+00 2.0005008640E+00 2.0379334182E+00 2.0727412765E+00 2.1048650490E+00 2.1342964606E+00 2.1610739210E+00 2.1852777946E+00 2.2070254303E+00 2.2264660126E+00 2.2437752962E+00 2.2591502840E+00 2.2728039104E+00 2.2849597867E+00 2.2958470689E+00 2.3056954979E+00 2.3147306662E+00 2.3231695582E+00 2.3312164053E+00 2.3390588979E+00 2.3468647862E+00 2.3547788995E+00 2.3629206090E+00 2.3713817508E+00 2.3802250235E+00 2.3894828668E+00 2.3991568242E+00 2.4092173844E+00 2.4196042937E+00 2.4302273258E+00 2.4409674875E+00 2.4516786401E+00 2.4621895046E+00 2.4723060232E+00 2.4818140373E+00 2.4904822470E+00 2.4980654090E+00 2.5043077307E+00 2.5089464150E+00 2.5117153113E+00 2.5123486243E+00 2.5105846356E+00 2.5061693926E+00 2.4988603173E+00 2.4884296948E+00 2.4746679968E+00 2.4573870035E+00 2.4364226851E+00 2.4116378118E+00 2.3829242608E+00 2.3502049953E+00 2.3134356929E+00 2.2726060056E+00 2.2277404386E+00 2.1788988376E+00 2.1261764818E+00 2.0697037808E+00 2.0096455810E+00 1.9462000907E+00 1.8795974352E+00 - 5.7189568222E+00 5.2837917972E+00 4.8724897028E+00 4.4853956827E+00 4.1227213470E+00 3.7845470584E+00 3.4708251161E+00 3.1813837971E+00 2.9159322085E+00 2.6740658966E+00 2.4552731556E+00 2.2589419697E+00 2.0843675217E+00 1.9307601945E+00 1.7972539903E+00 1.6829152891E+00 1.5867518675E+00 1.5077220952E+00 1.4447442303E+00 1.3967057323E+00 1.3624725123E+00 1.3408980462E+00 1.3308322734E+00 1.3311302117E+00 1.3406602211E+00 1.3583118531E+00 1.3830032287E+00 1.4136878922E+00 1.4493610955E+00 1.4890654718E+00 1.5318960657E+00 1.5770046936E+00 1.6236036133E+00 1.6709684904E+00 1.7184406553E+00 1.7654286520E+00 1.8114090861E+00 1.8559267857E+00 1.8985942963E+00 1.9390907358E+00 1.9771600417E+00 2.0126086482E+00 2.0453026343E+00 2.0751643900E+00 2.1021688503E+00 2.1263393497E+00 2.1477431541E+00 2.1664867252E+00 2.1827107794E+00 2.1965851979E+00 2.2083038499E+00 2.2180793863E+00 2.2261380631E+00 2.2327146496E+00 2.2380474772E+00 2.2423736773E+00 2.2459246597E+00 2.2489218719E+00 2.2515728837E+00 2.2540678287E+00 2.2565762372E+00 2.2592442843E+00 2.2621924746E+00 2.2655137801E+00 2.2692722403E+00 2.2735020297E+00 2.2782069926E+00 2.2833606389E+00 2.2889065911E+00 2.2947594657E+00 2.3008061688E+00 2.3069075828E+00 2.3129006136E+00 2.3186005674E+00 2.3238038209E+00 2.3282907480E+00 2.3318288604E+00 2.3341761226E+00 2.3350843951E+00 2.3343029630E+00 2.3315821050E+00 2.3266766581E+00 2.3193495336E+00 2.3093751432E+00 2.2965426927E+00 2.2806593042E+00 2.2615529323E+00 2.2390750371E+00 2.2131029872E+00 2.1835421619E+00 2.1503277326E+00 2.1134261010E+00 2.0728359811E+00 2.0285891119E+00 1.9807505956E+00 1.9294188578E+00 1.8747252320E+00 1.8168331736E+00 1.7559371153E+00 1.6922609760E+00 - 5.2900323667E+00 4.8836800908E+00 4.5006966574E+00 4.1413384634E+00 3.8057332145E+00 3.4938826346E+00 3.2056660269E+00 2.9408446447E+00 2.6990668226E+00 2.4798738139E+00 2.2827062736E+00 2.1069113234E+00 1.9517501284E+00 1.8164059155E+00 1.6999923560E+00 1.6015622386E+00 1.5201163518E+00 1.4546124998E+00 1.4039745714E+00 1.3671015856E+00 1.3428766380E+00 1.3301756735E+00 1.3278760157E+00 1.3348645858E+00 1.3500457471E+00 1.3723487179E+00 1.4007344986E+00 1.4342022661E+00 1.4717951933E+00 1.5126056577E+00 1.5557798107E+00 1.6005214844E+00 1.6460954200E+00 1.6918298090E+00 1.7371181438E+00 1.7814203836E+00 1.8242634434E+00 1.8652410262E+00 1.9040128180E+00 1.9403030764E+00 1.9738986450E+00 2.0046464328E+00 2.0324504008E+00 2.0572681030E+00 2.0791068315E+00 2.0980194184E+00 2.1140997491E+00 2.1274780445E+00 2.1383159674E+00 2.1468016140E+00 2.1531444445E+00 2.1575702128E+00 2.1603159484E+00 2.1616250450E+00 2.1617425073E+00 2.1609104026E+00 2.1593635635E+00 2.1573255824E+00 2.1550051335E+00 2.1525926572E+00 2.1502574316E+00 2.1481450572E+00 2.1463753699E+00 2.1450407971E+00 2.1442051631E+00 2.1439029464E+00 2.1441389874E+00 2.1448886367E+00 2.1460983331E+00 2.1476865935E+00 2.1495453937E+00 2.1515419143E+00 2.1535206220E+00 2.1553056558E+00 2.1567034809E+00 2.1575057728E+00 2.1574924939E+00 2.1564351179E+00 2.1540999634E+00 2.1502515910E+00 2.1446562227E+00 2.1370851406E+00 2.1273180227E+00 2.1151461766E+00 2.1003756316E+00 2.0828300529E+00 2.0623534451E+00 2.0388126116E+00 2.0120993453E+00 1.9821323230E+00 1.9488586847E+00 1.9122552810E+00 1.8723295740E+00 1.8291201849E+00 1.7826970827E+00 1.7331614131E+00 1.6806449721E+00 1.6253093311E+00 1.5673446253E+00 1.5069680210E+00 - 4.8820435621E+00 4.5034913140E+00 4.1477624240E+00 3.8150282409E+00 3.5053365149E+00 3.2186145045E+00 2.9546728886E+00 2.7132104390E+00 2.4938194019E+00 2.2959915339E+00 2.1191247302E+00 1.9625301811E+00 1.8254399879E+00 1.7070151668E+00 1.6063539666E+00 1.5225004258E+00 1.4544530922E+00 1.4011738300E+00 1.3615966368E+00 1.3346363980E+00 1.3191975058E+00 1.3141822715E+00 1.3184990663E+00 1.3310701268E+00 1.3508389657E+00 1.3767773352E+00 1.4078916934E+00 1.4432291304E+00 1.4818827175E+00 1.5229962471E+00 1.5657683394E+00 1.6094558968E+00 1.6533768943E+00 1.6969125000E+00 1.7395085272E+00 1.7806762248E+00 1.8199924205E+00 1.8570990341E+00 1.8917019879E+00 1.9235695435E+00 1.9525300998E+00 1.9784694918E+00 2.0013278338E+00 2.0210959543E+00 2.0378114704E+00 2.0515545573E+00 2.0624434627E+00 2.0706298249E+00 2.0762938481E+00 2.0796393914E+00 2.0808890279E+00 2.0802791257E+00 2.0780550064E+00 2.0744662296E+00 2.0697620526E+00 2.0641871088E+00 2.0579773486E+00 2.0513562784E+00 2.0445315321E+00 2.0376918045E+00 2.0310041710E+00 2.0246118132E+00 2.0186321650E+00 2.0131554898E+00 2.0082438935E+00 2.0039307720E+00 2.0002206906E+00 1.9970896831E+00 1.9944859582E+00 1.9923309943E+00 1.9905209997E+00 1.9889287127E+00 1.9874055115E+00 1.9857838020E+00 1.9838796480E+00 1.9814956069E+00 1.9784237313E+00 1.9744486984E+00 1.9693510234E+00 1.9629103184E+00 1.9549085545E+00 1.9451332863E+00 1.9333808014E+00 1.9194591541E+00 1.9031910509E+00 1.8844165502E+00 1.8629955483E+00 1.8388100219E+00 1.8117660015E+00 1.7817952562E+00 1.7488566689E+00 1.7129372903E+00 1.6740530599E+00 1.6322491874E+00 1.5876001926E+00 1.5402096053E+00 1.4902093296E+00 1.4377586827E+00 1.3830431199E+00 1.3262726632E+00 - 4.4940066725E+00 4.1422208177E+00 3.8126690016E+00 3.5054412947E+00 3.2205094712E+00 2.9577304888E+00 2.7168507259E+00 2.4975109278E+00 2.2992518118E+00 2.1215202725E+00 1.9636761273E+00 1.8249993359E+00 1.7046976266E+00 1.6019144583E+00 1.5157372454E+00 1.4452057733E+00 1.3893207293E+00 1.3470522761E+00 1.3173485951E+00 1.2991443277E+00 1.2913688470E+00 1.2929542923E+00 1.3028433049E+00 1.3199964062E+00 1.3433989628E+00 1.3720676909E+00 1.4050566533E+00 1.4414627127E+00 1.4804304063E+00 1.5211562162E+00 1.5628922143E+00 1.6049490669E+00 1.6466983918E+00 1.6875744650E+00 1.7270752824E+00 1.7647629854E+00 1.8002636682E+00 1.8332665871E+00 1.8635227993E+00 1.8908432633E+00 1.9150964364E+00 1.9362054106E+00 1.9541446291E+00 1.9689362329E+00 1.9806460838E+00 1.9893795180E+00 1.9952768814E+00 1.9985089008E+00 1.9992719456E+00 1.9977832324E+00 1.9942760273E+00 1.9889948959E+00 1.9821910523E+00 1.9741178534E+00 1.9650264841E+00 1.9551618759E+00 1.9447588946E+00 1.9340388345E+00 1.9232062469E+00 1.9124461306E+00 1.9019215039E+00 1.8917713764E+00 1.8821091314E+00 1.8730213263E+00 1.8645669135E+00 1.8567768783E+00 1.8496542884E+00 1.8431747419E+00 1.8372871990E+00 1.8319151773E+00 1.8269582870E+00 1.8222940803E+00 1.8177801835E+00 1.8132566810E+00 1.8085487146E+00 1.8034692642E+00 1.7978220690E+00 1.7914046527E+00 1.7840114119E+00 1.7754367295E+00 1.7654780727E+00 1.7539390390E+00 1.7406323114E+00 1.7253824893E+00 1.7080287609E+00 1.6884273851E+00 1.6664539571E+00 1.6420054292E+00 1.6150018670E+00 1.5853879206E+00 1.5531339964E+00 1.5182371168E+00 1.4807214606E+00 1.4406385801E+00 1.3980672933E+00 1.3531132559E+00 1.3059082193E+00 1.2566089851E+00 1.2053960707E+00 1.1524721014E+00 - 4.1253702369E+00 3.7993005047E+00 3.4948385790E+00 3.2119970890E+00 2.9506758417E+00 2.7106656502E+00 2.4916528691E+00 2.2932245892E+00 2.1148744376E+00 1.9560089269E+00 1.8159542893E+00 1.6939637332E+00 1.5892250528E+00 1.5008685224E+00 1.4279750035E+00 1.3695841947E+00 1.3247029506E+00 1.2923136008E+00 1.2713821983E+00 1.2608666304E+00 1.2597245251E+00 1.2669208937E+00 1.2814354484E+00 1.3022695412E+00 1.3284526753E+00 1.3590485421E+00 1.3931605454E+00 1.4299367772E+00 1.4685744182E+00 1.5083235385E+00 1.5484902842E+00 1.5884394368E+00 1.6275963433E+00 1.6654482178E+00 1.7015448214E+00 1.7354985350E+00 1.7669838430E+00 1.7957362512E+00 1.8215506697E+00 1.8442792911E+00 1.8638290048E+00 1.8801583849E+00 1.8932742985E+00 1.9032281800E+00 1.9101120206E+00 1.9140541232E+00 1.9152146748E+00 1.9137811880E+00 1.9099638647E+00 1.9039909322E+00 1.8961040034E+00 1.8865535094E+00 1.8755942521E+00 1.8634811203E+00 1.8504650126E+00 1.8367890037E+00 1.8226847901E+00 1.8083694456E+00 1.7940425144E+00 1.7798834626E+00 1.7660495082E+00 1.7526738410E+00 1.7398642441E+00 1.7277021174E+00 1.7162419071E+00 1.7055109327E+00 1.6955096046E+00 1.6862120184E+00 1.6775669083E+00 1.6694989388E+00 1.6619103115E+00 1.6546826568E+00 1.6476791845E+00 1.6407470574E+00 1.6337199551E+00 1.6264207924E+00 1.6186645551E+00 1.6102612156E+00 1.6010186903E+00 1.5907458019E+00 1.5792552093E+00 1.5663662690E+00 1.5519077934E+00 1.5357206743E+00 1.5176603388E+00 1.4975990115E+00 1.4754277563E+00 1.4510582754E+00 1.4244244458E+00 1.3954835776E+00 1.3642173813E+00 1.3306326343E+00 1.2947615421E+00 1.2566617916E+00 1.2164162978E+00 1.1741326506E+00 1.1299422682E+00 1.0839992711E+00 1.0364790895E+00 9.8757682387E-01 - 3.7759075435E+00 3.4744914238E+00 3.1940262727E+00 2.9344511768E+00 2.6955980115E+00 2.4771955910E+00 2.2788744772E+00 2.1001723963E+00 1.9405402087E+00 1.7993483746E+00 1.6758938523E+00 1.5694073649E+00 1.4790609699E+00 1.4039758607E+00 1.3432303340E+00 1.2958678507E+00 1.2609051240E+00 1.2373401638E+00 1.2241602133E+00 1.2203495128E+00 1.2248968282E+00 1.2368026884E+00 1.2550862742E+00 1.2787919110E+00 1.3069951189E+00 1.3388081783E+00 1.3733851787E+00 1.4099265169E+00 1.4476828239E+00 1.4859583003E+00 1.5241134483E+00 1.5615671931E+00 1.5977983943E+00 1.6323467510E+00 1.6648131124E+00 1.6948592081E+00 1.7222068226E+00 1.7466364357E+00 1.7679853636E+00 1.7861454313E+00 1.8010602186E+00 1.8127219173E+00 1.8211678469E+00 1.8264766735E+00 1.8287643816E+00 1.8281800465E+00 1.8249014598E+00 1.8191306563E+00 1.8110893939E+00 1.8010146351E+00 1.7891540783E+00 1.7757617854E+00 1.7610939483E+00 1.7454048386E+00 1.7289429752E+00 1.7119475484E+00 1.6946451292E+00 1.6772466930E+00 1.6599449810E+00 1.6429122173E+00 1.6262981990E+00 1.6102287665E+00 1.5948046635E+00 1.5801007849E+00 1.5661658127E+00 1.5530222303E+00 1.5406667066E+00 1.5290708321E+00 1.5181821910E+00 1.5079257456E+00 1.4982055081E+00 1.4889064727E+00 1.4798967776E+00 1.4710300637E+00 1.4621479976E+00 1.4530829236E+00 1.4436606079E+00 1.4337030404E+00 1.4230312568E+00 1.4114681458E+00 1.3988412069E+00 1.3849852239E+00 1.3697448239E+00 1.3529768902E+00 1.3345528006E+00 1.3143604684E+00 1.2923061595E+00 1.2683160687E+00 1.2423376377E+00 1.2143406004E+00 1.1843177468E+00 1.1522853982E+00 1.1182835904E+00 1.0823759656E+00 1.0446493766E+00 1.0052132099E+00 9.6419843833E-01 9.2175641623E-01 8.7805743305E-01 8.3328904430E-01 - 3.4456187132E+00 3.1677858982E+00 2.9102223274E+00 2.6727975002E+00 2.4552794168E+00 2.2573390259E+00 2.0785552812E+00 1.9184207543E+00 1.7763477491E+00 1.6516748586E+00 1.5436739026E+00 1.4515571813E+00 1.3744849801E+00 1.3115732583E+00 1.2619014538E+00 1.2245203376E+00 1.1984598504E+00 1.1827368576E+00 1.1763627588E+00 1.1783508908E+00 1.1877236676E+00 1.2035194020E+00 1.2247987595E+00 1.2506507982E+00 1.2801985538E+00 1.3126041331E+00 1.3470732859E+00 1.3828594284E+00 1.4192671001E+00 1.4556548386E+00 1.4914374641E+00 1.5260877716E+00 1.5591376328E+00 1.5901785160E+00 1.6188614386E+00 1.6448963701E+00 1.6680511086E+00 1.6881496603E+00 1.7050701530E+00 1.7187423189E+00 1.7291445872E+00 1.7363008276E+00 1.7402767881E+00 1.7411762754E+00 1.7391371235E+00 1.7343269994E+00 1.7269390950E+00 1.7171877543E+00 1.7053040820E+00 1.6915315831E+00 1.6761218764E+00 1.6593305267E+00 1.6414130369E+00 1.6226210369E+00 1.6031987054E+00 1.5833794568E+00 1.5633829200E+00 1.5434122339E+00 1.5236516806E+00 1.5042646704E+00 1.4853920921E+00 1.4671510353E+00 1.4496338874E+00 1.4329078046E+00 1.4170145524E+00 1.4019707047E+00 1.3877681901E+00 1.3743751672E+00 1.3617372109E+00 1.3497787845E+00 1.3384049734E+00 1.3275034516E+00 1.3169466503E+00 1.3065940982E+00 1.2962948984E+00 1.2858903093E+00 1.2752163940E+00 1.2641067038E+00 1.2523949623E+00 1.2399177137E+00 1.2265169066E+00 1.2120423775E+00 1.1963542088E+00 1.1793249294E+00 1.1608415368E+00 1.1408073143E+00 1.1191434256E+00 1.0957902694E+00 1.0707085788E+00 1.0438802565E+00 1.0153089373E+00 9.8502027398E-01 9.5306194545E-01 9.1950339030E-01 8.8443527078E-01 8.4796867612E-01 8.1023407691E-01 7.7138004497E-01 7.3157175572E-01 6.9098929235E-01 - 3.1346433401E+00 2.8793201401E+00 2.6435647365E+00 2.4271810453E+00 2.2298772641E+00 2.0512705934E+00 1.8908925145E+00 1.7481945747E+00 1.6225546207E+00 1.5132834230E+00 1.4196316289E+00 1.3407969807E+00 1.2759317349E+00 1.2241502160E+00 1.1845364412E+00 1.1561517497E+00 1.1380423729E+00 1.1292468852E+00 1.1288034733E+00 1.1357569691E+00 1.1491655906E+00 1.1681073426E+00 1.1916860291E+00 1.2190368381E+00 1.2493314601E+00 1.2817827098E+00 1.3156486237E+00 1.3502360130E+00 1.3849034559E+00 1.4190637192E+00 1.4521856044E+00 1.4837952201E+00 1.5134766860E+00 1.5408722801E+00 1.5656820463E+00 1.5876628830E+00 1.6066271381E+00 1.6224407416E+00 1.6350209070E+00 1.6443334401E+00 1.6503896947E+00 1.6532432169E+00 1.6529861213E+00 1.6497452474E+00 1.6436781394E+00 1.6349688995E+00 1.6238239602E+00 1.6104678223E+00 1.5951388064E+00 1.5780848589E+00 1.5595594590E+00 1.5398176647E+00 1.5191123359E+00 1.4976905715E+00 1.4757903899E+00 1.4536376833E+00 1.4314434695E+00 1.4094014617E+00 1.3876859749E+00 1.3664501792E+00 1.3458247106E+00 1.3259166431E+00 1.3068088218E+00 1.2885595541E+00 1.2712026518E+00 1.2547478110E+00 1.2391813171E+00 1.2244670554E+00 1.2105478058E+00 1.1973467997E+00 1.1847695093E+00 1.1727056446E+00 1.1610313248E+00 1.1496113947E+00 1.1383018522E+00 1.1269523539E+00 1.1154087668E+00 1.1035157311E+00 1.0911192019E+00 1.0780689395E+00 1.0642209152E+00 1.0494396058E+00 1.0336001486E+00 1.0165903321E+00 9.9831240013E-01 9.7868464822E-01 9.5764279695E-01 9.3514112605E-01 9.1115335926E-01 8.8567329123E-01 8.5871515189E-01 8.3031370626E-01 8.0052409143E-01 7.6942139499E-01 7.3709998263E-01 7.0367258510E-01 6.6926915794E-01 6.3403552927E-01 5.9813185394E-01 5.6173089375E-01 - 2.8431843188E+00 2.6092979874E+00 2.3942629225E+00 2.1978214994E+00 2.0196261955E+00 1.8592445587E+00 1.7161646835E+00 1.5898011420E+00 1.4795013140E+00 1.3845520545E+00 1.3041866405E+00 1.2375919318E+00 1.1839156847E+00 1.1422739530E+00 1.1117585145E+00 1.0914442597E+00 1.0803964826E+00 1.0776780140E+00 1.0823561416E+00 1.0935092633E+00 1.1102332237E+00 1.1316472880E+00 1.1568997121E+00 1.1851728699E+00 1.2156879074E+00 1.2477088951E+00 1.2805464565E+00 1.3135608561E+00 1.3461645350E+00 1.3778240888E+00 1.4080616857E+00 1.4364559309E+00 1.4626421846E+00 1.4863123510E+00 1.5072141550E+00 1.5251499312E+00 1.5399749531E+00 1.5515953333E+00 1.5599655299E+00 1.5650854968E+00 1.5669975174E+00 1.5657827650E+00 1.5615576335E+00 1.5544698825E+00 1.5446946439E+00 1.5324303340E+00 1.5178945191E+00 1.5013197766E+00 1.4829495970E+00 1.4630343688E+00 1.4418274852E+00 1.4195816107E+00 1.3965451433E+00 1.3729589027E+00 1.3490530743E+00 1.3250444339E+00 1.3011338732E+00 1.2775042463E+00 1.2543185476E+00 1.2317184335E+00 1.2098230917E+00 1.1887284599E+00 1.1685067931E+00 1.1492065706E+00 1.1308527354E+00 1.1134472514E+00 1.0969699617E+00 1.0813797294E+00 1.0666158371E+00 1.0525996216E+00 1.0392363164E+00 1.0264170729E+00 1.0140211309E+00 1.0019181072E+00 9.8997036927E-01 9.7803546426E-01 9.6596856848E-01 9.5362492776E-01 9.4086225675E-01 9.2754306770E-01 9.1353690029E-01 8.9872242580E-01 8.8298940098E-01 8.6624044926E-01 8.4839264918E-01 8.2937891288E-01 8.0914914007E-01 7.8767113581E-01 7.6493128369E-01 7.4093496869E-01 7.1570674745E-01 6.8929026645E-01 6.6174793174E-01 6.3316033689E-01 6.0362545828E-01 5.7325762994E-01 5.4218631232E-01 5.1055467174E-01 4.7851798941E-01 4.4624192053E-01 - 2.5714431832E+00 2.3579260952E+00 2.1625328160E+00 1.9849482525E+00 1.8247732455E+00 1.6815297597E+00 1.5546665331E+00 1.4435651307E+00 1.3475463459E+00 1.2658768909E+00 1.1977763146E+00 1.1424240868E+00 1.0989667869E+00 1.0665253358E+00 1.0442022084E+00 1.0310885686E+00 1.0262712675E+00 1.0288396509E+00 1.0378921206E+00 1.0525424032E+00 1.0719254772E+00 1.0952031187E+00 1.1215690279E+00 1.1502535012E+00 1.1805276244E+00 1.2117069602E+00 1.2431547148E+00 1.2742843693E+00 1.3045617683E+00 1.3335066648E+00 1.3606937230E+00 1.3857529867E+00 1.4083698272E+00 1.4282843874E+00 1.4452905428E+00 1.4592344080E+00 1.4700124145E+00 1.4775689956E+00 1.4818939137E+00 1.4830192667E+00 1.4810162171E+00 1.4759914826E+00 1.4680836351E+00 1.4574592493E+00 1.4443089481E+00 1.4288433865E+00 1.4112892209E+00 1.3918851029E+00 1.3708777428E+00 1.3485180788E+00 1.3250575912E+00 1.3007447960E+00 1.2758219490E+00 1.2505219900E+00 1.2250657513E+00 1.1996594545E+00 1.1744925105E+00 1.1497356402E+00 1.1255393244E+00 1.1020325896E+00 1.0793221335E+00 1.0574917870E+00 1.0366023102E+00 1.0166915113E+00 9.9777467842E-01 9.7984530785E-01 9.6287611144E-01 9.4682028130E-01 9.3161298900E-01 9.1717309355E-01 9.0340503078E-01 8.9020085543E-01 8.7744240595E-01 8.6500356132E-01 8.5275255898E-01 8.4055434257E-01 8.2827290887E-01 8.1577362374E-01 8.0292547797E-01 7.8960325518E-01 7.7568958568E-01 7.6107686176E-01 7.4566899230E-01 7.2938297691E-01 7.1215028195E-01 6.9391800412E-01 6.7464980946E-01 6.5432663895E-01 6.3294717472E-01 6.1052806374E-01 5.8710389905E-01 5.6272696140E-01 5.3746672698E-01 5.1140914973E-01 4.8465572936E-01 4.5732237858E-01 4.2953810524E-01 4.0144352728E-01 3.7318924003E-01 3.4493405705E-01 - 2.3195669999E+00 2.1253606312E+00 1.9485433893E+00 1.7887468047E+00 1.6455241578E+00 1.5183558666E+00 1.4066552838E+00 1.3097748501E+00 1.2270125452E+00 1.1576185777E+00 1.1008022549E+00 1.0557389712E+00 1.0215772556E+00 9.9744581720E-01 9.8246053107E-01 9.7573130722E-01 9.7636878699E-01 9.8349081522E-01 9.9622863861E-01 1.0137327842E+00 1.0351785765E+00 1.0597712542E+00 1.0867506547E+00 1.1153954356E+00 1.1450268114E+00 1.1750117842E+00 1.2047658568E+00 1.2337552169E+00 1.2614983916E+00 1.2875673710E+00 1.3115882091E+00 1.3332411121E+00 1.3522600302E+00 1.3684317726E+00 1.3815946710E+00 1.3916368169E+00 1.3984939071E+00 1.4021467291E+00 1.4026183246E+00 1.3999708697E+00 1.3943023124E+00 1.3857428101E+00 1.3744510099E+00 1.3606102142E+00 1.3444244767E+00 1.3261146697E+00 1.3059145663E+00 1.2840669774E+00 1.2608199822E+00 1.2364232903E+00 1.2111247678E+00 1.1851671620E+00 1.1587850503E+00 1.1322020422E+00 1.1056282538E+00 1.0792580745E+00 1.0532682420E+00 1.0278162341E+00 1.0030389870E+00 9.7905194239E-01 9.5594842390E-01 9.3379933776E-01 9.1265319168E-01 8.9253642020E-01 8.7345400267E-01 8.5539035700E-01 8.3831048921E-01 8.2216137675E-01 8.0687356120E-01 7.9236292414E-01 7.7853261847E-01 7.6527512653E-01 7.5247441505E-01 7.4000815709E-01 7.2774999053E-01 7.1557178326E-01 7.0334587549E-01 6.9094727078E-01 6.7825574838E-01 6.6515787103E-01 6.5154886426E-01 6.3733434500E-01 6.2243187987E-01 6.0677235555E-01 5.9030114661E-01 5.7297906861E-01 5.5478310719E-01 5.3570691688E-01 5.1576108589E-01 4.9497316655E-01 4.7338747348E-01 4.5106465457E-01 4.2808104262E-01 4.0452779782E-01 3.8050985396E-01 3.5614468309E-01 3.3156089585E-01 3.0689669604E-01 2.8229820985E-01 2.5791771139E-01 - 2.0876065964E+00 1.9116652620E+00 1.7523744393E+00 1.6093163818E+00 1.4820008692E+00 1.3698707683E+00 1.2723079540E+00 1.1886395387E+00 1.1181443499E+00 1.0600596006E+00 1.0135876903E+00 9.7790308116E-01 9.5215918662E-01 9.3549521815E-01 9.2704293157E-01 9.2593321955E-01 9.3130249797E-01 9.4229883728E-01 9.5808779282E-01 9.7785789204E-01 1.0008257404E+00 1.0262407122E+00 1.0533891962E+00 1.0815983729E+00 1.1102395012E+00 1.1387307024E+00 1.1665392292E+00 1.1931832160E+00 1.2182329111E+00 1.2413113940E+00 1.2620947894E+00 1.2803119908E+00 1.2957439131E+00 1.3082222958E+00 1.3176280839E+00 1.3238894165E+00 1.3269792543E+00 1.3269126833E+00 1.3237439312E+00 1.3175631366E+00 1.3084929108E+00 1.2966847365E+00 1.2823152420E+00 1.2655823975E+00 1.2467016726E+00 1.2259021970E+00 1.2034229656E+00 1.1795091251E+00 1.1544083796E+00 1.1283675494E+00 1.1016293141E+00 1.0744291703E+00 1.0469926279E+00 1.0195326690E+00 9.9224748757E-01 9.6531852623E-01 9.3890882041E-01 9.1316165966E-01 8.8819956929E-01 8.6412361348E-01 8.4101301669E-01 8.1892509707E-01 7.9789550184E-01 7.7793873185E-01 7.5904893915E-01 7.4120097904E-01 7.2435169534E-01 7.0844141559E-01 6.9339563102E-01 6.7912683451E-01 6.6553648859E-01 6.5251709478E-01 6.3995433470E-01 6.2772925368E-01 6.1572045731E-01 6.0380629217E-01 5.9186698259E-01 5.7978669654E-01 5.6745551516E-01 5.5477128188E-01 5.4164130950E-01 5.2798392517E-01 5.1372983594E-01 4.9882329996E-01 4.8322309094E-01 4.6690324638E-01 4.4985359269E-01 4.3208004343E-01 4.1360466940E-01 3.9446554242E-01 3.7471635727E-01 3.5442583886E-01 3.3367694435E-01 3.1256587223E-01 2.9120089272E-01 2.6970101562E-01 2.4819451388E-01 2.2681732236E-01 2.0571133288E-01 1.8502260742E-01 - 1.8754856707E+00 1.7167799881E+00 1.5739851837E+00 1.4466383284E+00 1.3342097352E+00 1.2361086669E+00 1.1516893580E+00 1.0802572970E+00 1.0210757101E+00 9.7337219069E-01 9.3634541517E-01 9.0917188797E-01 8.9101265887E-01 8.8101995674E-01 8.7834368605E-01 8.8213773435E-01 8.9156604196E-01 9.0580838799E-01 9.2406585048E-01 9.4556590198E-01 9.6956710640E-01 9.9536338698E-01 1.0222878401E+00 1.0497160738E+00 1.0770690561E+00 1.1038154610E+00 1.1294735067E+00 1.1536122855E+00 1.1758525874E+00 1.1958672281E+00 1.2133808912E+00 1.2281695053E+00 1.2400591735E+00 1.2489246837E+00 1.2546876245E+00 1.2573141421E+00 1.2568123682E+00 1.2532295586E+00 1.2466489795E+00 1.2371865806E+00 1.2249874978E+00 1.2102224252E+00 1.1930838984E+00 1.1737825319E+00 1.1525432493E+00 1.1296015467E+00 1.1051998293E+00 1.0795838537E+00 1.0529993146E+00 1.0256886041E+00 9.9788777447E-01 9.6982373028E-01 9.4171167209E-01 9.1375281171E-01 8.8613237478E-01 8.5901790322E-01 8.3255786610E-01 8.0688058421E-01 7.8209346961E-01 7.5828257813E-01 7.3551246927E-01 7.1382636442E-01 6.9324659150E-01 6.7377530089E-01 6.5539543479E-01 6.3807192998E-01 6.2175313131E-01 6.0637239172E-01 5.9184983280E-01 5.7809423869E-01 5.6500505525E-01 5.5247446580E-01 5.4038951434E-01 5.2863424759E-01 5.1709184721E-01 5.0564672457E-01 4.9418655141E-01 4.8260420093E-01 4.7079957568E-01 4.5868130024E-01 4.4616825900E-01 4.3319096123E-01 4.1969271858E-01 4.0563062227E-01 3.9097631002E-01 3.7571651581E-01 3.5985339791E-01 3.4340464363E-01 3.2640335219E-01 3.0889769939E-01 2.9095039093E-01 2.7263791321E-01 2.5404959335E-01 2.3528648183E-01 2.1646007376E-01 1.9769088611E-01 1.7910690995E-01 1.6084195841E-01 1.4303393155E-01 1.2582302068E-01 - 1.6829801323E+00 1.5405001811E+00 1.4131930308E+00 1.3005546476E+00 1.2020198743E+00 1.1169682605E+00 1.0447301616E+00 9.8459305140E-01 9.3580799178E-01 8.9759620191E-01 8.6915567095E-01 8.4966775758E-01 8.3830372141E-01 8.3423113289E-01 8.3662011040E-01 8.4464933564E-01 8.5751180161E-01 8.7442025054E-01 8.9461226314E-01 9.1735496402E-01 9.4194931305E-01 9.6773395615E-01 9.9408861417E-01 1.0204369930E+00 1.0462492028E+00 1.0710436797E+00 1.0943886067E+00 1.1159028373E+00 1.1352563281E+00 1.1521700925E+00 1.1664156903E+00 1.1778142750E+00 1.1862352199E+00 1.1915943524E+00 1.1938518253E+00 1.1930096584E+00 1.1891089860E+00 1.1822270472E+00 1.1724739583E+00 1.1599893070E+00 1.1449386091E+00 1.1275096690E+00 1.1079088839E+00 1.0863575339E+00 1.0630880947E+00 1.0383406135E+00 1.0123591819E+00 9.8538854247E-01 9.5767085893E-01 9.2944267971E-01 9.0093212187E-01 8.7235629781E-01 8.4391900504E-01 8.1580869560E-01 7.8819673795E-01 7.6123598086E-01 7.3505962514E-01 7.0978040535E-01 6.8549008016E-01 6.6225922674E-01 6.4013733092E-01 6.1915316197E-01 5.9931541785E-01 5.8061362383E-01 5.6301926518E-01 5.4648713217E-01 5.3095685375E-01 5.1635459475E-01 5.0259488997E-01 4.8958258755E-01 4.7721487359E-01 4.6538334932E-01 4.5397613241E-01 4.4287995426E-01 4.3198222572E-01 4.2117304469E-01 4.1034712039E-01 3.9940559051E-01 3.8825770916E-01 3.7682238587E-01 3.6502955755E-01 3.5282137833E-01 3.4015321408E-01 3.2699443166E-01 3.1332897498E-01 2.9915572344E-01 2.8448863041E-01 2.6935664258E-01 2.5380340372E-01 2.3788674858E-01 2.2167799587E-01 2.0526105095E-01 1.8873133164E-01 1.7219453212E-01 1.5576524224E-01 1.3956544062E-01 1.2372288178E-01 1.0836939825E-01 9.3639139841E-02 7.9666772442E-02 - 1.5097068478E+00 1.3824650081E+00 1.2696617170E+00 1.1707558850E+00 1.0851508340E+00 1.0122002256E+00 9.5121421427E-01 9.0146576890E-01 8.6219710754E-01 8.3262618877E-01 8.1195320444E-01 7.9936701920E-01 7.9405150377E-01 7.9519171074E-01 8.0197984419E-01 8.1362097722E-01 8.2933847466E-01 8.4837908167E-01 8.7001764285E-01 8.9356142078E-01 9.1835398674E-01 9.4377866161E-01 9.6926148873E-01 9.9427372615E-01 1.0183338497E+00 1.0410090634E+00 1.0619163188E+00 1.0807228484E+00 1.0971462242E+00 1.1109539555E+00 1.1219626443E+00 1.1300367216E+00 1.1350867895E+00 1.1370675988E+00 1.1359756940E+00 1.1318467593E+00 1.1247527031E+00 1.1147985179E+00 1.1021189556E+00 1.0868750576E+00 1.0692505816E+00 1.0494483625E+00 1.0276866512E+00 1.0041954665E+00 9.7921300147E-01 9.5298211778E-01 9.2574696357E-01 8.9774974694E-01 8.6922769410E-01 8.4041021916E-01 8.1151632906E-01 7.8275228429E-01 7.5430953238E-01 7.2636292782E-01 6.9906924865E-01 6.7256601610E-01 6.4697062042E-01 6.2237975229E-01 5.9886913593E-01 5.7649355653E-01 5.5528717169E-01 5.3526409340E-01 5.1641922434E-01 4.9872932981E-01 4.8215432431E-01 4.6663874984E-01 4.5211342110E-01 4.3849721177E-01 4.2569895454E-01 4.1361942736E-01 4.0215339740E-01 3.9119169475E-01 3.8062328764E-01 3.7033733190E-01 3.6022516811E-01 3.5018224111E-01 3.4010991795E-01 3.2991718215E-01 3.1952218410E-01 3.0885362933E-01 2.9785198905E-01 2.8647051965E-01 2.7467608029E-01 2.6244974075E-01 2.4978717399E-01 2.3669883111E-01 2.2320989861E-01 2.0936004106E-01 1.9520293451E-01 1.8080559874E-01 1.6624753878E-01 1.5161970835E-01 1.3702330997E-01 1.2256844835E-01 1.0837265534E-01 9.4559306090E-02 8.1255947214E-02 6.8592558832E-02 5.6699772716E-02 4.5707069394E-02 - 1.3551208380E+00 1.2421542935E+00 1.1428978681E+00 1.0567774234E+00 9.8316865074E-01 9.2140307512E-01 8.7077423846E-01 8.3054400953E-01 7.9994896422E-01 7.7820678142E-01 7.6452260034E-01 7.5809528661E-01 7.5812355598E-01 7.6381190699E-01 7.7437631636E-01 7.8904965423E-01 8.0708677931E-01 8.2776927822E-01 8.5040981698E-01 8.7435607681E-01 8.9899425107E-01 9.2375208457E-01 9.4810144098E-01 9.7156038923E-01 9.9369480395E-01 1.0141194802E+00 1.0324987668E+00 1.0485467278E+00 1.0620268447E+00 1.0727512772E+00 1.0805797044E+00 1.0854177694E+00 1.0872151575E+00 1.0859633366E+00 1.0816929957E+00 1.0744712139E+00 1.0643984007E+00 1.0516050426E+00 1.0362482983E+00 1.0185084811E+00 9.9858546780E-01 9.7669507613E-01 9.5306544697E-01 9.2793347098E-01 9.0154129511E-01 8.7413294371E-01 8.4595108652E-01 8.1723398330E-01 7.8821263240E-01 7.5910814730E-01 7.3012938232E-01 7.0147082513E-01 6.7331077057E-01 6.4580978658E-01 6.1910947954E-01 5.9333156292E-01 5.6857722941E-01 5.4492682358E-01 5.2243980845E-01 5.0115501642E-01 4.8109117188E-01 4.6224767012E-01 4.4460559440E-01 4.2812895100E-01 4.1276609966E-01 3.9845135549E-01 3.8510673655E-01 3.7264383061E-01 3.6096575336E-01 3.4996917035E-01 3.3954635429E-01 3.2958725001E-01 3.1998151947E-01 3.1062054039E-01 3.0139933290E-01 2.9221839007E-01 2.8298538996E-01 2.7361676848E-01 2.6403913468E-01 2.5419051209E-01 2.4402139239E-01 2.3349559014E-01 2.2259088993E-01 2.1129948003E-01 1.9962816940E-01 1.8759838758E-01 1.7524596977E-01 1.6262073199E-01 1.4978584371E-01 1.3681700798E-01 1.2380146108E-01 1.1083680602E-01 9.8029696110E-02 8.5494386424E-02 7.3351172558E-02 6.1724737251E-02 5.0742426423E-02 4.0532476876E-02 3.1222218340E-02 2.2936272709E-02 - 1.2185198660E+00 1.1188927688E+00 1.0322549412E+00 9.5800314725E-01 8.9548927018E-01 8.4402636571E-01 8.0289485482E-01 7.7134880098E-01 7.4862221728E-01 7.3393535005E-01 7.2650088613E-01 7.2553003288E-01 7.3023842225E-01 7.3985179221E-01 7.5361140247E-01 7.7077914393E-01 7.9064230554E-01 8.1251796572E-01 8.3575697967E-01 8.5974753842E-01 8.8391827974E-01 9.0774093565E-01 9.3073250612E-01 9.5245695281E-01 9.7252641196E-01 9.9060192934E-01 1.0063937255E+00 1.0196610029E+00 1.0302113116E+00 1.0378994931E+00 1.0426262262E+00 1.0443362019E+00 1.0430159565E+00 1.0386913968E+00 1.0314250497E+00 1.0213130760E+00 1.0084820825E+00 9.9308577506E-01 9.7530148894E-01 9.5532663858E-01 9.3337512485E-01 9.0967373910E-01 8.8445860197E-01 8.5797167314E-01 8.3045736694E-01 8.0215930634E-01 7.7331724576E-01 7.4416419022E-01 7.1492373573E-01 6.8580765265E-01 6.5701373049E-01 6.2872389935E-01 6.0110263960E-01 5.7429568819E-01 5.4842904599E-01 5.2360828754E-01 4.9991817091E-01 4.7742254194E-01 4.5616452434E-01 4.3616698340E-01 4.1743324904E-01 3.9994808051E-01 3.8367885330E-01 3.6857694625E-01 3.5457930533E-01 3.4161015895E-01 3.2958285825E-01 3.1840181536E-01 3.0796451166E-01 2.9816354802E-01 2.8888870916E-01 2.8002901455E-01 2.7147472912E-01 2.6311930793E-01 2.5486125050E-01 2.4660584175E-01 2.3826675869E-01 2.2976752361E-01 2.2104278714E-01 2.1203942664E-01 2.0271744806E-01 1.9305068195E-01 1.8302726701E-01 1.7264991736E-01 1.6193597230E-01 1.5091723027E-01 1.3963957106E-01 1.2816237337E-01 1.1655773668E-01 1.0490951926E-01 9.3312206104E-02 8.1869622267E-02 7.0693509453E-02 5.9901984629E-02 4.9617901125E-02 3.9967133564E-02 3.1076808769E-02 2.3073505322E-02 1.6081444653E-02 1.0220696535E-02 - 1.0990552945E+00 1.0118605915E+00 9.3694343462E-01 8.7367537538E-01 8.2138823011E-01 7.7938016087E-01 7.4692185522E-01 7.2326275087E-01 7.0763725185E-01 6.9927088379E-01 6.9738633730E-01 7.0120935051E-01 7.0997438399E-01 7.2293004435E-01 7.3934421549E-01 7.5850886038E-01 7.7974445973E-01 8.0240405799E-01 8.2587689145E-01 8.4959157733E-01 8.7301884773E-01 8.9567381640E-01 9.1711777129E-01 9.3695949031E-01 9.5485608225E-01 9.7051335950E-01 9.8368575311E-01 9.9417578533E-01 1.0018331183E+00 1.0065532016E+00 1.0082755438E+00 1.0069816380E+00 1.0026925714E+00 9.9546635473E-01 9.8539500490E-01 9.7260142034E-01 9.5723608620E-01 9.3947364912E-01 9.1950940076E-01 8.9755570962E-01 8.7383843990E-01 8.4859339538E-01 8.2206282493E-01 7.9449202481E-01 7.6612607076E-01 7.3720671069E-01 7.0796944633E-01 6.7864082932E-01 6.4943599414E-01 6.2055644741E-01 5.9218812935E-01 5.6449976024E-01 5.3764148071E-01 5.1174379184E-01 4.8691679682E-01 4.6324974314E-01 4.4081086045E-01 4.1964748622E-01 3.9978646828E-01 3.8123483014E-01 3.6398068267E-01 3.4799436305E-01 3.3322977963E-01 3.1962593977E-01 3.0710863574E-01 2.9559226269E-01 2.8498174167E-01 2.7517452005E-01 2.6606262123E-01 2.5753471583E-01 2.4947818649E-01 2.4178115937E-01 2.3433447626E-01 2.2703358241E-01 2.1978030664E-01 2.1248451227E-01 2.0506559905E-01 1.9745383875E-01 1.8959152907E-01 1.8143395342E-01 1.7295013630E-01 1.6412338695E-01 1.5495162673E-01 1.4544749796E-01 1.3563825541E-01 1.2556544364E-01 1.1528436640E-01 1.0486335665E-01 9.4382858233E-02 8.3934332348E-02 7.3619004033E-02 6.3546465790E-02 5.3833156999E-02 4.4600739170E-02 3.5974388248E-02 2.8081025991E-02 2.1047513093E-02 1.4998826996E-02 1.0056247439E-02 6.3355725076E-03 - 9.9574805498E-01 9.2010898372E-01 8.5604622362E-01 8.0290991873E-01 7.6001546970E-01 7.2664961922E-01 7.0207659768E-01 6.8554427612E-01 6.7629027409E-01 6.7354797144E-01 6.7655237491E-01 6.8454579248E-01 6.9678327106E-01 7.1253775612E-01 7.3110493524E-01 7.5180773100E-01 7.7400041283E-01 7.9707230124E-01 8.2045104247E-01 8.4360543582E-01 8.6604780056E-01 8.8733587397E-01 9.0707423656E-01 9.2491526503E-01 9.4055961822E-01 9.5375626537E-01 9.6430207030E-01 9.7204094915E-01 9.7686262280E-01 9.7870098875E-01 9.7753214022E-01 9.7337206314E-01 9.6627404383E-01 9.5632582270E-01 9.4364653041E-01 9.2838344464E-01 9.1070860618E-01 8.9081533348E-01 8.6891467517E-01 8.4523183905E-01 8.2000263597E-01 7.9346997533E-01 7.6588044771E-01 7.3748102822E-01 7.0851593193E-01 6.7922365042E-01 6.4983419569E-01 6.2056657473E-01 5.9162651511E-01 5.6320445844E-01 5.3547383533E-01 5.0858963208E-01 4.8268725562E-01 4.5788169989E-01 4.3426701344E-01 4.1191606448E-01 3.9088059643E-01 3.7119156388E-01 3.5285973597E-01 3.3587655124E-01 3.2021520577E-01 3.0583195393E-01 2.9266759907E-01 2.8064914997E-01 2.6969161727E-01 2.5969992308E-01 2.5057089622E-01 2.4219532521E-01 2.3446004075E-01 2.2725000002E-01 2.2045034536E-01 2.1394841090E-01 2.0763565178E-01 2.0140947209E-01 1.9517492915E-01 1.8884629388E-01 1.8234844899E-01 1.7561810888E-01 1.6860484799E-01 1.6127192629E-01 1.5359690395E-01 1.4557203933E-01 1.3720446764E-01 1.2851616000E-01 1.1954366566E-01 1.1033764261E-01 1.0096218434E-01 9.1493953023E-02 8.2021131711E-02 7.2642210101E-02 6.3464620496E-02 5.4603242178E-02 4.6178793944E-02 3.8316135737E-02 3.1142501287E-02 2.4785684372E-02 1.9372201714E-02 1.5025455701E-02 1.1863919974E-02 9.9993705477E-03 - 9.0750856922E-01 8.4257983509E-01 7.8853786869E-01 7.4471512057E-01 7.1041412604E-01 6.8491357288E-01 6.6747439250E-01 6.5734582257E-01 6.5377139010E-01 6.5599476543E-01 6.6326543996E-01 6.7484418261E-01 6.9000823286E-01 7.0805619164E-01 7.2831257459E-01 7.5013199605E-01 7.7290295635E-01 7.9605120894E-01 8.1904268839E-01 8.4138598492E-01 8.6263435529E-01 8.8238726500E-01 9.0029146064E-01 9.1604157636E-01 9.2938028223E-01 9.4009798681E-01 9.4803211015E-01 9.5306594715E-01 9.5512714478E-01 9.5418581993E-01 9.5025234730E-01 9.4337484968E-01 9.3363642467E-01 9.2115214406E-01 9.0606586319E-01 8.8854687876E-01 8.6878647411E-01 8.4699439097E-01 8.2339526670E-01 7.9822507523E-01 7.7172760890E-01 7.4415103708E-01 7.1574457566E-01 6.8675529948E-01 6.5742512744E-01 6.2798800734E-01 5.9866732478E-01 5.6967355729E-01 5.4120219171E-01 5.1343191952E-01 4.8652312132E-01 4.6061664833E-01 4.3583290508E-01 4.1227123413E-01 3.9000960031E-01 3.6910456848E-01 3.4959156569E-01 3.3148541581E-01 3.1478113140E-01 2.9945494559E-01 2.8546556382E-01 2.7275561355E-01 2.6125326810E-01 2.5087401926E-01 2.4152257228E-01 2.3309483566E-01 2.2547997796E-01 2.1856252344E-01 2.1222445839E-01 2.0634732072E-01 2.0081424569E-01 1.9551194215E-01 1.9033257461E-01 1.8517552826E-01 1.7994903574E-01 1.7457164666E-01 1.6897352291E-01 1.6309754530E-01 1.5690021964E-01 1.5035237292E-01 1.4343963291E-01 1.3616268746E-01 1.2853732230E-01 1.2059423896E-01 1.1237865726E-01 1.0394970911E-01 9.5379633187E-02 8.6752782171E-02 7.8164456481E-02 6.9719580516E-02 6.1531239104E-02 5.3719093471E-02 4.6407697374E-02 3.9724735085E-02 3.3799203747E-02 2.8759563125E-02 2.4731876067E-02 2.1837962940E-02 2.0193593044E-02 1.9906735433E-02 - 8.3315948972E-01 7.7812814124E-01 7.3330677440E-01 6.9801375774E-01 6.7154220101E-01 6.5316598346E-01 6.4214577087E-01 6.3773497002E-01 6.3918557127E-01 6.4575383131E-01 6.5670575084E-01 6.7132230427E-01 6.8890438179E-01 7.0877740749E-01 7.3029560077E-01 7.5284585231E-01 7.7585119003E-01 7.9877381458E-01 8.2111768850E-01 8.4243066765E-01 8.6230616800E-01 8.8038436549E-01 8.9635293092E-01 9.0994730661E-01 9.2095053538E-01 9.2919265666E-01 9.3454968842E-01 9.3694221710E-01 9.3633362106E-01 9.3272795598E-01 9.2616753346E-01 9.1673022620E-01 9.0452653512E-01 8.8969645522E-01 8.7240617827E-01 8.5284467097E-01 8.3122016747E-01 8.0775661540E-01 7.8269011350E-01 7.5626537857E-01 7.2873227803E-01 7.0034246253E-01 6.7134613159E-01 6.4198896265E-01 6.1250923148E-01 5.8313514925E-01 5.5408243856E-01 5.2555216736E-01 4.9772885683E-01 4.7077887553E-01 4.4484912879E-01 4.2006604890E-01 3.9653488814E-01 3.7433931313E-01 3.5354129589E-01 3.3418129350E-01 3.1627870539E-01 2.9983259421E-01 2.8482265365E-01 2.7121040411E-01 2.5894059487E-01 2.4794278951E-01 2.3813310982E-01 2.2941611185E-01 2.2168676712E-01 2.1483252095E-01 2.0873539991E-01 2.0327414007E-01 1.9832630812E-01 1.9377038820E-01 1.8948780795E-01 1.8536487870E-01 1.8129462610E-01 1.7717848926E-01 1.7292786836E-01 1.6846550305E-01 1.6372666589E-01 1.5866015814E-01 1.5322909726E-01 1.4741148847E-01 1.4120057548E-01 1.3460496799E-01 1.2764854672E-01 1.2037014908E-01 1.1282304143E-01 1.0507418640E-01 9.7203316163E-02 8.9301824685E-02 8.1471494343E-02 7.3823073902E-02 6.6474726682E-02 5.9550369125E-02 5.3177921164E-02 4.7487490712E-02 4.2609515238E-02 3.8672883802E-02 3.5803062983E-02 3.4120249998E-02 3.3737575848E-02 3.4759380630E-02 - 7.7146017728E-01 7.2554619942E-01 6.8917912256E-01 6.6166673165E-01 6.4229603071E-01 6.3033921104E-01 6.2505957489E-01 6.2571736496E-01 6.3157545153E-01 6.4190483140E-01 6.5598989519E-01 6.7313342238E-01 6.9266126687E-01 7.1392669923E-01 7.3631437565E-01 7.5924390761E-01 7.8217301054E-01 8.0460021399E-01 8.2606712050E-01 8.4616020447E-01 8.6451214731E-01 8.8080270922E-01 8.9475914258E-01 9.0615615605E-01 9.1481544275E-01 9.2060478962E-01 9.2343678878E-01 9.2326717515E-01 9.2009281776E-01 9.1394939455E-01 9.0490878354E-01 8.9307620457E-01 8.7858714807E-01 8.6160412819E-01 8.4231329872E-01 8.2092097050E-01 7.9765006929E-01 7.7273657247E-01 7.4642596244E-01 7.1896973340E-01 6.9062198659E-01 6.6163614754E-01 6.3226183651E-01 6.0274192106E-01 5.7330977695E-01 5.4418678076E-01 5.1558005444E-01 4.8768047893E-01 4.6066099045E-01 4.3467516987E-01 4.0985613178E-01 3.8631571681E-01 3.6414398691E-01 3.4340902009E-01 3.2415699803E-01 3.0641257637E-01 2.9017952500E-01 2.7544162260E-01 2.6216378716E-01 2.5029342207E-01 2.3976195509E-01 2.3048654602E-01 2.2237193723E-01 2.1531242021E-01 2.0919389050E-01 2.0389596276E-01 1.9929411773E-01 1.9526185295E-01 1.9167280952E-01 1.8840284813E-01 1.8533204856E-01 1.8234660819E-01 1.7934061696E-01 1.7621768760E-01 1.7289242254E-01 1.6929170088E-01 1.6535577121E-01 1.6103913891E-01 1.5631123878E-01 1.5115688701E-01 1.4557650899E-01 1.3958614233E-01 1.3321721714E-01 1.2651611839E-01 1.1954353777E-01 1.1237362472E-01 1.0509294917E-01 9.7799289943E-02 9.0600265582E-02 8.3611825463E-02 7.6956621008E-02 7.0762277943E-02 6.5159591628E-02 6.0280668285E-02 5.6257035410E-02 5.3217744946E-02 5.1287492699E-02 5.0584777187E-02 5.1220120531E-02 5.3294373133E-02 - 7.2113190694E-01 6.8358855550E-01 6.5494357724E-01 6.3449754894E-01 6.2153456027E-01 6.1532810183E-01 6.1514687740E-01 6.2026049215E-01 6.2994497053E-01 6.4348805954E-01 6.6019427623E-01 6.7938966112E-01 7.0042620255E-01 7.2268590090E-01 7.4558444519E-01 7.6857447902E-01 7.9114843674E-01 8.1284093549E-01 8.3323071279E-01 8.5194210420E-01 8.6864605981E-01 8.8306070282E-01 8.9495143766E-01 9.0413061942E-01 9.1045680009E-01 9.1383357103E-01 9.1420802455E-01 9.1156886059E-01 9.0594416741E-01 8.9739890780E-01 8.8603214449E-01 8.7197404012E-01 8.5538266871E-01 8.3644067656E-01 8.1535183101E-01 7.9233749585E-01 7.6763307190E-01 7.4148444078E-01 7.1414444881E-01 6.8586946678E-01 6.5691605972E-01 6.2753779852E-01 5.9798224349E-01 5.6848812677E-01 5.3928275828E-01 5.1057967661E-01 4.8257656311E-01 4.5545343429E-01 4.2937112406E-01 4.0447006411E-01 3.8086936703E-01 3.5866621349E-01 3.3793554137E-01 3.1873003121E-01 3.0108037954E-01 2.8499584824E-01 2.7046507538E-01 2.5745713039E-01 2.4592279387E-01 2.3579604037E-01 2.2699570036E-01 2.1942727640E-01 2.1298488676E-01 2.0755330935E-01 2.0301009774E-01 1.9922774105E-01 1.9607583926E-01 1.9342326624E-01 1.9114029291E-01 1.8910064445E-01 1.8718346636E-01 1.8527517578E-01 1.8327117637E-01 1.8107741688E-01 1.7861177568E-01 1.7580525622E-01 1.7260298035E-01 1.6896496959E-01 1.6486670676E-01 1.6029947330E-01 1.5527046036E-01 1.4980265443E-01 1.4393450112E-01 1.3771935324E-01 1.3122471186E-01 1.2453127163E-01 1.1773178355E-01 1.1092975092E-01 1.0423797558E-01 9.7776973655E-02 9.1673281128E-02 8.6057670887E-02 8.1063303781E-02 7.6823836821E-02 7.3471512076E-02 7.1135249870E-02 6.9938769733E-02 6.9998762079E-02 7.1423132896E-02 7.4309342745E-02 - 6.8088288587E-01 6.5099678766E-01 6.2937584893E-01 6.1531668152E-01 6.0810351567E-01 6.0701398859E-01 6.1132482798E-01 6.2031738383E-01 6.3328296381E-01 6.4952793015E-01 6.6837851884E-01 6.8918534516E-01 7.1132756317E-01 7.3421665041E-01 7.5729979321E-01 7.8006285216E-01 8.0203289139E-01 8.2278026011E-01 8.4192021885E-01 8.5911410756E-01 8.7407005710E-01 8.8654324975E-01 8.9633573886E-01 9.0329584156E-01 9.0731712225E-01 9.0833698829E-01 9.0633492258E-01 9.0133038055E-01 8.9338038201E-01 8.8257683042E-01 8.6904359419E-01 8.5293338616E-01 8.3442447871E-01 8.1371729247E-01 7.9103089723E-01 7.6659946359E-01 7.4066870337E-01 7.1349233605E-01 6.8532861754E-01 6.5643696571E-01 6.2707471567E-01 5.9749403529E-01 5.6793902931E-01 5.3864305751E-01 5.0982628973E-01 4.8169351713E-01 4.5443223629E-01 4.2821101898E-01 4.0317817739E-01 3.7946073084E-01 3.5716367673E-01 3.3636956512E-01 3.1713837270E-01 2.9950766897E-01 2.8349306423E-01 2.6908892600E-01 2.5626934775E-01 2.4498935145E-01 2.3518630306E-01 2.2678151806E-01 2.1968203255E-01 2.1378251394E-01 2.0896728421E-01 2.0511242793E-01 2.0208795674E-01 1.9976000209E-01 1.9799300787E-01 1.9665189543E-01 1.9560417408E-01 1.9472197142E-01 1.9388395917E-01 1.9297715176E-01 1.9189855697E-01 1.9055665986E-01 1.8887272357E-01 1.8678189302E-01 1.8423409000E-01 1.8119469099E-01 1.7764498153E-01 1.7358238393E-01 1.6902045777E-01 1.6398867540E-01 1.5853197731E-01 1.5271011491E-01 1.4659679059E-01 1.4027860748E-01 1.3385384325E-01 1.2743106449E-01 1.2112759982E-01 1.1506789158E-01 1.0938174701E-01 1.0420251117E-01 9.9665184409E-02 9.5904507708E-02 9.3053039686E-02 9.1239248666E-02 9.0585643183E-02 9.1206963588E-02 9.3208456604E-02 9.6684253618E-02 - 6.4943227292E-01 6.2652331810E-01 6.1126231054E-01 6.0294499999E-01 6.0085866848E-01 6.0428780104E-01 6.1251962427E-01 6.2484946727E-01 6.4058590250E-01 6.5905562629E-01 6.7960804210E-01 7.0161951301E-01 7.2449725327E-01 7.4768283301E-01 7.7065527396E-01 7.9293371844E-01 8.1407965802E-01 8.3369871287E-01 8.5144195696E-01 8.6700678888E-01 8.8013735221E-01 8.9062451359E-01 8.9830541084E-01 9.0306258715E-01 9.0482273107E-01 9.0355504562E-01 8.9926927252E-01 8.9201340084E-01 8.8187109141E-01 8.6895885063E-01 8.5342298911E-01 8.3543640162E-01 8.1519520622E-01 7.9291528052E-01 7.6882873361E-01 7.4318035161E-01 7.1622405442E-01 6.8821940013E-01 6.5942817224E-01 6.3011108318E-01 6.0052462557E-01 5.7091810039E-01 5.4153084879E-01 5.1258971115E-01 4.8430673458E-01 4.5687714632E-01 4.3047760760E-01 4.0526475907E-01 3.8137406537E-01 3.5891896321E-01 3.3799031361E-01 3.1865615579E-01 3.0096175692E-01 2.8492994863E-01 2.7056173834E-01 2.5783718055E-01 2.4671649064E-01 2.3714138145E-01 2.2903660057E-01 2.2231164482E-01 2.1686262638E-01 2.1257426420E-01 2.0932197325E-01 2.0697402349E-01 2.0539374026E-01 2.0444171795E-01 2.0397801888E-01 2.0386433021E-01 2.0396605278E-01 2.0415429659E-01 2.0430775970E-01 2.0431446865E-01 2.0407336072E-01 2.0349569050E-01 2.0250624543E-01 2.0104435775E-01 1.9906470260E-01 1.9653787489E-01 1.9345074030E-01 1.8980655836E-01 1.8562487848E-01 1.8094121247E-01 1.7580648959E-01 1.7028630295E-01 1.6445995819E-01 1.5841933788E-01 1.5226759700E-01 1.4611770680E-01 1.4009086590E-01 1.3431479912E-01 1.2892196550E-01 1.2404769796E-01 1.1982829769E-01 1.1639910683E-01 1.1389258300E-01 1.1243639897E-01 1.1215159075E-01 1.1315077611E-01 1.1553646500E-01 1.1939948216E-01 - 6.2553250727E-01 6.0895356049E-01 5.9942197377E-01 5.9623558985E-01 5.9868750360E-01 6.0607159774E-01 6.1768792090E-01 6.3284786448E-01 6.5087909774E-01 6.7113022296E-01 6.9297511614E-01 7.1581692191E-01 7.3909167517E-01 7.6227152598E-01 7.8486754814E-01 8.0643211640E-01 8.2656084132E-01 8.4489405530E-01 8.6111784755E-01 8.7496465021E-01 8.8621338188E-01 8.9468915910E-01 9.0026258996E-01 9.0284866813E-01 9.0240528868E-01 8.9893141048E-01 8.9246489290E-01 8.8308003704E-01 8.7088486390E-01 8.5601816398E-01 8.3864635413E-01 8.1896017857E-01 7.9717129200E-01 7.7350876262E-01 7.4821553327E-01 7.2154487808E-01 6.9375689145E-01 6.6511504500E-01 6.3588284638E-01 6.0632063221E-01 5.7668252526E-01 5.4721358348E-01 5.1814716577E-01 4.8970253678E-01 4.6208272964E-01 4.3547268267E-01 4.1003766237E-01 3.8592198218E-01 3.6324802258E-01 3.4211555494E-01 3.2260136817E-01 3.0475919381E-01 2.8861992192E-01 2.7419209749E-01 2.6146268357E-01 2.5039807514E-01 2.4094534506E-01 2.3303370115E-01 2.2657613170E-01 2.2147121477E-01 2.1760506552E-01 2.1485339456E-01 2.1308364963E-01 2.1215721249E-01 2.1193162282E-01 2.1226280100E-01 2.1300724236E-01 2.1402415615E-01 2.1517752361E-01 2.1633805098E-01 2.1738499486E-01 2.1820783916E-01 2.1870780497E-01 2.1879917703E-01 2.1841043276E-01 2.1748516240E-01 2.1598277136E-01 2.1387895884E-01 2.1116596915E-01 2.0785261517E-01 2.0396407602E-01 1.9954147358E-01 1.9464123529E-01 1.8933425293E-01 1.8370484934E-01 1.7784956763E-01 1.7187579872E-01 1.6590026547E-01 1.6004738285E-01 1.5444751489E-01 1.4923515044E-01 1.4454702028E-01 1.4052017892E-01 1.3729007438E-01 1.3498862955E-01 1.3374235823E-01 1.3367053842E-01 1.3488346478E-01 1.3748080090E-01 1.4155005098E-01 - 6.0798937750E-01 5.9712583449E-01 5.9272625719E-01 5.9409338207E-01 6.0052872226E-01 6.1133795193E-01 6.2583610947E-01 6.4335257804E-01 6.6323580459E-01 6.8485772178E-01 7.0761784021E-01 7.3094698233E-01 7.5431063289E-01 7.7721188489E-01 7.9919396429E-01 8.1984232075E-01 8.3878627600E-01 8.5570022591E-01 8.7030439647E-01 8.8236515809E-01 8.9169490687E-01 8.9815152530E-01 9.0163743871E-01 9.0209828732E-01 8.9952123703E-01 8.9393295512E-01 8.8539727972E-01 8.7401261433E-01 8.5990908062E-01 8.4324546455E-01 8.2420599186E-01 8.0299697025E-01 7.7984333580E-01 7.5498514138E-01 7.2867402453E-01 7.0116969177E-01 6.7273645510E-01 6.4363985530E-01 6.1414340470E-01 5.8450548053E-01 5.5497639713E-01 5.2579568335E-01 4.9718958819E-01 4.6936883531E-01 4.4252664338E-01 4.1683702662E-01 3.9245338589E-01 3.6950739805E-01 3.4810820720E-01 3.2834191862E-01 3.1027139256E-01 2.9393633200E-01 2.7935365519E-01 2.6651814110E-01 2.5540333283E-01 2.4596268175E-01 2.3813091258E-01 2.3182558765E-01 2.2694884684E-01 2.2338929800E-01 2.2102403156E-01 2.1972073224E-01 2.1933985985E-01 2.1973687129E-01 2.2076445561E-01 2.2227475449E-01 2.2412154115E-01 2.2616233157E-01 2.2826040324E-01 2.3028669807E-01 2.3212158780E-01 2.3365648234E-01 2.3479526347E-01 2.3545552860E-01 2.3556963204E-01 2.3508551333E-01 2.3396730534E-01 2.3219571704E-01 2.2976818904E-01 2.2669882233E-01 2.2301808348E-01 2.1877229227E-01 2.1402289997E-01 2.0884556912E-01 2.0332906769E-01 1.9757399272E-01 1.9169134038E-01 1.8580094087E-01 1.8002977828E-01 1.7451021654E-01 1.6937815354E-01 1.6477112618E-01 1.6082638958E-01 1.5767899373E-01 1.5545988076E-01 1.5429402562E-01 1.5429864233E-01 1.5558147701E-01 1.5823920789E-01 1.6235597091E-01 - 5.9567938967E-01 5.8994860542E-01 5.9011610358E-01 5.9549215536E-01 6.0538913717E-01 6.1912674843E-01 6.3603702673E-01 6.5546912060E-01 6.7679378349E-01 6.9940755523E-01 7.2273660110E-01 7.4624018199E-01 7.6941373318E-01 7.9179153320E-01 8.1294894839E-01 8.3250424308E-01 8.5011994938E-01 8.6550379511E-01 8.7840919223E-01 8.8863529257E-01 8.9602662144E-01 9.0047230365E-01 9.0190489987E-01 9.0029887496E-01 8.9566872271E-01 8.8806677443E-01 8.7758072127E-01 8.6433088234E-01 8.4846725251E-01 8.3016636515E-01 8.0962800638E-01 7.8707181761E-01 7.6273382411E-01 7.3686292661E-01 7.0971739291E-01 6.8156138558E-01 6.5266156049E-01 6.2328376959E-01 5.9368989943E-01 5.6413487489E-01 5.3486385507E-01 5.0610964587E-01 4.7809035072E-01 4.5100727816E-01 4.2504312172E-01 4.0036042424E-01 3.7710033564E-01 3.5538166962E-01 3.3530026143E-01 3.1692862583E-01 3.0031591055E-01 2.8548813805E-01 2.7244872492E-01 2.6117926563E-01 2.5164056462E-01 2.4377389831E-01 2.3750248651E-01 2.3273315059E-01 2.2935813424E-01 2.2725706140E-01 2.2629900464E-01 2.2634463673E-01 2.2724843757E-01 2.2886092874E-01 2.3103090773E-01 2.3360765494E-01 2.3644308682E-01 2.3939382993E-01 2.4232319192E-01 2.4510300699E-01 2.4761533535E-01 2.4975399791E-01 2.5142593011E-01 2.5255234068E-01 2.5306966388E-01 2.5293029634E-01 2.5210311206E-01 2.5057375215E-01 2.4834468820E-01 2.4543506114E-01 2.4188030000E-01 2.3773152729E-01 2.3305476051E-01 2.2792992132E-01 2.2244966617E-01 2.1671805403E-01 2.1084906881E-01 2.0496501536E-01 1.9919480944E-01 1.9367218306E-01 1.8853382732E-01 1.8391749553E-01 1.7996008965E-01 1.7679575311E-01 1.7455399275E-01 1.7335785232E-01 1.7332215905E-01 1.7455186383E-01 1.7714049447E-01 1.8116874001E-01 - 5.8756412006E-01 5.8641473335E-01 5.9061613006E-01 5.9948859280E-01 6.1235764203E-01 6.2855907335E-01 6.4744377230E-01 6.6838226930E-01 6.9076900033E-01 7.1402624202E-01 7.3760769352E-01 7.6100168123E-01 7.8373396621E-01 8.0537013835E-01 8.2551758532E-01 8.4382702861E-01 8.5999362318E-01 8.7375762124E-01 8.8490460508E-01 8.9326529751E-01 8.9871496265E-01 9.0117241319E-01 9.0059864379E-01 8.9699511374E-01 8.9040170426E-01 8.8089437937E-01 8.6858258063E-01 8.5360638868E-01 8.3613348585E-01 8.1635595519E-01 7.9448695259E-01 7.7075728852E-01 7.4541195661E-01 7.1870664566E-01 6.9090427108E-01 6.6227156096E-01 6.3307573031E-01 6.0358127577E-01 5.7404692070E-01 5.4472273879E-01 5.1584748131E-01 4.8764613114E-01 4.6032770299E-01 4.3408330711E-01 4.0908448969E-01 3.8548186074E-01 3.6340401641E-01 3.4295675956E-01 3.2422261911E-01 3.0726066555E-01 2.9210661657E-01 2.7877322394E-01 2.6725092993E-01 2.5750877854E-01 2.4949556476E-01 2.4314120222E-01 2.3835828815E-01 2.3504384236E-01 2.3308119560E-01 2.3234200155E-01 2.3268834571E-01 2.3397492374E-01 2.3605126189E-01 2.3876395175E-01 2.4195887221E-01 2.4548337197E-01 2.4918838696E-01 2.5293046813E-01 2.5657369653E-01 2.5999146443E-01 2.6306810279E-01 2.6570033778E-01 2.6779856122E-01 2.6928790208E-01 2.7010908881E-01 2.7021909476E-01 2.6959156171E-01 2.6821699900E-01 2.6610275857E-01 2.6327278872E-01 2.5976717203E-01 2.5564145532E-01 2.5096578174E-01 2.4582383757E-01 2.4031162802E-01 2.3453609836E-01 2.2861361833E-01 2.2266834917E-01 2.1683051369E-01 2.1123459112E-01 2.0601745858E-01 2.0131650204E-01 1.9726771942E-01 1.9400383848E-01 1.9165247202E-01 1.9033433185E-01 1.9016152281E-01 1.9123593639E-01 1.9364776267E-01 1.9747413772E-01 - 5.8270136145E-01 5.8561253907E-01 5.9334561678E-01 6.0523319736E-01 6.2061605903E-01 6.3884799923E-01 6.5930043811E-01 6.8136674657E-01 7.0446626648E-01 7.2804799441E-01 7.5159390333E-01 7.7462188095E-01 7.9668826697E-01 8.1738997561E-01 8.3636619413E-01 8.5329965169E-01 8.6791745758E-01 8.7999151141E-01 8.8933849233E-01 8.9581943773E-01 8.9933892590E-01 8.9984388056E-01 8.9732201826E-01 8.9179996294E-01 8.8334105442E-01 8.7204288019E-01 8.5803456182E-01 8.4147382918E-01 8.2254391694E-01 8.0145031893E-01 7.7841743651E-01 7.5368515752E-01 7.2750540208E-01 7.0013867120E-01 6.7185063345E-01 6.4290878341E-01 6.1357920467E-01 5.8412346786E-01 5.5479569252E-01 5.2583979904E-01 4.9748697453E-01 4.6995337356E-01 4.4343807195E-01 4.1812128860E-01 3.9416288731E-01 3.7170116721E-01 3.5085194718E-01 3.3170794647E-01 3.1433846033E-01 2.9878932649E-01 2.8508317509E-01 2.7321995193E-01 2.6317770191E-01 2.5491359709E-01 2.4836519155E-01 2.4345188267E-01 2.4007655715E-01 2.3812739788E-01 2.3747982696E-01 2.3799855872E-01 2.3953973611E-01 2.4195312327E-01 2.4508432703E-01 2.4877702020E-01 2.5287513994E-01 2.5722503547E-01 2.6167754007E-01 2.6608994394E-01 2.7032784568E-01 2.7426686237E-01 2.7779417956E-01 2.8080992524E-01 2.8322835366E-01 2.8497882756E-01 2.8600658973E-01 2.8627331746E-01 2.8575745598E-01 2.8445432966E-01 2.8237603239E-01 2.7955110091E-01 2.7602397757E-01 2.7185427121E-01 2.6711582719E-01 2.6189561965E-01 2.5629248097E-01 2.5041568524E-01 2.4438340389E-01 2.3832105328E-01 2.3235955454E-01 2.2663352748E-01 2.2127944032E-01 2.1643373774E-01 2.1223096962E-01 2.0880194267E-01 2.0627191670E-01 2.0475886678E-01 2.0437183122E-01 2.0520936470E-01 2.0735811399E-01 2.1089153271E-01 - 5.8025298837E-01 5.8673361028E-01 5.9752625603E-01 6.1197798684E-01 6.2944678321E-01 6.4930618351E-01 6.7094966630E-01 6.9379474344E-01 7.1728673397E-01 7.4090219231E-01 7.6415196786E-01 7.8658387682E-01 8.0778497120E-01 8.2738339366E-01 8.4504981110E-01 8.6049842395E-01 8.7348755208E-01 8.8381980225E-01 8.9134182584E-01 8.9594367944E-01 8.9755780417E-01 8.9615764324E-01 8.9175592007E-01 8.8440260224E-01 8.7418257901E-01 8.6121308257E-01 8.4564088455E-01 8.2763930160E-01 8.0740504424E-01 7.8515494467E-01 7.6112259922E-01 7.3555496144E-01 7.0870892150E-01 6.8084790692E-01 6.5223853868E-01 6.2314737546E-01 5.9383777725E-01 5.6456691747E-01 5.3558297083E-01 5.0712250144E-01 4.7940807349E-01 4.5264610354E-01 4.2702497095E-01 4.0271339966E-01 3.7985912134E-01 3.5858782709E-01 3.3900241113E-01 3.2118250719E-01 3.0518431491E-01 2.9104071049E-01 2.7876163310E-01 2.6833473539E-01 2.5972628423E-01 2.5288229491E-01 2.4772988026E-01 2.4417879376E-01 2.4212314427E-01 2.4144325843E-01 2.4200766553E-01 2.4367517902E-01 2.4629704793E-01 2.4971915139E-01 2.5378420944E-01 2.5833398344E-01 2.6321144034E-01 2.6826285547E-01 2.7333983006E-01 2.7830120089E-01 2.8301482094E-01 2.8735919211E-01 2.9122493269E-01 2.9451606456E-01 2.9715110757E-01 2.9906397072E-01 3.0020463225E-01 3.0053960363E-01 3.0005217447E-01 2.9874243853E-01 2.9662710291E-01 2.9373908567E-01 2.9012690883E-01 2.8585389654E-01 2.8099718992E-01 2.7564659244E-01 2.6990326122E-01 2.6387826126E-01 2.5769100135E-01 2.5146757112E-01 2.4533899995E-01 2.3943945904E-01 2.3390442852E-01 2.2886885134E-01 2.2446529626E-01 2.2082215123E-01 2.1806186846E-01 2.1629928158E-01 2.1564001415E-01 2.1617899769E-01 2.1799911620E-01 2.2116999213E-01 - 5.7948957459E-01 5.8907737922E-01 6.0248669082E-01 6.1908099517E-01 6.3823724932E-01 6.5935030444E-01 6.8183705836E-01 7.0514030694E-01 7.2873226660E-01 7.5211774409E-01 7.7483693274E-01 7.9646781872E-01 8.1662818441E-01 8.3497719996E-01 8.5121659839E-01 8.6509143312E-01 8.7639042115E-01 8.8494587869E-01 8.9063325991E-01 8.9337031289E-01 8.9311587038E-01 8.8986829601E-01 8.8366360949E-01 8.7457331708E-01 8.6270197565E-01 8.4818452113E-01 8.3118339316E-01 8.1188548985E-01 7.9049898676E-01 7.6725005547E-01 7.4237951696E-01 7.1613946509E-01 6.8878989496E-01 6.6059537018E-01 6.3182176197E-01 6.0273309144E-01 5.7358850493E-01 5.4463940992E-01 5.1612679728E-01 4.8827877254E-01 4.6130831681E-01 4.3541129470E-01 4.1076472386E-01 3.8752531765E-01 3.6582830939E-01 3.4578656327E-01 3.2748997416E-01 3.1100515525E-01 2.9637540936E-01 2.8362097690E-01 2.7273955064E-01 2.6370704470E-01 2.5647860266E-01 2.5098982744E-01 2.4715821357E-01 2.4488476052E-01 2.4405574427E-01 2.4454462297E-01 2.4621405164E-01 2.4891797981E-01 2.5250380609E-01 2.5681456287E-01 2.6169110515E-01 2.6697427744E-01 2.7250703355E-01 2.7813648524E-01 2.8371585658E-01 2.8910632258E-01 2.9417871232E-01 2.9881505848E-01 3.0290997743E-01 3.0637186614E-01 3.0912390438E-01 3.1110485333E-01 3.1226964385E-01 3.1258975055E-01 3.1205334994E-01 3.1066526373E-01 3.0844669069E-01 3.0543473285E-01 3.0168172420E-01 2.9725437210E-01 2.9223272378E-01 2.8670897205E-01 2.8078611620E-01 2.7457649528E-01 2.6820021255E-01 2.6178347077E-01 2.5545683874E-01 2.4935347033E-01 2.4360729735E-01 2.3835121781E-01 2.3371530096E-01 2.2982503012E-01 2.2679960368E-01 2.2475031377E-01 2.2377902116E-01 2.2397674359E-01 2.2542237330E-01 2.2818153812E-01 + 4.7838210091E+02 4.7534355673E+02 4.7203551011E+02 4.6846400624E+02 4.6463554505E+02 4.6055706421E+02 4.5623591822E+02 4.5167985922E+02 4.4689701732E+02 4.4189586882E+02 4.3668541478E+02 4.3127423803E+02 4.2567226599E+02 4.1988899245E+02 4.1393430115E+02 4.0781829052E+02 4.0155123535E+02 3.9514356200E+02 3.8860582247E+02 3.8194866649E+02 3.7518281471E+02 3.6831903163E+02 3.6136809898E+02 3.5434078915E+02 3.4724783899E+02 3.4009992414E+02 3.3290763371E+02 3.2568144573E+02 3.1843170310E+02 3.1116859035E+02 3.0390211121E+02 2.9664206698E+02 2.8939803586E+02 2.8217935329E+02 2.7499509322E+02 2.6785405057E+02 2.6076472476E+02 2.5373530434E+02 2.4677365296E+02 2.3988729639E+02 2.3308341090E+02 2.2636881288E+02 2.1974994970E+02 2.1323289190E+02 2.0682332667E+02 2.0052655255E+02 1.9434747554E+02 1.8829060638E+02 1.8236005912E+02 1.7655955096E+02 1.7089240329E+02 1.6536154389E+02 1.5996951034E+02 1.5471845454E+02 1.4961014830E+02 1.4464598996E+02 1.3982701206E+02 1.3515388989E+02 1.3062695103E+02 1.2624618560E+02 1.2201125747E+02 1.1792151602E+02 1.1397600870E+02 1.1017349419E+02 1.0651245600E+02 1.0299111672E+02 9.9607452565E+01 9.6359208311E+01 9.3243912575E+01 9.0258893277E+01 8.7401293291E+01 8.4668086205E+01 8.2056092126E+01 7.9561993476E+01 7.7182350719E+01 7.4913617956E+01 7.2752158349E+01 7.0694259300E+01 6.8736147357E+01 6.6874002781E+01 6.5103973743E+01 6.3422190094E+01 6.1824776686E+01 6.0307866185E+01 5.8867611370E+01 5.7500196857E+01 5.6201850248E+01 5.4968852657E+01 5.3797548617E+01 5.2684355324E+01 5.1625771221E+01 5.0618383912E+01 4.9658877379E+01 4.8744038525E+01 4.7870763013E+01 4.7036060425E+01 4.6237058730E+01 4.5471008077E+01 4.4735283919E+01 4.4027389476E+01 + 4.7779277484E+02 4.7475739209E+02 4.7145279245E+02 4.6788501525E+02 4.6406055432E+02 4.5998634002E+02 4.5566972002E+02 4.5111843901E+02 4.4634061743E+02 4.4134472926E+02 4.3613957893E+02 4.3073427745E+02 4.2513821789E+02 4.1936105015E+02 4.1341265532E+02 4.0730311952E+02 4.0104270740E+02 3.9464183539E+02 3.8811104478E+02 3.8146097465E+02 3.7470233495E+02 3.6784587946E+02 3.6090237913E+02 3.5388259556E+02 3.4679725483E+02 3.3965702184E+02 3.3247247509E+02 3.2525408202E+02 3.1801217510E+02 3.1075692859E+02 3.0349833605E+02 2.9624618884E+02 2.8901005542E+02 2.8179926167E+02 2.7462287228E+02 2.6748967313E+02 2.6040815485E+02 2.5338649756E+02 2.4643255671E+02 2.3955385022E+02 2.3275754683E+02 2.2605045574E+02 2.1943901747E+02 2.1292929608E+02 2.0652697260E+02 2.0023733982E+02 1.9406529836E+02 1.8801535393E+02 1.8209161593E+02 1.7629779732E+02 1.7063721559E+02 1.6511279503E+02 1.5972707008E+02 1.5448218989E+02 1.4937992387E+02 1.4442166834E+02 1.3960845417E+02 1.3494095534E+02 1.3041949843E+02 1.2604407295E+02 1.2181434241E+02 1.1772965620E+02 1.1378906208E+02 1.0999131929E+02 1.0633491223E+02 1.0281806461E+02 9.9438754022E+01 9.6194726887E+01 9.3083513670E+01 9.0102444357E+01 8.7248664087E+01 8.4519148898E+01 8.1910721516E+01 7.9420067137E+01 7.7043749138E+01 7.4778224664E+01 7.2619860025E+01 7.0564945873E+01 6.8609712089E+01 6.6750342333E+01 6.4982988231E+01 6.3303783133E+01 6.1708855414E+01 6.0194341285E+01 5.8756397070E+01 5.7391210921E+01 5.6095013960E+01 5.4864090790E+01 5.3694789391E+01 5.2583530356E+01 5.1526815470E+01 5.0521235605E+01 4.9563477941E+01 4.8650332492E+01 4.7778697946E+01 4.6945586812E+01 4.6148129886E+01 4.5383580037E+01 4.4649315330E+01 4.3942841484E+01 + 4.7602744734E+02 4.7300137817E+02 4.6970695084E+02 4.6615018703E+02 4.6233756163E+02 4.5827598470E+02 4.5397278231E+02 4.4943567639E+02 4.4467276348E+02 4.3969249253E+02 4.3450364195E+02 4.2911529581E+02 4.2353681932E+02 4.1777783375E+02 4.1184819084E+02 4.0575794668E+02 3.9951733533E+02 3.9313674213E+02 3.8662667688E+02 3.7999774682E+02 3.7326062978E+02 3.6642604727E+02 3.5950473786E+02 3.5250743072E+02 3.4544481958E+02 3.3832753711E+02 3.3116612975E+02 3.2397103321E+02 3.1675254852E+02 3.0952081893E+02 3.0228580748E+02 2.9505727553E+02 2.8784476215E+02 2.8065756451E+02 2.7350471928E+02 2.6639498511E+02 2.5933682621E+02 2.5233839714E+02 2.4540752870E+02 2.3855171513E+02 2.3177810246E+02 2.2509347818E+02 2.1850426217E+02 2.1201649890E+02 2.0563585092E+02 1.9936759365E+02 1.9321661144E+02 1.8718739489E+02 1.8128403943E+02 1.7551024518E+02 1.6986931794E+02 1.6436417145E+02 1.5899733076E+02 1.5377093672E+02 1.4868675157E+02 1.4374616556E+02 1.3895020454E+02 1.3429953856E+02 1.2979449127E+02 1.2543505027E+02 1.2122087814E+02 1.1715132426E+02 1.1322543730E+02 1.0944197829E+02 1.0579943425E+02 1.0229603231E+02 9.8929754248E+01 9.5698351365E+01 9.2599359703E+01 8.9630115449E+01 8.6787770534E+01 8.4069308330E+01 8.1471559401E+01 7.8991217236E+01 7.6624853918E+01 7.4368935663E+01 7.2219838181E+01 7.0173861802E+01 6.8227246321E+01 6.6376185514E+01 6.4616841275E+01 6.2945357338E+01 6.1357872542E+01 5.9850533597E+01 5.8419507332E+01 5.7060992376E+01 5.5771230257E+01 5.4546515893E+01 5.3383207453E+01 5.2277735567E+01 5.1226611872E+01 5.0226436895E+01 4.9273907240E+01 4.8365822100E+01 4.7499089075E+01 4.6670729303E+01 4.5877881914E+01 4.5117807799E+01 4.4387892722E+01 4.3685649774E+01 + 4.7309644579E+02 4.7008556338E+02 4.6680775364E+02 4.6326900947E+02 4.5947577462E+02 4.5543492583E+02 4.5115375373E+02 4.4663994278E+02 4.4190155011E+02 4.3694698347E+02 4.3178497835E+02 4.2642457430E+02 4.2087509054E+02 4.1514610101E+02 4.0924740885E+02 4.0318902049E+02 3.9698111932E+02 3.9063403919E+02 3.8415823764E+02 3.7756426913E+02 3.7086275820E+02 3.6406437278E+02 3.5717979763E+02 3.5021970806E+02 3.4319474403E+02 3.3611548458E+02 3.2899242286E+02 3.2183594171E+02 3.1465628984E+02 3.0746355885E+02 3.0026766091E+02 2.9307830738E+02 2.8590498832E+02 2.7875695299E+02 2.7164319130E+02 2.6457241641E+02 2.5755304843E+02 2.5059319920E+02 2.4370065834E+02 2.3688288043E+02 2.3014697352E+02 2.2349968876E+02 2.1694741145E+02 2.1049615324E+02 2.0415154570E+02 1.9791883507E+02 1.9180287843E+02 1.8580814094E+02 1.7993869457E+02 1.7419821779E+02 1.6858999674E+02 1.6311692736E+02 1.5778151878E+02 1.5258589782E+02 1.4753181455E+02 1.4262064885E+02 1.3785341804E+02 1.3323078534E+02 1.2875306935E+02 1.2442025423E+02 1.2023200080E+02 1.1618765824E+02 1.1228627652E+02 1.0852661944E+02 1.0490717819E+02 1.0142618541E+02 9.8081629640E+01 9.4871270155E+01 9.1792652097E+01 8.8843121812E+01 8.6019842376E+01 8.3319809217E+01 8.0739865798E+01 7.8276719271E+01 7.5926956071E+01 7.3687057390E+01 7.1553414454E+01 6.9522343584E+01 6.7590100972E+01 6.5752897120E+01 6.4006910912E+01 6.2348303274E+01 6.0773230367E+01 5.9277856297E+01 5.7858365298E+01 5.6510973361E+01 5.5231939273E+01 5.4017575058E+01 5.2864255787E+01 5.1768428742E+01 5.0726621921E+01 4.9735451877E+01 4.8791630868E+01 4.7891973338E+01 4.7033401698E+01 4.6212951437E+01 4.5427775543E+01 4.4675148256E+01 4.3952468162E+01 4.3257260625E+01 + 4.6901846916E+02 4.6602833700E+02 4.6277327635E+02 4.5925924055E+02 4.5549263062E+02 4.5148027742E+02 4.4722942276E+02 4.4274769941E+02 4.3804311011E+02 4.3312400565E+02 4.2799906221E+02 4.2267725770E+02 4.1716784765E+02 4.1148034039E+02 4.0562447173E+02 3.9961017914E+02 3.9344757571E+02 3.8714692373E+02 3.8071860819E+02 3.7417311011E+02 3.6752097993E+02 3.6077281102E+02 3.5393921324E+02 3.4703078690E+02 3.4005809700E+02 3.3303164785E+02 3.2596185829E+02 3.1885903739E+02 3.1173336088E+02 3.0459484821E+02 2.9745334051E+02 2.9031847929E+02 2.8319968610E+02 2.7610614317E+02 2.6904677503E+02 2.6203023119E+02 2.5506486996E+02 2.4815874336E+02 2.4131958328E+02 2.3455478873E+02 2.2787141442E+02 2.2127616055E+02 2.1477536383E+02 2.0837498979E+02 2.0208062642E+02 1.9589747892E+02 1.8983036592E+02 1.8388371680E+02 1.7806157034E+02 1.7236757452E+02 1.6680498761E+02 1.6137668034E+02 1.5608513929E+02 1.5093247131E+02 1.4592040912E+02 1.4105031778E+02 1.3632320229E+02 1.3173971605E+02 1.2730017020E+02 1.2300454381E+02 1.1885249487E+02 1.1484337194E+02 1.1097622651E+02 1.0724982592E+02 1.0366266689E+02 1.0021298942E+02 9.6898791243E+01 9.3717842473E+01 9.0667700692E+01 8.7745726176E+01 8.4949097314E+01 8.2274826140E+01 7.9719773899E+01 7.7280666609E+01 7.4954110551E+01 7.2736607634E+01 7.0624570576E+01 6.8614337866E+01 6.6702188432E+01 6.4884355990E+01 6.3157043025E+01 6.1516434343E+01 5.9958710190E+01 5.8480058867E+01 5.7076688829E+01 5.5744840231E+01 5.4480795899E+01 5.3280891690E+01 5.2141526232E+01 5.1059170029E+01 5.0030373899E+01 4.9051776759E+01 4.8120112721E+01 4.7232217525E+01 4.6385034279E+01 4.5575618528E+01 4.4801142639E+01 4.4058899529E+01 4.3346305724E+01 4.2660903779E+01 + 4.6382038798E+02 4.6085623355E+02 4.5762970989E+02 4.5414672063E+02 4.5041361294E+02 4.4643715983E+02 4.4222454145E+02 4.3778332522E+02 4.3312144507E+02 4.2824717965E+02 4.2316912989E+02 4.1789619555E+02 4.1243755134E+02 4.0680262222E+02 4.0100105839E+02 3.9504270967E+02 3.8893759965E+02 3.8269589957E+02 3.7632790196E+02 3.6984399427E+02 3.6325463250E+02 3.5657031487E+02 3.4980155571E+02 3.4295885955E+02 3.3605269568E+02 3.2909347294E+02 3.2209151516E+02 3.1505703713E+02 3.0800012117E+02 3.0093069447E+02 2.9385850717E+02 2.8679311133E+02 2.7974384072E+02 2.7271979169E+02 2.6572980491E+02 2.5878244822E+02 2.5188600066E+02 2.4504843743E+02 2.3827741625E+02 2.3158026470E+02 2.2496396896E+02 2.1843516363E+02 2.1200012287E+02 2.0566475286E+02 1.9943458534E+02 1.9331477264E+02 1.8731008375E+02 1.8142490181E+02 1.7566322268E+02 1.7002865486E+02 1.6452442051E+02 1.5915335764E+02 1.5391792348E+02 1.4882019890E+02 1.4386189391E+02 1.3904435415E+02 1.3436856843E+02 1.2983517706E+02 1.2544448124E+02 1.2119645306E+02 1.1709074646E+02 1.1312670879E+02 1.0930339304E+02 1.0561957072E+02 1.0207374518E+02 9.8664165538E+01 9.5388840854E+01 9.2245554800E+01 8.9231880537E+01 8.6345195842E+01 8.3582698402E+01 8.0941421206E+01 7.8418247990E+01 7.6009928660E+01 7.3713094651E+01 7.1524274164E+01 6.9439907218E+01 6.7456360476E+01 6.5569941795E+01 6.3776914445E+01 6.2073510966E+01 6.0455946610E+01 5.8920432333E+01 5.7463187305E+01 5.6080450902E+01 5.4768494144E+01 5.3523630568E+01 5.2342226495E+01 5.1220710683E+01 5.0155583342E+01 4.9143424498E+01 4.8180901702E+01 4.7264777063E+01 4.6391913609E+01 4.5559280983E+01 4.4763960450E+01 4.4003149244E+01 4.3274164253E+01 4.2574445048E+01 4.1901556269E+01 + 4.5753695516E+02 4.5460364761E+02 4.5141107964E+02 4.4796509559E+02 4.4427197827E+02 4.4033843147E+02 4.3617156145E+02 4.3177885724E+02 4.2716817011E+02 4.2234769207E+02 4.1732593349E+02 4.1211170009E+02 4.0671406917E+02 4.0114236525E+02 3.9540613527E+02 3.8951512327E+02 3.8347924480E+02 3.7730856106E+02 3.7101325287E+02 3.6460359455E+02 3.5808992781E+02 3.5148263575E+02 3.4479211701E+02 3.3802876013E+02 3.3120291841E+02 3.2432488494E+02 3.1740486837E+02 3.1045296906E+02 3.0347915599E+02 2.9649324431E+02 2.8950487366E+02 2.8252348739E+02 2.7555831259E+02 2.6861834115E+02 2.6171231172E+02 2.5484869277E+02 2.4803566676E+02 2.4128111536E+02 2.3459260588E+02 2.2797737884E+02 2.2144233676E+02 2.1499403420E+02 2.0863866897E+02 2.0238207465E+02 1.9622971429E+02 1.9018667546E+02 1.8425766641E+02 1.7844701356E+02 1.7275866019E+02 1.6719616628E+02 1.6176270960E+02 1.5646108789E+02 1.5129372218E+02 1.4626266122E+02 1.4136958691E+02 1.3661582077E+02 1.3200233135E+02 1.2752974261E+02 1.2319834307E+02 1.1900809585E+02 1.1495864945E+02 1.1104934925E+02 1.0727924958E+02 1.0364712651E+02 1.0015149103E+02 9.6790602826E+01 9.3562484334E+01 9.0464935254E+01 8.7495547275E+01 8.4651719060E+01 8.1930671372E+01 7.9329462316E+01 7.6845002622E+01 7.4474070911E+01 7.2213328895E+01 7.0059336450E+01 6.8008566513E+01 6.6057419754E+01 6.4202238968E+01 6.2439323143E+01 6.0764941171E+01 5.9175345142E+01 5.7666783197E+01 5.6235511900E+01 5.4877808100E+01 5.3589980244E+01 5.2368379125E+01 5.1209408037E+01 5.0109532318E+01 4.9065288263E+01 4.8073291390E+01 4.7130244060E+01 4.6232942427E+01 4.5378282725E+01 4.4563266887E+01 4.3785007500E+01 4.3040732088E+01 4.2327786752E+01 4.1643639155E+01 4.0985880876E+01 + 4.5021043115E+02 4.4731246322E+02 4.4415887915E+02 4.4075545498E+02 4.3710839930E+02 4.3322433596E+02 4.2911028574E+02 4.2477364699E+02 4.2022217500E+02 4.1546396140E+02 4.1050741144E+02 4.0536122153E+02 4.0003435574E+02 3.9453602172E+02 3.8887564621E+02 3.8306285002E+02 3.7710742282E+02 3.7101929750E+02 3.6480852457E+02 3.5848524630E+02 3.5205967097E+02 3.4554204721E+02 3.3894263844E+02 3.3227169763E+02 3.2553944237E+02 3.1875603039E+02 3.1193153547E+02 3.0507592401E+02 2.9819903222E+02 2.9131054394E+02 2.8441996930E+02 2.7753662415E+02 2.7066961044E+02 2.6382779744E+02 2.5701980402E+02 2.5025398193E+02 2.4353840018E+02 2.3688083044E+02 2.3028873372E+02 2.2376924806E+02 2.1732917756E+02 2.1097498246E+02 2.0471277060E+02 1.9854828996E+02 1.9248692257E+02 1.8653367952E+02 1.8069319729E+02 1.7496973528E+02 1.6936717448E+02 1.6388901744E+02 1.5853838927E+02 1.5331803988E+02 1.4823034727E+02 1.4327732188E+02 1.3846061207E+02 1.3378151043E+02 1.2924096121E+02 1.2483956851E+02 1.2057760544E+02 1.1645502400E+02 1.1247146575E+02 1.0862627315E+02 1.0491850161E+02 1.0134693197E+02 9.7910083665E+01 9.4606228266E+01 9.1433403416E+01 8.8389427135E+01 8.5471912400E+01 8.2678281933E+01 8.0005783155E+01 7.7451503241E+01 7.5012384217E+01 7.2685238040E+01 7.0466761609E+01 6.8353551657E+01 6.6342119457E+01 6.4428905313E+01 6.2610292770E+01 6.0882622506E+01 5.9242205866E+01 5.7685337987E+01 5.6208310486E+01 5.4807423673E+01 5.3478998253E+01 5.2219386493E+01 5.1024982831E+01 4.9892233891E+01 4.8817647897E+01 4.7797803466E+01 4.6829357763E+01 4.5909054010E+01 4.5033728340E+01 4.4200315991E+01 4.3405856850E+01 4.2647500323E+01 4.1922509560E+01 4.1228265034E+01 4.0562267474E+01 3.9922140179E+01 + 4.4189012876E+02 4.3903160308E+02 4.3592162372E+02 4.3256589012E+02 4.2897052744E+02 4.2514206954E+02 4.2108744087E+02 4.1681393732E+02 4.1232920618E+02 4.0764122517E+02 4.0275828073E+02 3.9768894551E+02 3.9244205527E+02 3.8702668515E+02 3.8145212551E+02 3.7572785731E+02 3.6986352719E+02 3.6386892228E+02 3.5775394492E+02 3.5152858719E+02 3.4520290555E+02 3.3878699552E+02 3.3229096654E+02 3.2572491711E+02 3.1909891019E+02 3.1242294908E+02 3.0570695377E+02 2.9896073781E+02 2.9219398581E+02 2.8541623170E+02 2.7863683763E+02 2.7186497376E+02 2.6510959895E+02 2.5837944226E+02 2.5168298551E+02 2.4502844686E+02 2.3842376539E+02 2.3187658680E+02 2.2539425025E+02 2.1898377633E+02 2.1265185618E+02 2.0640484187E+02 2.0024873789E+02 1.9418919393E+02 1.8823149883E+02 1.8238057575E+02 1.7664097857E+02 1.7101688945E+02 1.6551211763E+02 1.6013009934E+02 1.5487389889E+02 1.4974621087E+02 1.4474936342E+02 1.3988532258E+02 1.3515569767E+02 1.3056174757E+02 1.2610438807E+02 1.2178419996E+02 1.1760143806E+02 1.1355604103E+02 1.0964764186E+02 1.0587557910E+02 1.0223890871E+02 9.8736416479E+01 9.5366630892E+01 9.2127836566E+01 8.9018087988E+01 8.6035223620E+01 8.3176880283E+01 8.0440507738E+01 7.7823383441E+01 7.5322627380E+01 7.2935216965E+01 7.0658001894E+01 6.8487718953E+01 6.6421006689E+01 6.4454419910E+01 6.2584443964E+01 6.0807508742E+01 5.9120002370E+01 5.7518284534E+01 5.5998699422E+01 5.4557588211E+01 5.3191301104E+01 5.1896208851E+01 5.0668713748E+01 4.9505260075E+01 4.8402343964E+01 4.7356522662E+01 4.6364423182E+01 4.5422750327E+01 4.4528294078E+01 4.3677936337E+01 4.2868657012E+01 4.2097539468E+01 4.1361775308E+01 4.0658668530E+01 3.9985639025E+01 3.9340225463E+01 3.8720087550E+01 + 4.3263188407E+02 4.2981650368E+02 4.2675433003E+02 4.2345097831E+02 4.1991248177E+02 4.1614527491E+02 4.1215617577E+02 4.0795236692E+02 4.0354137582E+02 3.9893105420E+02 3.9412955657E+02 3.8914531819E+02 3.8398703225E+02 3.7866362660E+02 3.7318423988E+02 3.6755819738E+02 3.6179498649E+02 3.5590423193E+02 3.4989567087E+02 3.4377912791E+02 3.3756449011E+02 3.3126168212E+02 3.2488064145E+02 3.1843129401E+02 3.1192352998E+02 3.0536718004E+02 2.9877199218E+02 2.9214760893E+02 2.8550354527E+02 2.7884916727E+02 2.7219367135E+02 2.6554606447E+02 2.5891514508E+02 2.5230948504E+02 2.4573741249E+02 2.3920699565E+02 2.3272602778E+02 2.2630201312E+02 2.1994215396E+02 2.1365333885E+02 2.0744213198E+02 2.0131476369E+02 1.9527712218E+02 1.8933474645E+02 1.8349282036E+02 1.7775616794E+02 1.7212924989E+02 1.6661616120E+02 1.6122063002E+02 1.5594601763E+02 1.5079531949E+02 1.4577116751E+02 1.4087583328E+02 1.3611123235E+02 1.3147892959E+02 1.2698014544E+02 1.2261576305E+02 1.1838633641E+02 1.1429209916E+02 1.1033297431E+02 1.0650858460E+02 1.0281826355E+02 9.9261067125E+01 9.5835785984E+01 9.2540958195E+01 8.9374882415E+01 8.6335631450E+01 8.3421066142E+01 8.0628849523E+01 7.7956461179E+01 7.5401211766E+01 7.2960257620E+01 7.0630615406E+01 6.8409176743E+01 6.6292722772E+01 6.4277938587E+01 6.2361427496E+01 6.0539725070E+01 5.8809312909E+01 5.7166632106E+01 5.5608096352E+01 5.4130104652E+01 5.2729053607E+01 5.1401349236E+01 5.0143418304E+01 4.8951719123E+01 4.7822751813E+01 4.6753067984E+01 4.5739279840E+01 4.4778068671E+01 4.3866192729E+01 4.3000494473E+01 4.2177907189E+01 4.1395460957E+01 4.0650287987E+01 3.9939627313E+01 3.9260828850E+01 3.8611356828E+01 3.7988792601E+01 3.7390836850E+01 + 4.2249746060E+02 4.1972852381E+02 4.1671792909E+02 4.1347120042E+02 4.0999427133E+02 4.0629346845E+02 4.0237549397E+02 3.9824740710E+02 3.9391660468E+02 3.8939080088E+02 3.8467800619E+02 3.7978650568E+02 3.7472483665E+02 3.6950176569E+02 3.6412626535E+02 3.5860749035E+02 3.5295475349E+02 3.4717750136E+02 3.4128528991E+02 3.3528775986E+02 3.2919461224E+02 3.2301558395E+02 3.1676042352E+02 3.1043886710E+02 3.0406061478E+02 2.9763530731E+02 2.9117250333E+02 2.8468165702E+02 2.7817209652E+02 2.7165300291E+02 2.6513338991E+02 2.5862208448E+02 2.5212770816E+02 2.4565865931E+02 2.3922309637E+02 2.3282892203E+02 2.2648376842E+02 2.2019498344E+02 2.1396961804E+02 2.0781441476E+02 2.0173579727E+02 1.9573986117E+02 1.8983236588E+02 1.8401872772E+02 1.7830401416E+02 1.7269293929E+02 1.6718986034E+02 1.6179877552E+02 1.5652332284E+02 1.5136678017E+02 1.4633206636E+02 1.4142174344E+02 1.3663801985E+02 1.3198275477E+02 1.2745746328E+02 1.2306332265E+02 1.1880117934E+02 1.1467155701E+02 1.1067466527E+02 1.0681040914E+02 1.0307839937E+02 9.9477963241E+01 9.6008156076E+01 9.2667773286E+01 8.9455362877E+01 8.6369238409E+01 8.3407492329E+01 8.0568009622E+01 7.7848481721E+01 7.5246420623E+01 7.2759173150E+01 7.0383935305E+01 6.8117766650E+01 6.5957604686E+01 6.3900279138E+01 6.1942526138E+01 6.0081002221E+01 5.8312298106E+01 5.6632952218E+01 5.5039463892E+01 5.3528306233E+01 5.2095938585E+01 5.0738818587E+01 4.9453413754E+01 4.8236212592E+01 4.7083735184E+01 4.5992543244E+01 4.4959249609E+01 4.3980527152E+01 4.3053117103E+01 4.2173836758E+01 4.1339586573E+01 4.0547356637E+01 3.9794232508E+01 3.9077400434E+01 3.8394151929E+01 3.7741887738E+01 3.7118121184E+01 3.6520480898E+01 3.5946712965E+01 + 4.1155389513E+02 4.0883429452E+02 4.0587862058E+02 4.0269229975E+02 3.9928115884E+02 3.9565140875E+02 3.9180962732E+02 3.8776274109E+02 3.8351800632E+02 3.7908298902E+02 3.7446554439E+02 3.6967379546E+02 3.6471611119E+02 3.5960108400E+02 3.5433750685E+02 3.4893434998E+02 3.4340073726E+02 3.3774592244E+02 3.3197926512E+02 3.2611020678E+02 3.2014824677E+02 3.1410291836E+02 3.0798376502E+02 3.0180031692E+02 2.9556206776E+02 2.8927845199E+02 2.8295882245E+02 2.7661242865E+02 2.7024839552E+02 2.6387570291E+02 2.5750316576E+02 2.5113941510E+02 2.4479287981E+02 2.3847176929E+02 2.3218405709E+02 2.2593746542E+02 2.1973945076E+02 2.1359719044E+02 2.0751757030E+02 2.0150717346E+02 1.9557227017E+02 1.8971880881E+02 1.8395240801E+02 1.7827834997E+02 1.7270157485E+02 1.6722667634E+02 1.6185789842E+02 1.5659913316E+02 1.5145391977E+02 1.4642544457E+02 1.4151654224E+02 1.3672969799E+02 1.3206705078E+02 1.2753039760E+02 1.2312119862E+02 1.1884058331E+02 1.1468935746E+02 1.1066801098E+02 1.0677672653E+02 1.0301538889E+02 9.9383595015E+01 9.5880664712E+01 9.2505651955E+01 8.9257356684E+01 8.6134337106E+01 8.3134922415E+01 8.0257225876E+01 7.7499158221E+01 7.4858441297E+01 7.2332621911E+01 6.9919085813E+01 6.7615071773E+01 6.5417685682E+01 6.3323914632E+01 6.1330640933E+01 5.9434655995E+01 5.7632674045E+01 5.5921345630E+01 5.4297270848E+01 5.2757012286E+01 5.1297107606E+01 4.9914081752E+01 4.8604458741E+01 4.7364773007E+01 4.6191580260E+01 4.5081467846E+01 4.4031064578E+01 4.3037050012E+01 4.2096163158E+01 4.1205210607E+01 4.0361074063E+01 3.9560717265E+01 3.8801192302E+01 3.8079645311E+01 3.7393321551E+01 3.6739569876E+01 3.6115846580E+01 3.5519718649E+01 3.4948866414E+01 3.4401085621E+01 + 3.9987279401E+02 3.9720501951E+02 3.9430717742E+02 3.9118459114E+02 3.8784297438E+02 3.8428841530E+02 3.8052735962E+02 3.7656659283E+02 3.7241322148E+02 3.6807465374E+02 3.6355857915E+02 3.5887294783E+02 3.5402594894E+02 3.4902598874E+02 3.4388166819E+02 3.3860176013E+02 3.3319518619E+02 3.2767099356E+02 3.2203833152E+02 3.1630642795E+02 3.1048456589E+02 3.0458206017E+02 2.9860823419E+02 2.9257239698E+02 2.8648382057E+02 2.8035171772E+02 2.7418522014E+02 2.6799335724E+02 2.6178503541E+02 2.5556901802E+02 2.4935390607E+02 2.4314811964E+02 2.3695988014E+02 2.3079719341E+02 2.2466783373E+02 2.1857932879E+02 2.1253894563E+02 2.0655367759E+02 2.0063023232E+02 1.9477502085E+02 1.8899414773E+02 1.8329340230E+02 1.7767825106E+02 1.7215383115E+02 1.6672494499E+02 1.6139605601E+02 1.5617128552E+02 1.5105441063E+02 1.4604886337E+02 1.4115773080E+02 1.3638375619E+02 1.3172934126E+02 1.2719654939E+02 1.2278710984E+02 1.1850242286E+02 1.1434356573E+02 1.1031129965E+02 1.0640607745E+02 1.0262805206E+02 9.8977085723E+01 9.5452759847E+01 9.2054385529E+01 8.8781014614E+01 8.5631451288E+01 8.2604264136E+01 7.9697798604E+01 7.6910189824E+01 7.4239375729E+01 7.1683110426E+01 6.9238977744E+01 6.6904404927E+01 6.4676676403E+01 6.2552947586E+01 6.0530258650E+01 5.8605548230E+01 5.6775667005E+01 5.5037391104E+01 5.3387435299E+01 5.1822465946E+01 5.0339113615E+01 4.8933985389E+01 4.7603676787E+01 4.6344783272E+01 4.5153911326E+01 4.4027689050E+01 4.2962776268E+01 4.1955874119E+01 4.1003734099E+01 4.0103166554E+01 3.9251048597E+01 3.8444331443E+01 3.7680047153E+01 3.6955314771E+01 3.6267345866E+01 3.5613449467E+01 3.4991036395E+01 3.4397622999E+01 3.3830834298E+01 3.3288406546E+01 3.2768189220E+01 + 3.8752958952E+02 3.8491573530E+02 3.8207821017E+02 3.7902222957E+02 3.7575338857E+02 3.7227764633E+02 3.6860130954E+02 3.6473101504E+02 3.6067371151E+02 3.5643664043E+02 3.5202731638E+02 3.4745350658E+02 3.4272320998E+02 3.3784463575E+02 3.3282618141E+02 3.2767641057E+02 3.2240403041E+02 3.1701786895E+02 3.1152685220E+02 3.0593998123E+02 3.0026630929E+02 2.9451491904E+02 2.8869489990E+02 2.8281532570E+02 2.7688523262E+02 2.7091359749E+02 2.6490931658E+02 2.5888118487E+02 2.5283787593E+02 2.4678792242E+02 2.4073969727E+02 2.3470139561E+02 2.2868101754E+02 2.2268635166E+02 2.1672495957E+02 2.1080416124E+02 2.0493102139E+02 1.9911233677E+02 1.9335462459E+02 1.8766411186E+02 1.8204672593E+02 1.7650808597E+02 1.7105349561E+02 1.6568793670E+02 1.6041606412E+02 1.5524220166E+02 1.5017033910E+02 1.4520413023E+02 1.4034689206E+02 1.3560160497E+02 1.3097091400E+02 1.2645713107E+02 1.2206223817E+02 1.1778789156E+02 1.1363542681E+02 1.0960586477E+02 1.0569991835E+02 1.0191800009E+02 9.8260230470E+01 9.4726446992E+01 9.1316213815E+01 8.8028832066E+01 8.4863350687E+01 8.1818577779E+01 7.8893092409E+01 7.6085256803E+01 7.3393228886E+01 7.0814975114E+01 6.8348283538E+01 6.5990777046E+01 6.3739926745E+01 6.1593065405E+01 5.9547400937E+01 5.7600029840E+01 5.5747950576E+01 5.3988076818E+01 5.2317250534E+01 5.0732254854E+01 4.9229826685E+01 4.7806669024E+01 4.6459462949E+01 4.5184879231E+01 4.3979589547E+01 4.2840277266E+01 4.1763647764E+01 4.0746438264E+01 3.9785427161E+01 3.8877442823E+01 3.8019371842E+01 3.7208166731E+01 3.6440853046E+01 3.5714535930E+01 3.5026406072E+01 3.4373745076E+01 3.3753930237E+01 3.3164438738E+01 3.2602851250E+01 3.2066854971E+01 3.1554246080E+01 3.1062931648E+01 + 3.7460276641E+02 3.7204454141E+02 3.6926940092E+02 3.6628244825E+02 3.6308915501E+02 3.5969534587E+02 3.5610718240E+02 3.5233114608E+02 3.4837402041E+02 3.4424287236E+02 3.3994503310E+02 3.3548807806E+02 3.3087980654E+02 3.2612822073E+02 3.2124150440E+02 3.1622800120E+02 3.1109619271E+02 3.0585467633E+02 3.0051214301E+02 2.9507735490E+02 2.8955912316E+02 2.8396628571E+02 2.7830768525E+02 2.7259214752E+02 2.6682845982E+02 2.6102534994E+02 2.5519146554E+02 2.4933535400E+02 2.4346544291E+02 2.3759002108E+02 2.3171722031E+02 2.2585499784E+02 2.2001111965E+02 2.1419314449E+02 2.0840840881E+02 2.0266401267E+02 1.9696680647E+02 1.9132337870E+02 1.8574004472E+02 1.8022283650E+02 1.7477749342E+02 1.6940945413E+02 1.6412384944E+02 1.5892549633E+02 1.5381889295E+02 1.4880821478E+02 1.4389731175E+02 1.3908970651E+02 1.3438859367E+02 1.2979684006E+02 1.2531698607E+02 1.2095124787E+02 1.1670152062E+02 1.1256938259E+02 1.0855610022E+02 1.0466263392E+02 1.0088964478E+02 9.7237502012E+01 9.3706291107E+01 9.0295822696E+01 8.7005642035E+01 8.3835039074E+01 8.0783059075E+01 7.7848513703E+01 7.5029992559E+01 7.2325875097E+01 6.9734342864E+01 6.7253392029E+01 6.4880846124E+01 6.2614368969E+01 6.0451477712E+01 5.8389555941E+01 5.6425866816E+01 5.4557566170E+01 5.2781715538E+01 5.1095295054E+01 4.9495216190E+01 4.7978334276E+01 4.6541460774E+01 4.5181375259E+01 4.3894837069E+01 4.2678596601E+01 4.1529406204E+01 4.0444030655E+01 3.9419257183E+01 3.8451905013E+01 3.7538834420E+01 3.6676955264E+01 3.5863234989E+01 3.5094706084E+01 3.4368472975E+01 3.3681718364E+01 3.3031708988E+01 3.2415800807E+01 3.1831443616E+01 3.1276185082E+01 3.0747674219E+01 3.0243664296E+01 2.9762015188E+01 2.9300695197E+01 + 3.6117306875E+02 3.5867181048E+02 3.5596071709E+02 3.5304477626E+02 3.4992933203E+02 3.4662006987E+02 3.4312300095E+02 3.3944444554E+02 3.3559101560E+02 3.3156959664E+02 3.2738732899E+02 3.2305158841E+02 3.1856996615E+02 3.1395024862E+02 3.0920039659E+02 3.0432852413E+02 2.9934287727E+02 2.9425181247E+02 2.8906377497E+02 2.8378727716E+02 2.7843087692E+02 2.7300315611E+02 2.6751269916E+02 2.6196807202E+02 2.5637780129E+02 2.5075035382E+02 2.4509411668E+02 2.3941737768E+02 2.3372830639E+02 2.2803493580E+02 2.2234514469E+02 2.1666664058E+02 2.1100694361E+02 2.0537337111E+02 1.9977302301E+02 1.9421276825E+02 1.8869923193E+02 1.8323878357E+02 1.7783752621E+02 1.7250128659E+02 1.6723560628E+02 1.6204573388E+02 1.5693661819E+02 1.5191290248E+02 1.4697891976E+02 1.4213868911E+02 1.3739591298E+02 1.3275397564E+02 1.2821594248E+02 1.2378456042E+02 1.1946225923E+02 1.1525115383E+02 1.1115304749E+02 1.0716943590E+02 1.0330151217E+02 9.9550172551E+01 9.5916023057E+01 9.2399386718E+01 8.9000311618E+01 8.5718579549E+01 8.2553715301E+01 7.9504996500E+01 7.6571463980E+01 7.3751932610E+01 7.1045002548E+01 6.8449070863E+01 6.5962343465E+01 6.3582847312E+01 6.1308442819E+01 5.9136836446E+01 5.7065593382E+01 5.5092150308E+01 5.3213828165E+01 5.1427844893E+01 4.9731328093E+01 4.8121327562E+01 4.6594827662E+01 4.5148759481E+01 4.3780012745E+01 4.2485447443E+01 4.1261905133E+01 4.0106219891E+01 3.9015228874E+01 3.7985782469E+01 3.7014754002E+01 3.6099048981E+01 3.5235613858E+01 3.4421444281E+01 3.3653592832E+01 3.2929176230E+01 3.2245381992E+01 3.1599474544E+01 3.0988800773E+01 3.0410795019E+01 2.9862983518E+01 2.9342988273E+01 2.8848530382E+01 2.8377432815E+01 2.7927622661E+01 2.7497132839E+01 + 3.4732269756E+02 3.4487938900E+02 3.4223361545E+02 3.3939024614E+02 3.3635449411E+02 3.3313190171E+02 3.2972832525E+02 3.2614991879E+02 3.2240311723E+02 3.1849461868E+02 3.1443136619E+02 3.1022052891E+02 3.0586948275E+02 3.0138579058E+02 2.9677718209E+02 2.9205153327E+02 2.8721684577E+02 2.8228122596E+02 2.7725286400E+02 2.7214001280E+02 2.6695096708E+02 2.6169404246E+02 2.5637755485E+02 2.5100979993E+02 2.4559903305E+02 2.4015344943E+02 2.3468116482E+02 2.2919019665E+02 2.2368844571E+02 2.1818367841E+02 2.1268350975E+02 2.0719538689E+02 2.0172657357E+02 1.9628413525E+02 1.9087492505E+02 1.8550557065E+02 1.8018246195E+02 1.7491173975E+02 1.6969928529E+02 1.6455071088E+02 1.5947135132E+02 1.5446625649E+02 1.4954018484E+02 1.4469759792E+02 1.3994265590E+02 1.3527921411E+02 1.3071082060E+02 1.2624071461E+02 1.2187182614E+02 1.1760677633E+02 1.1344787894E+02 1.0939714259E+02 1.0545627401E+02 1.0162668211E+02 9.7909482844E+01 9.4305504910E+01 9.0815296205E+01 8.7439130984E+01 8.4177017704E+01 8.1028707498E+01 7.7993703245E+01 7.5071269185E+01 7.2260441023E+01 6.9560036494E+01 6.6968666322E+01 6.4484745531E+01 6.2106505060E+01 5.9832003633E+01 5.7659139826E+01 5.5585664291E+01 5.3609192087E+01 5.1727215066E+01 4.9937114265E+01 4.8236172272E+01 4.6621585499E+01 4.5090476338E+01 4.3639905151E+01 4.2266882046E+01 4.0968378418E+01 3.9741338201E+01 3.8582688808E+01 3.7489351723E+01 3.6458252715E+01 3.5486331646E+01 3.4570551850E+01 3.3707909060E+01 3.2895439858E+01 3.2130229643E+01 3.1409420081E+01 3.0730216049E+01 3.0089892042E+01 2.9485798051E+01 2.8915364895E+01 2.8376109015E+01 2.7865636720E+01 2.7381647899E+01 2.6921939187E+01 2.6484406614E+01 2.6067047721E+01 2.5667963174E+01 + 3.3313450967E+02 3.3074979877E+02 3.2817024654E+02 3.2540060154E+02 3.2244594311E+02 3.1931166728E+02 3.1600347180E+02 3.1252734037E+02 3.0888952626E+02 3.0509653511E+02 3.0115510721E+02 2.9707219923E+02 2.9285496547E+02 2.8851073861E+02 2.8404701023E+02 2.7947141094E+02 2.7479169033E+02 2.7001569678E+02 2.6515135712E+02 2.6020665635E+02 2.5518961733E+02 2.5010828063E+02 2.4497068453E+02 2.3978484530E+02 2.3455873769E+02 2.2930027592E+02 2.2401729494E+02 2.1871753228E+02 2.1340861041E+02 2.0809801961E+02 2.0279310160E+02 1.9750103373E+02 1.9222881396E+02 1.8698324660E+02 1.8177092881E+02 1.7659823799E+02 1.7147131999E+02 1.6639607822E+02 1.6137816371E+02 1.5642296604E+02 1.5153560528E+02 1.4672092485E+02 1.4198348538E+02 1.3732755951E+02 1.3275712769E+02 1.2827587496E+02 1.2388718867E+02 1.1959415717E+02 1.1539956943E+02 1.1130591563E+02 1.0731538860E+02 1.0342988615E+02 9.9651014341E+01 9.5980091459E+01 9.2418152885E+01 8.8965956682E+01 8.5623989934E+01 8.2392475762E+01 7.9271381001E+01 7.6260424480E+01 7.3359085875E+01 7.0566615074E+01 6.7882042031E+01 6.5304187043E+01 6.2831671406E+01 6.0462928416E+01 5.8196214649E+01 5.6029621483E+01 5.3961086811E+01 5.1988406895E+01 5.0109248323E+01 4.8321160004E+01 4.6621585183E+01 4.5007873398E+01 4.3477292371E+01 4.2027039758E+01 4.0654254745E+01 3.9356029434E+01 3.8129419985E+01 3.6971457491E+01 3.5879158530E+01 3.4849535392E+01 3.3879605920E+01 3.2966402974E+01 3.2106983460E+01 3.1298436925E+01 3.0537893693E+01 2.9822532519E+01 2.9149587757E+01 2.8516356019E+01 2.7920202326E+01 2.7358565739E+01 2.6828964460E+01 2.6329000418E+01 2.5856363315E+01 2.5408834163E+01 2.4984288289E+01 2.4580697836E+01 2.4196133758E+01 2.3828767320E+01 + 3.1869122783E+02 3.1636544939E+02 3.1385266979E+02 3.1115751527E+02 3.0828492947E+02 3.0524015958E+02 3.0202874188E+02 2.9865648643E+02 2.9512946109E+02 2.9145397490E+02 2.8763656090E+02 2.8368395841E+02 2.7960309485E+02 2.7540106718E+02 2.7108512295E+02 2.6666264121E+02 2.6214111302E+02 2.5752812199E+02 2.5283132466E+02 2.4805843089E+02 2.4321718428E+02 2.3831534271E+02 2.3336065912E+02 2.2836086241E+02 2.2332363876E+02 2.1825661323E+02 2.1316733179E+02 2.0806324385E+02 2.0295168527E+02 1.9783986196E+02 1.9273483407E+02 1.8764350092E+02 1.8257258654E+02 1.7752862601E+02 1.7251795253E+02 1.6754668536E+02 1.6262071857E+02 1.5774571063E+02 1.5292707492E+02 1.4816997112E+02 1.4347929754E+02 1.3885968437E+02 1.3431548786E+02 1.2985078544E+02 1.2546937180E+02 1.2117475592E+02 1.1697015895E+02 1.1285851313E+02 1.0884246153E+02 1.0492435874E+02 1.0110627236E+02 9.7389985446E+01 9.3776999684E+01 9.0268539416E+01 8.6865556418E+01 8.3568735415E+01 8.0378500291E+01 7.7295020970E+01 7.4318220914E+01 7.1447785210E+01 6.8683169193E+01 6.6023607574E+01 6.3468124016E+01 6.1015541126E+01 5.8664490806E+01 5.6413424923E+01 5.4260626249E+01 5.2204219632E+01 5.0242183332E+01 4.8372360507E+01 4.6592470771E+01 4.4900121803E+01 4.3292820948E+01 4.1767986782E+01 4.0322960583E+01 3.8955017677E+01 3.7661378621E+01 3.6439220184E+01 3.5285686085E+01 3.4197897465E+01 3.3172963053E+01 3.2207988997E+01 3.1300088340E+01 3.0446390109E+01 2.9644047988E+01 2.8890248576E+01 2.8182219184E+01 2.7517235177E+01 2.6892626837E+01 2.6305785736E+01 2.5754170613E+01 2.5235312755E+01 2.4746820856E+01 2.4286385380E+01 2.3851782413E+01 2.3440877002E+01 2.3051626000E+01 2.2682080417E+01 2.2330387278E+01 2.1994791013E+01 + 3.0407467209E+02 3.0180787154E+02 2.9936208897E+02 2.9674182731E+02 2.9395189300E+02 2.9099738266E+02 2.8788366893E+02 2.8461638566E+02 2.8120141244E+02 2.7764485847E+02 2.7395304598E+02 2.7013249303E+02 2.6618989597E+02 2.6213211150E+02 2.5796613842E+02 2.5369909909E+02 2.4933822075E+02 2.4489081670E+02 2.4036426742E+02 2.3576600162E+02 2.3110347749E+02 2.2638416390E+02 2.2161552193E+02 2.1680498655E+02 2.1195994860E+02 2.0708773718E+02 2.0219560240E+02 1.9729069858E+02 1.9238006801E+02 1.8747062521E+02 1.8256914181E+02 1.7768223212E+02 1.7281633930E+02 1.6797772233E+02 1.6317244368E+02 1.5840635779E+02 1.5368510033E+02 1.4901407839E+02 1.4439846139E+02 1.3984317294E+02 1.3535288361E+02 1.3093200456E+02 1.2658468205E+02 1.2231479292E+02 1.1812594093E+02 1.1402145402E+02 1.1000438246E+02 1.0607749792E+02 1.0224329335E+02 9.8503983801E+01 9.4861507988E+01 9.1317530764E+01 8.7873446322E+01 8.4530382190E+01 8.1289203955E+01 7.8150520689E+01 7.5114691046E+01 7.2181829993E+01 6.9351816136E+01 6.6624299603E+01 6.3998710444E+01 6.1474267504E+01 5.9049987726E+01 5.6724695851E+01 5.4497034448E+01 5.2365474256E+01 5.0328324775E+01 4.8383745067E+01 4.6529754721E+01 4.4764244949E+01 4.3084989743E+01 4.1489657079E+01 3.9975820107E+01 3.8540968299E+01 3.7182518494E+01 3.5897825833E+01 3.4684194511E+01 3.3538888345E+01 3.2459141093E+01 3.1442166519E+01 3.0485168147E+01 2.9585348705E+01 2.8739919205E+01 2.7946107653E+01 2.7201167365E+01 2.6502384858E+01 2.5847087314E+01 2.5232649592E+01 2.4656500776E+01 2.4116130256E+01 2.3609093325E+01 2.3133016288E+01 2.2685601086E+01 2.2264629423E+01 2.1867966409E+01 2.1493563708E+01 2.1139462211E+01 2.0803794225E+01 2.0484785197E+01 2.0180754988E+01 + 2.8936502153E+02 2.8715698029E+02 2.8477811744E+02 2.8223281209E+02 2.7952573270E+02 2.7666182413E+02 2.7364629394E+02 2.7048459801E+02 2.6718242559E+02 2.6374568370E+02 2.6018048106E+02 2.5649311156E+02 2.5269003728E+02 2.4877787123E+02 2.4476335969E+02 2.4065336443E+02 2.3645484471E+02 2.3217483914E+02 2.2782044753E+02 2.2339881275E+02 2.1891710263E+02 2.1438249196E+02 2.0980214476E+02 2.0518319673E+02 2.0053273796E+02 1.9585779608E+02 1.9116531972E+02 1.8646216250E+02 1.8175506744E+02 1.7705065195E+02 1.7235539346E+02 1.6767561554E+02 1.6301747483E+02 1.5838694857E+02 1.5378982291E+02 1.4923168194E+02 1.4471789757E+02 1.4025362013E+02 1.3584376988E+02 1.3149302930E+02 1.2720583627E+02 1.2298637810E+02 1.1883858646E+02 1.1476613309E+02 1.1077242655E+02 1.0686060965E+02 1.0303355789E+02 9.9293878662E+01 9.5643911321E+01 9.2085728097E+01 8.8621135781E+01 8.5251678203E+01 8.1978639469E+01 7.8803047932E+01 7.5725680859E+01 7.2747069773E+01 6.9867506436E+01 6.7087049427E+01 6.4405531295E+01 6.1822566241E+01 5.9337558281E+01 5.6949709872E+01 5.4658030932E+01 5.2461348239E+01 5.0358315144E+01 4.8347421574E+01 4.6427004261E+01 4.4595257180E+01 4.2850242123E+01 4.1189899399E+01 3.9612058587E+01 3.8114449324E+01 3.6694712071E+01 3.5350408836E+01 3.4079033793E+01 3.2878023775E+01 3.1744768612E+01 3.0676621254E+01 2.9670907673E+01 2.8724936502E+01 2.7836008382E+01 2.7001424990E+01 2.6218497725E+01 2.5484556034E+01 2.4796955342E+01 2.4153084590E+01 2.3550373341E+01 2.2986298458E+01 2.2458390331E+01 2.1964238656E+01 2.1501497738E+01 2.1067891335E+01 2.0661217023E+01 2.0279350094E+01 1.9920246978E+01 1.9581948193E+01 1.9262580839E+01 1.8960360627E+01 1.8673593461E+01 1.8400676588E+01 + 2.7464011533E+02 2.7249037729E+02 2.7017808172E+02 2.6770748389E+02 2.6508311403E+02 2.6230976473E+02 2.5939247768E+02 2.5633652976E+02 2.5314741858E+02 2.4983084744E+02 2.4639270983E+02 2.4283907344E+02 2.3917616388E+02 2.3541034798E+02 2.3154811689E+02 2.2759606894E+02 2.2356089236E+02 2.1944934784E+02 2.1526825118E+02 2.1102445584E+02 2.0672483559E+02 2.0237626735E+02 1.9798561414E+02 1.9355970832E+02 1.8910533510E+02 1.8462921641E+02 1.8013799512E+02 1.7563821978E+02 1.7113632977E+02 1.6663864099E+02 1.6215133220E+02 1.5768043182E+02 1.5323180552E+02 1.4881114443E+02 1.4442395399E+02 1.4007554367E+02 1.3577101731E+02 1.3151526436E+02 1.2731295179E+02 1.2316851696E+02 1.1908616115E+02 1.1506984407E+02 1.1112327909E+02 1.0724992940E+02 1.0345300494E+02 9.9735460170E+01 9.6099992726E+01 9.2549042816E+01 8.9084793461E+01 8.5709171508E+01 8.2423849416E+01 7.9230247782E+01 7.6129538598E+01 7.3122649196E+01 7.0210266871E+01 6.7392844133E+01 6.4670604572E+01 6.2043549293E+01 5.9511463892E+01 5.7073925925E+01 5.4730312850E+01 5.2479810385E+01 5.0321421255E+01 4.8253974281E+01 4.6276133771E+01 4.4386409175E+01 4.2583164961E+01 4.0864630664E+01 3.9228911081E+01 3.7673996558E+01 3.6197773335E+01 3.4798033909E+01 3.3472487373E+01 3.2218769703E+01 3.1034453939E+01 2.9917060243E+01 2.8864065791E+01 2.7872914465E+01 2.6941026317E+01 2.6065806782E+01 2.5244655597E+01 2.4474975417E+01 2.3754180099E+01 2.3079702622E+01 2.2449002640E+01 2.1859573647E+01 2.1308949723E+01 2.0794711869E+01 2.0314493910E+01 1.9865987953E+01 1.9446949408E+01 1.9055201540E+01 1.8688639589E+01 1.8345234417E+01 1.8023035710E+01 1.7720174729E+01 1.7434866616E+01 1.7165412256E+01 1.6910199723E+01 1.6667705289E+01 + 2.5997480088E+02 2.5788269965E+02 2.5563637140E+02 2.5323994805E+02 2.5069782184E+02 2.4801463313E+02 2.4519525759E+02 2.4224479278E+02 2.3916854414E+02 2.3597201051E+02 2.3266086921E+02 2.2924096066E+02 2.2571827268E+02 2.2209892451E+02 2.1838915053E+02 2.1459528384E+02 2.1072373968E+02 2.0678099878E+02 2.0277359068E+02 1.9870807706E+02 1.9459103518E+02 1.9042904148E+02 1.8622865529E+02 1.8199640285E+02 1.7773876162E+02 1.7346214486E+02 1.6917288669E+02 1.6487722754E+02 1.6058130000E+02 1.5629111536E+02 1.5201255051E+02 1.4775133557E+02 1.4351304209E+02 1.3930307187E+02 1.3512664654E+02 1.3098879779E+02 1.2689435834E+02 1.2284795368E+02 1.1885399458E+02 1.1491667030E+02 1.1103994272E+02 1.0722754118E+02 1.0348295811E+02 9.9809445535E+01 9.6210012323E+01 9.2687422240E+01 8.9244192810E+01 8.5882594941E+01 8.2604653316E+01 7.9412147538E+01 7.6306614001E+01 7.3289348481E+01 7.0361409399E+01 6.7523621758E+01 6.4776581712E+01 6.2120661734E+01 5.9556016367E+01 5.7082588513E+01 5.4700116223E+01 5.2408139970E+01 5.0206010352E+01 4.8092896192E+01 4.6067792997E+01 4.4129531747E+01 4.2276787952E+01 4.0508090963E+01 3.8821833476E+01 3.7216281210E+01 3.5689582698E+01 3.4239779166E+01 3.2864814462E+01 3.1562544989E+01 3.0330749612E+01 2.9167139500E+01 2.8069367865E+01 2.7035039579E+01 2.6061720612E+01 2.5146947286E+01 2.4288235299E+01 2.3483088496E+01 2.2729007364E+01 2.2023497225E+01 2.1364076102E+01 2.0748282245E+01 2.0173681287E+01 1.9637873030E+01 1.9138497833E+01 1.8673242592E+01 1.8239846311E+01 1.7836105243E+01 1.7459877607E+01 1.7109087865E+01 1.6781730569E+01 1.6475873771E+01 1.6189661990E+01 1.5921318764E+01 1.5669148760E+01 1.5431539477E+01 1.5206962531E+01 1.4993974546E+01 + 2.4544033610E+02 2.4340502262E+02 2.4122384253E+02 2.3890080525E+02 2.3644016574E+02 2.3384641276E+02 2.3112425640E+02 2.2827861518E+02 2.2531460255E+02 2.2223751293E+02 2.1905280736E+02 2.1576609873E+02 2.1238313672E+02 2.0890979243E+02 2.0535204286E+02 2.0171595512E+02 1.9800767061E+02 1.9423338906E+02 1.9039935267E+02 1.8651183014E+02 1.8257710093E+02 1.7860143959E+02 1.7459110029E+02 1.7055230160E+02 1.6649121158E+02 1.6241393316E+02 1.5832648995E+02 1.5423481241E+02 1.5014472458E+02 1.4606193119E+02 1.4199200540E+02 1.3794037708E+02 1.3391232169E+02 1.2991294979E+02 1.2594719724E+02 1.2201981602E+02 1.1813536580E+02 1.1429820624E+02 1.1051248999E+02 1.0678215644E+02 1.0311092625E+02 9.9502296661E+01 9.5959537479E+01 9.2485687952E+01 8.9083554323E+01 8.5755708173E+01 8.2504485516E+01 7.9331986633E+01 7.6240076629E+01 7.3230386711E+01 7.0304316152E+01 6.7463034934E+01 6.4707487038E+01 6.2038394368E+01 5.9456261261E+01 5.6961379587E+01 5.4553834371E+01 5.2233509941E+01 5.0000096544E+01 4.7853097406E+01 4.5791836201E+01 4.3815464894E+01 4.1922971915E+01 4.0113190630E+01 3.8384808081E+01 3.6736373935E+01 3.5166309628E+01 3.3672917652E+01 3.2254390949E+01 3.0908822382E+01 2.9634214234E+01 2.8428487712E+01 2.7289492418E+01 2.6215015739E+01 2.5202792145E+01 2.4250512351E+01 2.3355832307E+01 2.2516382001E+01 2.1729774038E+01 2.0993611972E+01 2.0305498363E+01 1.9663042545E+01 1.9063868073E+01 1.8505619841E+01 1.7985970847E+01 1.7502628588E+01 1.7053341084E+01 1.6635902505E+01 1.6248158399E+01 1.5888010516E+01 1.5553421216E+01 1.5242417466E+01 1.4953094410E+01 1.4683618537E+01 1.4432230416E+01 1.4197247037E+01 1.3977063731E+01 1.3770155698E+01 1.3575079150E+01 1.3390472060E+01 + 2.3110385213E+02 2.2912432232E+02 2.2700728053E+02 2.2475661493E+02 2.2237644439E+02 2.1987110711E+02 2.1724514863E+02 2.1450330933E+02 2.1165051149E+02 2.0869184586E+02 2.0563255785E+02 2.0247803339E+02 1.9923378449E+02 1.9590543454E+02 1.9249870343E+02 1.8901939253E+02 1.8547336951E+02 1.8186655321E+02 1.7820489844E+02 1.7449438087E+02 1.7074098197E+02 1.6695067417E+02 1.6312940620E+02 1.5928308858E+02 1.5541757958E+02 1.5153867131E+02 1.4765207633E+02 1.4376341462E+02 1.3987820100E+02 1.3600183301E+02 1.3213957941E+02 1.2829656911E+02 1.2447778074E+02 1.2068803290E+02 1.1693197488E+02 1.1321407819E+02 1.0953862869E+02 1.0590971942E+02 1.0233124416E+02 9.8806891640E+01 9.5340140593E+01 9.1934255402E+01 8.8592282569E+01 8.5317047882E+01 8.2111154316E+01 7.8976980657E+01 7.5916680837E+01 7.2932183977E+01 7.0025195119E+01 6.7197196633E+01 6.4449450277E+01 6.1782999903E+01 5.9198674768E+01 5.6697093440E+01 5.4278668273E+01 5.1943610411E+01 4.9691935309E+01 4.7523468723E+01 4.5437853156E+01 4.3434554709E+01 4.1512870316E+01 3.9671935326E+01 3.7910731387E+01 3.6228094616E+01 3.4622723995E+01 3.3093189979E+01 3.1637943264E+01 3.0255323691E+01 2.8943569236E+01 2.7700825065E+01 2.6525152612E+01 2.5414538650E+01 2.4366904308E+01 2.3380114029E+01 2.2451984408E+01 2.1580292897E+01 2.0762786351E+01 1.9997189374E+01 1.9281212446E+01 1.8612559815E+01 1.7988937115E+01 1.7408058699E+01 1.6867654674E+01 1.6365477597E+01 1.5899308849E+01 1.5466964642E+01 1.5066301668E+01 1.4695222368E+01 1.4351679826E+01 1.4033682258E+01 1.3739297121E+01 1.3466654815E+01 1.3213951987E+01 1.2979454441E+01 1.2761499649E+01 1.2558498872E+01 1.2368938890E+01 1.2191383361E+01 1.2024473800E+01 1.1866930208E+01 + 2.1702788147E+02 2.1510300344E+02 2.1304892782E+02 2.1086942310E+02 2.0856847360E+02 2.0615026848E+02 2.0361919022E+02 2.0097980257E+02 1.9823683806E+02 1.9539518516E+02 1.9245987503E+02 1.8943606797E+02 1.8632903962E+02 1.8314416690E+02 1.7988691381E+02 1.7656281711E+02 1.7317747191E+02 1.6973651720E+02 1.6624562145E+02 1.6271046823E+02 1.5913674199E+02 1.5553011395E+02 1.5189622819E+02 1.4824068803E+02 1.4456904266E+02 1.4088677410E+02 1.3719928454E+02 1.3351188408E+02 1.2982977891E+02 1.2615805998E+02 1.2250169211E+02 1.1886550375E+02 1.1525417718E+02 1.1167223940E+02 1.0812405358E+02 1.0461381110E+02 1.0114552437E+02 9.7723020131E+01 9.4349933586E+01 9.1029703137E+01 8.7765565828E+01 8.4560553481E+01 8.1417489539E+01 7.8338986591E+01 7.5327444595E+01 7.2385049789E+01 6.9513774275E+01 6.6715376269E+01 6.3991401008E+01 6.1343182287E+01 5.8771844627E+01 5.6278306031E+01 5.3863281327E+01 5.1527286060E+01 4.9270640919E+01 4.7093476666E+01 4.4995739537E+01 4.2977197092E+01 4.1037444480E+01 3.9175911087E+01 3.7391867538E+01 3.5684433011E+01 3.4052582843E+01 3.2495156386E+01 3.1010865070E+01 2.9598300662E+01 2.8255943665E+01 2.6982171825E+01 2.5775268730E+01 2.4633432446E+01 2.3554784168E+01 2.2537376851E+01 2.1579203793E+01 2.0678207135E+01 1.9832286252E+01 1.9039306002E+01 1.8297104815E+01 1.7603502583E+01 1.6956308344E+01 1.6353327719E+01 1.5792370096E+01 1.5271255530E+01 1.4787821348E+01 1.4339928445E+01 1.3925467244E+01 1.3542363321E+01 1.3188582683E+01 1.2862136672E+01 1.2561086515E+01 1.2283547496E+01 1.2027692743E+01 1.1791756649E+01 1.1574037899E+01 1.1372902129E+01 1.1186784203E+01 1.1014190117E+01 1.0853698539E+01 1.0703961993E+01 1.0563707683E+01 1.0431737986E+01 + 2.0326995555E+02 2.0139849616E+02 1.9940608026E+02 1.9729635847E+02 1.9507318246E+02 1.9274059431E+02 1.9030281535E+02 1.8776423468E+02 1.8512939710E+02 1.8240299081E+02 1.7958983478E+02 1.7669486570E+02 1.7372312488E+02 1.7067974484E+02 1.6756993574E+02 1.6439897180E+02 1.6117217757E+02 1.5789491423E+02 1.5457256592E+02 1.5121052616E+02 1.4781418431E+02 1.4438891233E+02 1.4094005162E+02 1.3747290017E+02 1.3399269998E+02 1.3050462483E+02 1.2701376835E+02 1.2352513255E+02 1.2004361675E+02 1.1657400695E+02 1.1312096577E+02 1.0968902281E+02 1.0628256558E+02 1.0290583108E+02 9.9562897822E+01 9.6257678586E+01 9.2993913714E+01 8.9775165072E+01 8.6604810654E+01 8.3486039824E+01 8.0421849231E+01 7.7415039375E+01 7.4468211838E+01 7.1583767174E+01 6.8763903455E+01 6.6010615462E+01 6.3325694523E+01 6.0710728973E+01 5.8167105232E+01 5.5696009483E+01 5.3298429935E+01 5.0975159640E+01 4.8726799866E+01 4.6553763977E+01 4.4456281811E+01 4.2434404537E+01 4.0488009937E+01 3.8616808116E+01 3.6820347588E+01 3.5098021721E+01 3.3449075504E+01 3.1872612604E+01 3.0367602683E+01 2.8932888946E+01 2.7567195874E+01 2.6269137132E+01 2.5037223592E+01 2.3869871464E+01 2.2765410485E+01 2.1722092139E+01 2.0738097891E+01 1.9811547373E+01 1.8940506529E+01 1.8122995667E+01 1.7356997391E+01 1.6640464403E+01 1.5971327132E+01 1.5347501170E+01 1.4766894507E+01 1.4227414523E+01 1.3726974725E+01 1.3263501222E+01 1.2834938904E+01 1.2439257323E+01 1.2074456255E+01 1.1738570933E+01 1.1429676952E+01 1.1145894815E+01 1.0885394138E+01 1.0646397493E+01 1.0427183890E+01 1.0226091903E+01 1.0041522427E+01 9.8719410801E+00 9.7158802505E+00 9.5719407834E+00 9.4387933291E+00 9.3151793479E+00 9.1999117857E+00 9.0918754280E+00 + 1.8988227472E+02 1.8806292513E+02 1.8613075527E+02 1.8408930003E+02 1.8194228059E+02 1.7969359419E+02 1.7734730343E+02 1.7490762515E+02 1.7237891895E+02 1.6976567536E+02 1.6707250376E+02 1.6430411997E+02 1.6146533373E+02 1.5856103594E+02 1.5559618577E+02 1.5257579777E+02 1.4950492885E+02 1.4638866531E+02 1.4323210992E+02 1.4004036906E+02 1.3681854002E+02 1.3357169845E+02 1.3030488602E+02 1.2702309838E+02 1.2373127329E+02 1.2043427920E+02 1.1713690409E+02 1.1384384476E+02 1.1055969650E+02 1.0728894323E+02 1.0403594811E+02 1.0080494462E+02 9.7600028225E+01 9.4425148541E+01 9.1284102052E+01 8.8180525447E+01 8.5117889515E+01 8.2099493664E+01 7.9128461047E+01 7.6207734301E+01 7.3340071926E+01 7.0528045277E+01 6.7774036191E+01 6.5080235233E+01 6.2448640565E+01 5.9881057425E+01 5.7379098207E+01 5.4944183139E+01 5.2577541528E+01 5.0280213579E+01 4.8053052753E+01 4.5896728652E+01 4.3811730410E+01 4.1798370573E+01 3.9856789427E+01 3.7986959776E+01 3.6188692115E+01 3.4461640194E+01 3.2805306936E+01 3.1219050671E+01 2.9702091672E+01 2.8253518956E+01 2.6872297317E+01 2.5557274564E+01 2.4307188928E+01 2.3120676614E+01 2.1996279463E+01 2.0932452693E+01 1.9927572689E+01 1.8979944813E+01 1.8087811207E+01 1.7249358552E+01 1.6462725768E+01 1.5726011617E+01 1.5037282190E+01 1.4394578249E+01 1.3795922404E+01 1.3239326103E+01 1.2722796407E+01 1.2244342542E+01 1.1801982203E+01 1.1393747585E+01 1.1017691152E+01 1.0671891098E+01 1.0354456513E+01 1.0063532229E+01 9.7973033466E+00 9.5539994282E+00 9.3318983573E+00 9.1293298552E+00 8.9446786572E+00 8.7763873440E+00 8.6229588308E+00 8.4829585154E+00 8.3550160886E+00 8.2378270123E+00 8.1301536709E+00 8.0308262032E+00 7.9387430238E+00 7.8528710434E+00 + 1.7691145235E+02 1.7514285223E+02 1.7326943360E+02 1.7129461786E+02 1.6922199815E+02 1.6705532945E+02 1.6479851832E+02 1.6245561223E+02 1.6003078851E+02 1.5752834314E+02 1.5495267910E+02 1.5230829465E+02 1.4959977137E+02 1.4683176201E+02 1.4400897836E+02 1.4113617892E+02 1.3821815668E+02 1.3525972683E+02 1.3226571457E+02 1.2924094305E+02 1.2619022134E+02 1.2311833273E+02 1.2003002313E+02 1.1692998976E+02 1.1382287010E+02 1.1071323124E+02 1.0760555946E+02 1.0450425028E+02 1.0141359886E+02 9.8337790896E+01 9.5280893931E+01 9.2246849142E+01 8.9239463669E+01 8.6262403438E+01 8.3319186531E+01 8.0413177114E+01 7.7547579918E+01 7.4725435312E+01 7.1949614948E+01 6.9222817996E+01 6.6547567978E+01 6.3926210188E+01 6.1360909709E+01 5.8853650014E+01 5.6406232155E+01 5.4020274525E+01 5.1697213185E+01 4.9438302748E+01 4.7244617805E+01 4.5117054868E+01 4.3056334836E+01 4.1063005935E+01 3.9137447144E+01 3.7279872053E+01 3.5490333161E+01 3.3768726566E+01 3.2114797034E+01 3.0528143416E+01 2.9008224396E+01 2.7554364520E+01 2.6165760508E+01 2.4841487790E+01 2.3580507265E+01 2.2381672225E+01 2.1243735442E+01 2.0165356371E+01 1.9145108444E+01 1.8181486433E+01 1.7272913835E+01 1.6417750282E+01 1.5614298912E+01 1.4860813706E+01 1.4155506743E+01 1.3496555364E+01 1.2882109206E+01 1.2310297097E+01 1.1779233783E+01 1.1287026462E+01 1.0831781122E+01 1.0411608645E+01 1.0024630674E+01 9.6689852214E+00 9.3428320119E+00 9.0443575389E+00 8.7717798304E+00 8.5233529121E+00 8.2973709615E+00 8.0921721457E+00 7.9061421395E+00 7.7377173188E+00 7.5853876303E+00 7.4476991343E+00 7.3232562238E+00 7.2107235212E+00 7.1088274579E+00 7.0163575392E+00 6.9321673041E+00 6.8551749845E+00 6.7843638739E+00 6.7187824150E+00 + 1.6439833379E+02 1.6267909403E+02 1.6086287529E+02 1.5895298791E+02 1.5695289962E+02 1.5486622597E+02 1.5269672053E+02 1.5044826455E+02 1.4812485653E+02 1.4573060139E+02 1.4326969945E+02 1.4074643527E+02 1.3816516623E+02 1.3553031109E+02 1.3284633846E+02 1.3011775519E+02 1.2734909478E+02 1.2454490587E+02 1.2170974074E+02 1.1884814397E+02 1.1596464121E+02 1.1306372819E+02 1.1014985990E+02 1.0722744002E+02 1.0430081070E+02 1.0137424254E+02 9.8451925067E+01 9.5537957408E+01 9.2636339515E+01 8.9750963723E+01 8.6885606784E+01 8.4043922359E+01 8.1229434000E+01 7.8445528626E+01 7.5695450522E+01 7.2982295862E+01 7.0309007771E+01 6.7678371938E+01 6.5093012780E+01 6.2555390165E+01 6.0067796694E+01 5.7632355545E+01 5.5251018874E+01 5.2925566770E+01 5.0657606757E+01 4.8448573838E+01 4.6299731061E+01 4.4212170619E+01 4.2186815432E+01 4.0224421239E+01 3.8325579149E+01 3.6490718652E+01 3.4720111059E+01 3.3013873364E+01 3.1371972487E+01 2.9794229893E+01 2.8280326550E+01 2.6829808206E+01 2.5442090961E+01 2.4116467103E+01 2.2852111184E+01 2.1648086311E+01 2.0503350613E+01 1.9416763875E+01 1.8387094297E+01 1.7413025347E+01 1.6493162704E+01 1.5626041228E+01 1.4810131967E+01 1.4043849149E+01 1.3325557142E+01 1.2653577361E+01 1.2026195091E+01 1.1441666208E+01 1.0898223773E+01 1.0394084480E+01 9.9274549344E+00 9.4965377456E+00 9.0995374197E+00 8.7346660268E+00 8.4001486366E+00 8.0942285041E+00 7.8151719946E+00 7.5612732367E+00 7.3308584937E+00 7.1222902468E+00 6.9339709808E+00 6.7643466705E+00 6.6119099609E+00 6.4752030411E+00 6.3528202098E+00 6.2434101337E+00 6.1456777986E+00 6.0583861587E+00 5.9803574863E+00 5.9104744282E+00 5.8476807741E+00 5.7909819467E+00 5.7394452191E+00 5.6921996713E+00 + 1.5237788959E+02 1.5070661328E+02 1.4894600963E+02 1.4709928048E+02 1.4516977094E+02 1.4316096021E+02 1.4107645209E+02 1.3891996518E+02 1.3669532287E+02 1.3440644296E+02 1.3205732729E+02 1.2965205099E+02 1.2719475183E+02 1.2468961925E+02 1.2214088353E+02 1.1955280487E+02 1.1692966244E+02 1.1427574357E+02 1.1159533300E+02 1.0889270221E+02 1.0617209900E+02 1.0343773718E+02 1.0069378650E+02 9.7944362898E+01 9.5193518921E+01 9.2445234556E+01 8.9703408351E+01 8.6971848909E+01 8.4254266774E+01 8.1554266723E+01 7.8875340491E+01 7.6220859940E+01 7.3594070703E+01 7.0998086298E+01 6.8435882738E+01 6.5910293650E+01 6.3424005904E+01 6.0979555756E+01 5.8579325526E+01 5.6225540797E+01 5.3920268140E+01 5.1665413379E+01 4.9462720362E+01 4.7313770269E+01 4.5219981420E+01 4.3182609595E+01 4.1202748843E+01 3.9281332775E+01 3.7419136327E+01 3.5616777969E+01 3.3874722360E+01 3.2193283416E+01 3.0572627775E+01 2.9012778645E+01 2.7513620009E+01 2.6074901163E+01 2.4696241566E+01 2.3377135979E+01 2.2116959866E+01 2.0914975031E+01 1.9770335469E+01 1.8682093404E+01 1.7649205484E+01 1.6670539112E+01 1.5744878884E+01 1.4870933109E+01 1.4047340385E+01 1.3272676202E+01 1.2545459558E+01 1.1864159548E+01 1.1227201914E+01 1.0632975530E+01 1.0079838797E+01 9.5661259282E+00 9.0901531070E+00 8.6502244921E+00 8.2446380574E+00 7.8716912464E+00 7.5296864251E+00 7.2169361204E+00 6.9317680286E+00 6.6725297827E+00 6.4375934677E+00 6.2253598741E+00 6.0342624816E+00 5.8627711655E+00 5.7093956213E+00 5.5726885027E+00 5.4512482706E+00 5.3437217503E+00 5.2488063990E+00 5.1652522819E+00 5.0918637618E+00 5.0275009028E+00 4.9710805949E+00 4.9215774039E+00 4.8780241540E+00 4.8395122490E+00 4.8051917430E+00 4.7742711678E+00 + 1.4087918171E+02 1.3925448310E+02 1.3754789749E+02 1.3576252086E+02 1.3390157860E+02 1.3196841677E+02 1.2996649293E+02 1.2789936678E+02 1.2577069062E+02 1.2358419946E+02 1.2134370115E+02 1.1905306624E+02 1.1671621780E+02 1.1433712120E+02 1.1191977381E+02 1.0946819471E+02 1.0698641452E+02 1.0447846516E+02 1.0194836988E+02 9.9400133257E+01 9.6837731515E+01 9.4265102931E+01 9.1686138523E+01 8.9104672984E+01 8.6524475894E+01 8.3949243245E+01 8.1382589298E+01 7.8828038794E+01 7.6289019553E+01 7.3768855454E+01 7.1270759847E+01 6.8797829388E+01 6.6353038323E+01 6.3939233232E+01 6.1559128246E+01 5.9215300738E+01 5.6910187510E+01 5.4646081463E+01 5.2425128771E+01 5.0249326546E+01 4.8120521009E+01 4.6040406145E+01 4.4010522860E+01 4.2032258617E+01 4.0106847553E+01 3.8235371064E+01 3.6418758851E+01 3.4657790411E+01 3.2953096958E+01 3.1305163765E+01 2.9714332907E+01 2.8180806389E+01 2.6704649629E+01 2.5285795302E+01 2.3924047494E+01 2.2619086165E+01 2.1370471895E+01 2.0177650876E+01 1.9039960153E+01 1.7956633059E+01 1.6926804848E+01 1.5949518480E+01 1.5023730547E+01 1.4148317307E+01 1.3322080809E+01 1.2543755073E+01 1.1812012318E+01 1.1125469195E+01 1.0482693020E+01 9.8822079669E+00 9.3225012133E+00 8.8020290092E+00 8.3192226505E+00 7.8724943376E+00 7.4602429005E+00 7.0808593720E+00 6.7327323942E+00 6.4142534399E+00 6.1238218371E+00 5.8598495824E+00 5.6207659301E+00 5.4050217489E+00 5.2110936339E+00 5.0374877674E+00 4.8827435211E+00 4.7454367934E+00 4.6241830782E+00 4.5176402615E+00 4.4245111439E+00 4.3435456887E+00 4.2735429951E+00 4.2133529993E+00 4.1618779051E+00 4.1180733490E+00 4.0809493035E+00 4.0495707250E+00 4.0230579533E+00 4.0005868695E+00 3.9813888224E+00 3.9647503301E+00 + 1.2992539985E+02 1.2834592132E+02 1.2669176373E+02 1.2496591984E+02 1.2317149836E+02 1.2131171552E+02 1.1938988630E+02 1.1740941552E+02 1.1537378865E+02 1.1328656252E+02 1.1115135587E+02 1.0897183977E+02 1.0675172807E+02 1.0449476766E+02 1.0220472888E+02 9.9885395836E+01 9.7540556852E+01 9.5173994966E+01 9.2789478562E+01 9.0390752147E+01 8.7981527308E+01 8.5565473868E+01 8.3146211280E+01 8.0727300275E+01 7.8312234796E+01 7.5904434234E+01 7.3507235996E+01 7.1123888422E+01 6.8757544064E+01 6.6411253361E+01 6.4087958703E+01 6.1790488926E+01 5.9521554219E+01 5.7283741489E+01 5.5079510154E+01 5.2911188414E+01 5.0780969967E+01 4.8690911199E+01 4.6642928843E+01 4.4638798099E+01 4.2680151229E+01 4.0768476613E+01 3.8905118260E+01 3.7091275779E+01 3.5328004788E+01 3.3616217765E+01 3.1956685313E+01 3.0350037849E+01 2.8796767681E+01 2.7297231474E+01 2.5851653078E+01 2.4460126708E+01 2.3122620458E+01 2.1838980121E+01 2.0608933300E+01 1.9432093800E+01 1.8307966256E+01 1.7235950999E+01 1.6215349119E+01 1.5245367717E+01 1.4325125307E+01 1.3453657368E+01 1.2629921991E+01 1.1852805628E+01 1.1121128907E+01 1.0433652480E+01 9.7890829038E+00 9.1860785144E+00 8.6232552785E+00 8.0991926027E+00 7.6124390789E+00 7.1615181453E+00 6.7449336461E+00 6.3611752704E+00 6.0087238541E+00 5.6860565288E+00 5.3916517021E+00 5.1239938561E+00 4.8815781509E+00 4.6629148207E+00 4.4665333538E+00 4.2909864451E+00 4.1348537136E+00 3.9967451789E+00 3.8753044894E+00 3.7692118984E+00 3.6771869845E+00 3.5979911144E+00 3.5304296463E+00 3.4733538745E+00 3.4256627166E+00 3.3863041444E+00 3.3542763631E+00 3.3286287421E+00 3.3084625029E+00 3.2929311706E+00 3.2812407946E+00 3.2726499480E+00 3.2664695131E+00 3.2620622617E+00 + 1.1953396479E+02 1.1799839160E+02 1.1639509617E+02 1.1472697069E+02 1.1299701023E+02 1.1120830463E+02 1.0936403009E+02 1.0746744069E+02 1.0552185958E+02 1.0353067023E+02 1.0149730742E+02 9.9425248240E+01 9.7318003024E+01 9.5179106263E+01 9.3012107553E+01 9.0820562572E+01 8.8608024143E+01 8.6378033399E+01 8.4134111074E+01 8.1879748964E+01 7.9618401565E+01 7.7353477927E+01 7.5088333743E+01 7.2826263697E+01 7.0570494096E+01 6.8324175804E+01 6.6090377500E+01 6.3872079275E+01 6.1672166591E+01 5.9493424612E+01 5.7338532919E+01 5.5210060637E+01 5.3110461955E+01 5.1042072085E+01 4.9007103633E+01 4.7007643414E+01 4.5045649696E+01 4.3122949891E+01 4.1241238681E+01 3.9402076586E+01 3.7606888973E+01 3.5856965485E+01 3.4153459919E+01 3.2497390500E+01 3.0889640588E+01 2.9330959772E+01 2.7821965361E+01 2.6363144253E+01 2.4954855169E+01 2.3597331229E+01 2.2290682867E+01 2.1034901065E+01 1.9829860877E+01 1.8675325237E+01 1.7570949027E+01 1.6516283386E+01 1.5510780234E+01 1.4553796997E+01 1.3644601511E+01 1.2782377078E+01 1.1966227656E+01 1.1195183161E+01 1.0468204860E+01 9.7841908309E+00 9.1419814673E+00 8.5403650112E+00 7.9780830887E+00 7.4538362291E+00 6.9662893496E+00 6.5140771830E+00 6.0958096324E+00 5.7100770337E+00 5.3554553098E+00 5.0305109986E+00 4.7338061411E+00 4.4639030148E+00 4.2193686981E+00 3.9987794547E+00 3.8007249252E+00 3.6238121173E+00 3.4666691839E+00 3.3279489823E+00 3.2063324064E+00 3.1005314876E+00 3.0092922587E+00 2.9313973771E+00 2.8656685062E+00 2.8109684519E+00 2.7662030560E+00 2.7303228449E+00 2.7023244383E+00 2.6812517172E+00 2.6661967588E+00 2.6563005397E+00 2.6507534149E+00 2.6487953777E+00 2.6497161087E+00 2.6528548206E+00 2.6575999082E+00 2.6633884118E+00 + 1.0971669417E+02 1.0822376704E+02 1.0666980701E+02 1.0505760839E+02 1.0339005566E+02 1.0167011575E+02 9.9900829970E+01 9.8085305902E+01 9.6226709081E+01 9.4328254614E+01 9.2393198722E+01 9.0424830222E+01 8.8426462002E+01 8.6401422507E+01 8.4353047255E+01 8.2284670428E+01 8.0199616551E+01 7.8101192287E+01 7.5992678387E+01 7.3877321801E+01 7.1758327986E+01 6.9638853435E+01 6.7521998442E+01 6.5410800131E+01 6.3308225764E+01 6.1217166352E+01 5.9140430584E+01 5.7080739086E+01 5.5040719034E+01 5.3022899126E+01 5.1029704931E+01 4.9063454616E+01 4.7126355080E+01 4.5220498470E+01 4.3347859123E+01 4.1510290901E+01 3.9709524956E+01 3.7947167892E+01 3.6224700356E+01 3.4543476031E+01 3.2904721041E+01 3.1309533761E+01 2.9758885017E+01 2.8253618681E+01 2.6794452645E+01 2.5381980162E+01 2.4016671545E+01 2.2698876215E+01 2.1428825072E+01 2.0206633191E+01 1.9032302812E+01 1.7905726615E+01 1.6826691265E+01 1.5794881198E+01 1.4809882641E+01 1.3871187845E+01 1.2978199496E+01 1.2130235311E+01 1.1326532774E+01 1.0566254005E+01 9.8484907348E+00 9.1722693736E+00 8.5365561402E+00 7.9402622431E+00 7.3822490879E+00 6.8613334911E+00 6.3762928836E+00 5.9258704822E+00 5.5087804131E+00 5.1237127682E+00 4.7693385782E+00 4.4443146858E+00 4.1472885032E+00 3.8769026401E+00 3.6317993883E+00 3.4106250487E+00 3.2120340915E+00 3.0346931363E+00 2.8772847431E+00 2.7385110065E+00 2.6170969429E+00 2.5117936671E+00 2.4213813495E+00 2.3446719516E+00 2.2805117358E+00 2.2277835463E+00 2.1854088600E+00 2.1523496077E+00 2.1276097652E+00 2.1102367164E+00 2.0993223907E+00 2.0940041776E+00 2.0934656246E+00 2.0969369198E+00 2.1036951698E+00 2.1130644746E+00 2.1244158108E+00 2.1371667278E+00 2.1507808679E+00 2.1647673170E+00 + 1.0048002582E+02 9.9028551150E+01 9.7522451631E+01 9.5964426228E+01 9.4357251922E+01 9.2703776208E+01 9.1006909448E+01 8.9269617096E+01 8.7494911819E+01 8.5685845557E+01 8.3845501526E+01 8.1976986206E+01 8.0083421336E+01 7.8167935943E+01 7.6233658427E+01 7.4283708734E+01 7.2321190637E+01 7.0349184148E+01 6.8370738093E+01 6.6388862865E+01 6.4406523377E+01 6.2426632243E+01 6.0452043199E+01 5.8485544791E+01 5.6529854340E+01 5.4587612203E+01 5.2661376355E+01 5.0753617287E+01 4.8866713250E+01 4.7002945849E+01 4.5164496000E+01 4.3353440248E+01 4.1571747474E+01 3.9821275971E+01 3.8103770919E+01 3.6420862235E+01 3.4774062825E+01 3.3164767217E+01 3.1594250587E+01 3.0063668165E+01 2.8574055026E+01 2.7126326250E+01 2.5721277452E+01 2.4359585670E+01 2.3041810598E+01 2.1768396166E+01 2.0539672433E+01 1.9355857802E+01 1.8217061533E+01 1.7123286539E+01 1.6074432445E+01 1.5070298912E+01 1.4110589182E+01 1.3194913851E+01 1.2322794835E+01 1.1493669521E+01 1.0706895076E+01 9.9617529049E+00 9.2574532222E+00 8.5931397387E+00 7.9678944257E+00 7.3807423471E+00 6.8306565379E+00 6.3165629093E+00 5.8373451630E+00 5.3918496958E+00 4.9788904774E+00 4.5972538823E+00 4.2457034620E+00 3.9229846382E+00 3.6278293045E+00 3.3589603199E+00 3.1150958810E+00 2.8949537601E+00 2.6972553971E+00 2.5207298326E+00 2.3641174738E+00 2.2261736828E+00 2.1056721786E+00 2.0014082463E+00 1.9122017462E+00 1.8368999177E+00 1.7743799747E+00 1.7235514861E+00 1.6833585430E+00 1.6527817077E+00 1.6308397459E+00 1.6165911420E+00 1.6091353988E+00 1.6076141241E+00 1.6112119072E+00 1.6191569887E+00 1.6307217291E+00 1.6452228813E+00 1.6620216729E+00 1.6805237053E+00 1.7001786766E+00 1.7204799366E+00 1.7409638825E+00 1.7612092029E+00 + 9.1825292832E+01 9.0414150786E+01 8.8954499167E+01 8.7448944148E+01 8.5900158193E+01 8.4310872863E+01 8.2683871511E+01 8.1021981873E+01 7.9328068599E+01 7.7605025736E+01 7.5855769190E+01 7.4083229198E+01 7.2290342830E+01 7.0480046540E+01 6.8655268805E+01 6.6818922858E+01 6.4973899555E+01 6.3123060381E+01 6.1269230630E+01 5.9415192777E+01 5.7563680056E+01 5.5717370269E+01 5.3878879845E+01 5.2050758155E+01 5.0235482115E+01 4.8435451080E+01 4.6652982043E+01 4.4890305160E+01 4.3149559598E+01 4.1432789727E+01 3.9741941660E+01 3.8078860147E+01 3.6445285825E+01 3.4842852838E+01 3.3273086819E+01 3.1737403239E+01 3.0237106128E+01 2.8773387150E+01 2.7347325058E+01 2.5959885485E+01 2.4611921112E+01 2.3304172158E+01 2.2037267226E+01 2.0811724469E+01 1.9627953073E+01 1.8486255056E+01 1.7386827353E+01 1.6329764186E+01 1.5315059703E+01 1.4342610872E+01 1.3412220608E+01 1.2523601124E+01 1.1676377490E+01 1.0870091377E+01 1.0104204969E+01 9.3781050369E+00 8.6911071354E+00 8.0424599266E+00 7.4313495958E+00 6.8569043499E+00 6.3181989764E+00 5.8142594467E+00 5.3440675449E+00 4.9065655049E+00 4.5006606386E+00 4.1252299378E+00 3.7791246347E+00 3.4611747034E+00 3.1701932894E+00 2.9049810508E+00 2.6643303975E+00 2.4470296171E+00 2.2518668724E+00 2.0776340617E+00 1.9231305289E+00 1.7871666157E+00 1.6685670457E+00 1.5661741323E+00 1.4788508051E+00 1.4054834464E+00 1.3449845343E+00 1.2962950881E+00 1.2583869116E+00 1.2302646335E+00 1.2109675425E+00 1.1995712169E+00 1.1951889498E+00 1.1969729693E+00 1.2041154587E+00 1.2158493764E+00 1.2314490822E+00 1.2502307717E+00 1.2715527264E+00 1.2948153833E+00 1.3194612315E+00 1.3449745423E+00 1.3708809406E+00 1.3967468252E+00 1.4221786460E+00 1.4468220483E+00 + 8.3749044231E+01 8.2377194534E+01 8.0962648748E+01 7.9507922688E+01 7.8015587241E+01 7.6488261481E+01 7.4928605683E+01 7.3339314286E+01 7.1723108805E+01 7.0082730733E+01 6.8420934450E+01 6.6740480156E+01 6.5044126863E+01 6.3334625458E+01 6.1614711870E+01 5.9887100348E+01 5.8154476890E+01 5.6419492822E+01 5.4684758565E+01 5.2952837600E+01 5.1226240648E+01 4.9507420086E+01 4.7798764612E+01 4.6102594178E+01 4.4421155194E+01 4.2756616032E+01 4.1111062824E+01 3.9486495583E+01 3.7884824630E+01 3.6307867367E+01 3.4757345370E+01 3.3234881831E+01 3.1741999342E+01 3.0280118021E+01 2.8850553989E+01 2.7454518190E+01 2.6093115560E+01 2.4767344532E+01 2.3478096886E+01 2.2226157925E+01 2.1012206979E+01 1.9836818231E+01 1.8700461848E+01 1.7603505414E+01 1.6546215652E+01 1.5528760426E+01 1.4551211004E+01 1.3613544578E+01 1.2715647016E+01 1.1857315846E+01 1.1038263440E+01 1.0258120396E+01 9.5164390946E+00 8.8126974126E+00 8.1463025860E+00 7.5165951931E+00 6.9228532491E+00 6.3642963909E+00 5.8400901372E+00 5.3493502037E+00 4.8911468600E+00 4.4645093075E+00 4.0684300647E+00 3.7018693422E+00 3.3637593914E+00 3.0530088122E+00 2.7685068041E+00 2.5091273475E+00 2.2737332993E+00 2.0611803927E+00 1.8703211260E+00 1.7000085310E+00 1.5490998087E+00 1.4164598231E+00 1.3009644437E+00 1.2015037279E+00 1.1169849372E+00 1.0463353784E+00 9.8850506688E-01 9.4246920430E-01 9.0723046939E-01 8.8182111707E-01 8.6530488457E-01 8.5677870330E-01 8.5537421581E-01 8.6025909858E-01 8.7063819177E-01 8.8575443806E-01 9.0488963336E-01 9.2736499309E-01 9.5254153802E-01 9.7982030493E-01 1.0086423873E+00 1.0384888124E+00 1.0688802609E+00 1.0993766374E+00 1.1295764973E+00 1.1591163401E+00 1.1876697768E+00 1.2149465782E+00 + 7.6243404555E+01 7.4909890199E+01 7.3539184773E+01 7.2133716057E+01 7.0695956223E+01 6.9228415234E+01 6.7733634185E+01 6.6214178608E+01 6.4672631774E+01 6.3111587988E+01 6.1533645925E+01 5.9941402022E+01 5.8337443934E+01 5.6724344094E+01 5.5104653385E+01 5.3480894948E+01 5.1855558147E+01 5.0231092703E+01 4.8609903023E+01 4.6994342734E+01 4.5386709446E+01 4.3789239742E+01 4.2204104437E+01 4.0633404087E+01 3.9079164783E+01 3.7543334232E+01 3.6027778136E+01 3.4534276868E+01 3.3064522472E+01 3.1620115974E+01 3.0202565015E+01 2.8813281813E+01 2.7453581450E+01 2.6124680489E+01 2.4827695917E+01 2.3563644417E+01 2.2333441958E+01 2.1137903713E+01 1.9977744281E+01 1.8853578226E+01 1.7765920907E+01 1.6715189610E+01 1.5701704954E+01 1.4725692576E+01 1.3787285074E+01 1.2886524197E+01 1.2023363280E+01 1.1197669893E+01 1.0409228706E+01 9.6577445439E+00 8.9428456290E+00 8.2640869785E+00 7.6209539576E+00 7.0128659627E+00 6.4391802215E+00 5.8991956939E+00 5.3921570555E+00 4.9172587493E+00 4.4736490880E+00 4.0604343910E+00 3.6766831405E+00 3.3214301401E+00 2.9936806612E+00 2.6924145625E+00 2.4165903665E+00 2.1651492811E+00 1.9370191507E+00 1.7311183253E+00 1.5463594349E+00 1.3816530568E+00 1.2359112666E+00 1.1080510609E+00 9.9699764339E-01 9.0168756581E-01 8.2107171504E-01 7.5411814050E-01 6.9981471507E-01 6.5717162446E-01 6.2522368063E-01 6.0303245574E-01 5.8968823385E-01 5.8431177863E-01 5.8605591594E-01 5.9410693110E-01 6.0768578152E-01 6.2604912590E-01 6.4849017221E-01 6.7433934726E-01 7.0296479134E-01 7.3377268208E-01 7.6620739241E-01 7.9975148787E-01 8.3392556932E-01 8.6828796727E-01 9.0243429492E-01 9.3599686701E-01 9.6864399219E-01 1.0000791469E+00 1.0300400392E+00 1.0582975700E+00 + 6.9296465452E+01 6.8000414370E+01 6.6672364386E+01 6.5314657455E+01 6.3929669786E+01 6.2519805526E+01 6.1087490418E+01 5.9635165440E+01 5.8165280471E+01 5.6680287980E+01 5.5182636776E+01 5.3674765824E+01 5.2159098168E+01 5.0638034957E+01 4.9113949610E+01 4.7589182127E+01 4.6066033572E+01 4.4546760740E+01 4.3033571022E+01 4.1528617489E+01 4.0033994204E+01 3.8551731776E+01 3.7083793169E+01 3.5632069778E+01 3.4198377777E+01 3.2784454753E+01 3.1391956634E+01 3.0022454908E+01 2.8677434155E+01 2.7358289874E+01 2.6066326635E+01 2.4802756525E+01 2.3568697924E+01 2.2365174578E+01 2.1193114992E+01 2.0053352119E+01 1.8946623365E+01 1.7873570879E+01 1.6834742138E+01 1.5830590822E+01 1.4861477954E+01 1.3927673317E+01 1.3029357118E+01 1.2166621907E+01 1.1339474725E+01 1.0547839473E+01 9.7915594984E+00 9.0704003647E+00 8.3840528162E+00 7.7321359013E+00 7.1142002525E+00 6.5297315036E+00 5.9781538285E+00 5.4588335881E+00 4.9710830674E+00 4.5141642893E+00 4.0872928872E+00 3.6896420232E+00 3.3203463344E+00 2.9785058934E+00 2.6631901677E+00 2.3734419629E+00 2.1082813367E+00 1.8667094686E+00 1.6477124722E+00 1.4502651386E+00 1.2733345970E+00 1.1158838819E+00 9.7687539585E-01 8.5527425719E-01 7.5005152379E-01 6.6018728341E-01 5.8467360311E-01 5.2251733028E-01 4.7274273892E-01 4.3439401546E-01 4.0653757946E-01 3.8826423498E-01 3.7869114965E-01 3.7696365895E-01 3.8225689413E-01 3.9377723305E-01 4.1076357390E-01 4.3248843256E-01 4.5825886508E-01 4.8741721752E-01 5.1934170597E-01 5.5344683029E-01 5.8918362581E-01 6.2603975762E-01 6.6353946273E-01 7.0124334605E-01 7.3874803620E-01 7.7568570813E-01 8.1172347933E-01 8.4656268733E-01 8.7993805596E-01 9.1161675854E-01 9.4139738602E-01 9.6910882854E-01 + 6.2892702217E+01 6.1633327065E+01 6.0346830147E+01 5.9035469668E+01 5.7701528515E+01 5.6347308216E+01 5.4975122900E+01 5.3587293268E+01 5.2186140610E+01 5.0773980867E+01 4.9353118782E+01 4.7925842137E+01 4.6494416107E+01 4.5061077745E+01 4.3628030612E+01 4.2197439579E+01 4.0771425802E+01 3.9352061896E+01 3.7941367318E+01 3.6541303973E+01 3.5153772052E+01 3.3780606118E+01 3.2423571452E+01 3.1084360656E+01 2.9764590533E+01 2.8465799251E+01 2.7189443788E+01 2.5936897668E+01 2.4709448994E+01 2.3508298776E+01 2.2334559554E+01 2.1189254326E+01 2.0073315767E+01 1.8987585743E+01 1.7932815122E+01 1.6909663866E+01 1.5918701410E+01 1.4960407317E+01 1.4035172198E+01 1.3143298898E+01 1.2285003928E+01 1.1460419147E+01 1.0669593670E+01 9.9124959964E+00 9.1890163505E+00 8.4989692158E+00 7.8420960527E+00 7.2180681863E+00 6.6264898497E+00 6.0669013691E+00 5.5387824756E+00 5.0415557293E+00 4.5745900410E+00 4.1372042759E+00 3.7286709253E+00 3.3482198297E+00 2.9950419400E+00 2.6682931017E+00 2.3670978466E+00 2.0905531793E+00 1.8377323429E+00 1.6076885524E+00 1.3994586806E+00 1.2120668854E+00 1.0445281658E+00 8.9585183522E-01 7.6504490112E-01 6.5111534053E-01 5.5307526234E-01 4.6994394690E-01 4.0075075507E-01 3.4453789908E-01 3.0036306861E-01 2.6730190611E-01 2.4445032615E-01 2.3092667457E-01 2.2587372375E-01 2.2846050115E-01 2.3788394923E-01 2.5337041543E-01 2.7417697165E-01 2.9959256362E-01 3.2893899094E-01 3.6157171966E-01 3.9688052959E-01 4.3428999933E-01 4.7325983278E-01 5.1328503114E-01 5.5389591527E-01 5.9465800362E-01 6.3517175150E-01 6.7507215785E-01 7.1402824613E-01 7.5174242621E-01 7.8794974464E-01 8.2241703069E-01 8.5494194597E-01 8.8535194571E-01 9.1350315959E-01 9.3927920047E-01 + 5.7013408156E+01 5.5790004352E+01 5.4544040801E+01 5.3277693898E+01 5.1993155723E+01 5.0692628266E+01 4.9378317679E+01 4.8052428571E+01 4.6717158358E+01 4.5374691694E+01 4.4027195002E+01 4.2676811114E+01 4.1325654042E+01 3.9975803902E+01 3.8629301996E+01 3.7288146070E+01 3.5954285769E+01 3.4629618294E+01 3.3315984276E+01 3.2015163877E+01 3.0728873139E+01 2.9458760569E+01 2.8206403990E+01 2.6973307652E+01 2.5760899619E+01 2.4570529426E+01 2.3403466017E+01 2.2260895975E+01 2.1143922021E+01 2.0053561817E+01 1.8990747042E+01 1.7956322757E+01 1.6951047053E+01 1.5975590978E+01 1.5030538737E+01 1.4116388162E+01 1.3233551445E+01 1.2382356126E+01 1.1563046331E+01 1.0775784245E+01 1.0020651818E+01 9.2976526883E+00 8.6067143121E+00 7.9476902920E+00 7.3203628876E+00 6.7244456984E+00 6.1595865041E+00 5.6253702501E+00 5.1213221637E+00 4.6469109869E+00 4.2015523120E+00 3.7846120046E+00 3.3954097013E+00 3.0332223653E+00 2.6972878877E+00 2.3868087187E+00 2.1009555152E+00 1.8388707907E+00 1.5996725537E+00 1.3824579225E+00 1.1863067010E+00 1.0102849061E+00 8.5344823211E-01 7.1484544200E-01 5.9352167475E-01 4.8852165749E-01 3.9889281359E-01 3.2368825730E-01 2.6196966657E-01 2.1281002650E-01 1.7529623651E-01 1.4853157480E-01 1.3163801499E-01 1.2375838988E-01 1.2405839876E-01 1.3172845475E-01 1.4598537005E-01 1.6607387715E-01 1.9126798538E-01 2.2087217228E-01 2.5422241056E-01 2.9068703174E-01 3.2966742831E-01 3.7059859705E-01 4.1294952653E-01 4.5622343260E-01 4.9995784608E-01 5.4372455762E-01 5.8712942477E-01 6.2981204729E-01 6.7144531665E-01 7.1173484642E-01 7.5041829025E-01 7.8726455484E-01 8.2207291503E-01 8.5467203894E-01 8.8491893067E-01 9.1269779874E-01 9.3791885806E-01 9.6051707362E-01 + 5.1637139733E+01 5.0449081929E+01 4.9242713168E+01 4.8020129844E+01 4.6783435610E+01 4.5534735875E+01 4.4276132336E+01 4.3009717581E+01 4.1737569766E+01 4.0461747404E+01 3.9184284254E+01 3.7907184351E+01 3.6632417183E+01 3.5361913026E+01 3.4097558459E+01 3.2841192063E+01 3.1594600331E+01 3.0359513781E+01 2.9137603301E+01 2.7930476726E+01 2.6739675656E+01 2.5566672526E+01 2.4412867936E+01 2.3279588240E+01 2.2168083406E+01 2.1079525144E+01 2.0015005317E+01 1.8975534616E+01 1.7962041520E+01 1.6975371527E+01 1.6016286665E+01 1.5085465263E+01 1.4183502007E+01 1.3310908241E+01 1.2468112540E+01 1.1655461526E+01 1.0873220933E+01 1.0121576908E+01 9.4006375306E+00 8.7104345660E+00 8.0509254106E+00 7.4219952423E+00 6.8234593531E+00 6.2550656551E+00 5.7164973473E+00 5.2073757293E+00 4.7272631506E+00 4.2756660792E+00 3.8520382794E+00 3.4557840808E+00 3.0862617285E+00 2.7427867968E+00 2.4246356556E+00 2.1310489730E+00 1.8612352417E+00 1.6143743153E+00 1.3896209409E+00 1.1861082744E+00 1.0029513673E+00 8.3925061068E-01 6.9409512580E-01 5.6656608938E-01 4.5573998249E-01 3.6069175290E-01 2.8049788105E-01 2.1423934028E-01 1.6100444308E-01 1.1989156526E-01 9.0011740969E-02 7.0491122144E-02 6.0473296588E-02 5.9121459684E-02 6.5620435516E-02 7.9178543833E-02 9.9029310091E-02 1.2443301652E-01 1.5467809292E-01 1.8908234651E-01 2.2699403102E-01 2.6779275580E-01 3.1089023637E-01 3.5573088849E-01 4.0179226857E-01 4.4858536370E-01 4.9565473508E-01 5.4257851948E-01 5.8896829342E-01 6.3446880557E-01 6.7875758318E-01 7.2154441869E-01 7.6257074309E-01 8.0160889285E-01 8.3846127764E-01 8.7295945607E-01 9.0496312712E-01 9.3435904487E-01 9.6105986441E-01 9.8500292666E-01 1.0061489903E+00 1.0244809181E+00 + 4.6740165667E+01 4.5586902829E+01 4.4419268338E+01 4.3239280248E+01 4.2048956040E+01 4.0850307364E+01 3.9645334853E+01 3.8436023022E+01 3.7224335265E+01 3.6012208978E+01 3.4801550802E+01 3.3594232025E+01 3.2392084143E+01 3.1196894592E+01 3.0010402673E+01 2.8834295677E+01 2.7670205219E+01 2.6519703792E+01 2.5384301553E+01 2.4265443354E+01 2.3164506003E+01 2.2082795795E+01 2.1021546288E+01 1.9981916345E+01 1.8964988443E+01 1.7971767245E+01 1.7003178441E+01 1.6060067860E+01 1.5143200847E+01 1.4253261904E+01 1.3390854597E+01 1.2556501720E+01 1.1750645709E+01 1.0973649316E+01 1.0225796508E+01 9.5072936152E+00 8.8182706944E+00 8.1587831184E+00 7.5288133663E+00 6.9282730148E+00 6.3570049148E+00 5.8147855432E+00 5.3013275184E+00 4.8162822662E+00 4.3592428241E+00 3.9297467711E+00 3.5272792687E+00 3.1512762017E+00 2.8011274020E+00 2.4761799455E+00 2.1757415049E+00 1.8990837473E+00 1.6454457612E+00 1.4140375009E+00 1.2040432337E+00 1.0146249782E+00 8.4492591985E-01 6.9407379229E-01 5.6118421219E-01 4.4536395596E-01 3.4571416759E-01 2.6133348695E-01 1.9132108878E-01 1.3477962283E-01 9.0818046622E-02 5.8554342596E-02 3.7118112336E-02 2.5653041080E-02 2.3319226518E-02 2.9295366542E-02 4.2780801354E-02 6.2997406075E-02 8.9191330686E-02 1.2063458489E-01 1.5662646622E-01 1.9649483035E-01 2.3959720337E-01 2.8532173643E-01 3.3308800377E-01 3.8234764588E-01 4.3258486015E-01 4.8331674191E-01 5.3409347942E-01 5.8449840684E-01 6.3414791970E-01 6.8269125807E-01 7.2981016272E-01 7.7521841027E-01 8.1866123368E-01 8.5991463444E-01 8.9878459359E-01 9.3510618856E-01 9.6874262321E-01 9.9958417863E-01 1.0275470923E+00 1.0525723733E+00 1.0746245618E+00 1.0936904394E+00 1.1097777001E+00 1.1229135877E+00 + 4.2296913424E+01 4.1177962727E+01 4.0048275634E+01 3.8909793396E+01 3.7764449430E+01 3.6614164319E+01 3.5460840885E+01 3.4306359387E+01 3.3152572815E+01 3.2001302341E+01 3.0854332903E+01 2.9713408960E+01 2.8580230418E+01 2.7456448746E+01 2.6343663293E+01 2.5243417806E+01 2.4157197178E+01 2.3086424416E+01 2.2032457848E+01 2.0996588571E+01 1.9980038146E+01 1.8983956550E+01 1.8009420378E+01 1.7057431313E+01 1.6128914847E+01 1.5224719275E+01 1.4345614939E+01 1.3492293746E+01 1.2665368930E+01 1.1865375081E+01 1.1092768417E+01 1.0347927308E+01 9.6311530352E+00 8.9426707879E+00 8.2826308822E+00 7.6511102014E+00 7.0481138426E+00 6.4735769636E+00 5.9273668179E+00 5.4092849681E+00 4.9190696656E+00 4.4563983860E+00 4.0208905055E+00 3.6121101089E+00 3.2295689136E+00 2.8727292981E+00 2.5410074216E+00 2.2337764196E+00 1.9503696650E+00 1.6900840784E+00 1.4521834758E+00 1.2359019399E+00 1.0404472019E+00 8.6500402059E-01 7.0873754712E-01 5.7079666129E-01 4.5031726908E-01 3.4642554899E-01 2.5824113620E-01 1.8488023396E-01 1.2545864218E-01 7.9094693409E-02 4.4912087561E-02 2.2042616824E-02 9.6287731346E-03 6.8262311773E-03 1.2806200547E-02 2.6757641414E-02 4.7889338741E-02 7.5431830810E-02 1.0863918854E-01 1.4679064277E-01 1.8919205747E-01 2.3517724739E-01 2.8410913965E-01 3.3538077899E-01 3.8841617773E-01 4.4267101137E-01 4.9763316218E-01 5.5282311296E-01 6.0779419455E-01 6.6213269042E-01 7.1545780282E-01 7.6742148514E-01 8.1770814573E-01 8.6603422866E-01 9.1214767760E-01 9.5582728912E-01 9.9688196202E-01 1.0351498497E+00 1.0704974228E+00 1.1028184492E+00 1.1320328998E+00 1.1580857861E+00 1.1809459388E+00 1.2006047351E+00 1.2170747809E+00 1.2303885579E+00 1.2405970414E+00 1.2477682969E+00 + 3.8280406946E+01 3.7195346681E+01 3.6102888227E+01 3.5004897433E+01 3.3903225637E+01 3.2799704901E+01 3.1696143359E+01 3.0594320677E+01 2.9495983661E+01 2.8402842005E+01 2.7316564206E+01 2.6238773662E+01 2.5171044940E+01 2.4114900265E+01 2.3071806197E+01 2.2043170538E+01 2.1030339462E+01 2.0034594874E+01 1.9057152016E+01 1.8099157313E+01 1.7161686467E+01 1.6245742810E+01 1.5352255905E+01 1.4482080410E+01 1.3635995197E+01 1.2814702723E+01 1.2018828667E+01 1.1248921805E+01 1.0505454149E+01 9.7888213194E+00 9.0993431652E+00 8.4372646119E+00 7.8027567404E+00 7.1959180825E+00 6.6167761293E+00 6.0652890393E+00 5.5413475401E+00 5.0447770110E+00 4.5753397365E+00 4.1327373200E+00 3.7166132438E+00 3.3265555663E+00 2.9620997406E+00 2.6227315445E+00 2.3078901070E+00 2.0169710191E+00 1.7493295152E+00 1.5042837122E+00 1.2811178923E+00 1.0790858175E+00 8.9741406093E-01 7.3530534392E-01 5.9194186490E-01 4.6648860811E-01 3.5809662007E-01 2.6590624200E-01 1.8905028696E-01 1.2665715078E-01 7.7853846554E-02 4.1768952788E-02 1.7535466010E-02 4.2935491585E-03 1.1931677516E-03 7.3966064171E-03 2.2080859082E-02 4.4439886769E-02 7.3686737654E-02 1.0905552473E-01 1.4980325718E-01 1.9521152211E-01 2.4458801436E-01 2.9726791231E-01 3.5261509884E-01 4.1002322675E-01 4.6891662928E-01 5.2875107621E-01 5.8901437753E-01 6.4922683660E-01 7.0894155568E-01 7.6774459724E-01 8.2525500492E-01 8.8112468850E-01 9.3503817790E-01 9.8671225150E-01 1.0358954445E+00 1.0823674436E+00 1.1259383744E+00 1.1664479878E+00 1.2037647538E+00 1.2377848686E+00 1.2684311822E+00 1.2956520562E+00 1.3194201572E+00 1.3397311942E+00 1.3566026085E+00 1.3700722234E+00 1.3801968607E+00 1.3870509326E+00 1.3907250167E+00 1.3913244197E+00 + 3.4662689934E+01 3.3611151633E+01 3.2555264690E+01 3.1496820836E+01 3.0437591179E+01 2.9379321679E+01 2.8323728754E+01 2.7272495003E+01 2.6227265107E+01 2.5189641871E+01 2.4161182454E+01 2.3143394787E+01 2.2137734186E+01 2.1145600171E+01 2.0168333505E+01 1.9207213459E+01 1.8263455305E+01 1.7338208047E+01 1.6432552396E+01 1.5547498995E+01 1.4683986885E+01 1.3842882233E+01 1.3024977307E+01 1.2230989707E+01 1.1461561848E+01 1.0717260696E+01 9.9985777454E+00 9.3059292522E+00 8.6396566959E+00 8.0000274837E+00 7.3872358807E+00 6.8014041610E+00 6.2425839741E+00 5.7107579153E+00 5.2058412930E+00 4.7276840820E+00 4.2760730530E+00 3.8507340666E+00 3.4513345220E+00 3.0774859461E+00 2.7287467141E+00 2.4046248855E+00 2.1045811462E+00 1.8280318405E+00 1.5743520831E+00 1.3428789351E+00 1.1329146328E+00 9.4372985508E-01 7.7456701650E-01 6.2464357345E-01 4.9315533017E-01 3.7927973236E-01 2.8217913603E-01 2.0100403985E-01 1.3489626924E-01 8.2992101358E-02 4.4425320139E-02 1.8330191476E-02 3.8443487803E-03 1.1158001737E-04 6.2845077607E-03 2.1527154488E-02 4.5017385970E-02 7.5949226289E-02 1.1353503867E-01 1.5700756702E-01 2.0562183387E-01 2.5865689083E-01 3.1541741877E-01 3.7523517541E-01 4.3747028865E-01 5.0151239492E-01 5.6678162220E-01 6.3272941845E-01 6.9883922625E-01 7.6462700580E-01 8.2964160841E-01 8.9346500357E-01 9.5571236321E-01 1.0160320071E+00 1.0741052142E+00 1.1296459046E+00 1.1824001984E+00 1.2321458561E+00 1.2786916084E+00 1.3218763803E+00 1.3615684182E+00 1.3976643253E+00 1.4300880140E+00 1.4587895824E+00 1.4837441222E+00 1.5049504663E+00 1.5224298834E+00 1.5362247280E+00 1.5463970530E+00 1.5530271924E+00 1.5562123231E+00 1.5560650116E+00 1.5527117542E+00 1.5462915165E+00 + 3.1415229539E+01 3.0396889523E+01 2.9376971383E+01 2.8357193894E+01 2.7339249666E+01 2.6324800845E+01 2.5315474961E+01 2.4312860927E+01 2.3318505196E+01 2.2333908110E+01 2.1360520417E+01 2.0399740001E+01 1.9452908817E+01 1.8521310034E+01 1.7606165407E+01 1.6708632887E+01 1.5829804449E+01 1.4970704181E+01 1.4132286603E+01 1.3315435238E+01 1.2520961441E+01 1.1749603465E+01 1.1002025788E+01 1.0278818683E+01 9.5804980417E+00 8.9075054387E+00 8.2602084380E+00 7.6389011367E+00 7.0438049386E+00 6.4750695528E+00 5.9327742100E+00 5.4169290880E+00 4.9274769385E+00 4.4642949053E+00 4.0271965250E+00 3.6159338987E+00 3.2302000240E+00 2.8696312773E+00 2.5338100318E+00 2.2222674019E+00 1.9344860999E+00 1.6699033917E+00 1.4279141411E+00 1.2078739267E+00 1.0091022205E+00 8.3088561322E-01 6.7248107531E-01 5.3311923870E-01 4.1200768758E-01 3.0833424520E-01 2.2127024423E-01 1.4997376865E-01 9.3592855380E-02 5.1268644261E-02 2.2138465451E-02 5.3388537419E-03 8.4798587189E-06 5.2909892982E-03 2.0337739879E-02 4.4310429751E-02 7.6383608254E-02 1.1574706267E-01 1.6160807454E-01 2.1319354003E-01 2.6975194927E-01 3.3055522063E-01 3.9490038628E-01 4.6211112643E-01 5.3153914987E-01 6.0256541979E-01 6.7460122391E-01 7.4708908907E-01 8.1950354090E-01 8.9135170994E-01 9.6217378608E-01 1.0315433240E+00 1.0990674028E+00 1.1643866431E+00 1.2271750869E+00 1.2871399434E+00 1.3440212077E+00 1.3975911564E+00 1.4476537278E+00 1.4940437911E+00 1.5366263137E+00 1.5752954313E+00 1.6099734296E+00 1.6406096447E+00 1.6671792889E+00 1.6896822114E+00 1.7081415999E+00 1.7226026320E+00 1.7331310842E+00 1.7398119059E+00 1.7427477667E+00 1.7420575841E+00 1.7378750394E+00 1.7303470897E+00 1.7196324819E+00 1.7059002766E+00 + 2.8509295928E+01 2.7523866489E+01 2.6539361104E+01 2.5557426664E+01 2.4579678896E+01 2.3607698290E+01 2.2643026187E+01 2.1687161034E+01 2.0741554807E+01 1.9807609632E+01 1.8886674594E+01 1.7980042760E+01 1.7088948416E+01 1.6214564521E+01 1.5358000399E+01 1.4520299661E+01 1.3702438365E+01 1.2905323425E+01 1.2129791259E+01 1.1376606694E+01 1.0646462109E+01 9.9399768334E+00 9.2576967936E+00 8.6000943992E+00 7.9675686765E+00 7.3604456385E+00 6.7789788882E+00 6.2233504513E+00 5.6936718294E+00 5.1899852679E+00 4.7122652308E+00 4.2604200731E+00 3.8342939014E+00 3.4336686135E+00 3.0582661063E+00 2.7077506407E+00 2.3817313518E+00 2.0797648939E+00 1.8013582062E+00 1.5459713888E+00 1.3130206741E+00 1.1018814826E+00 9.1189154874E-01 7.4235410459E-01 5.9254110750E-01 4.6169649936E-01 3.4903948398E-01 2.5376781011E-01 1.7506104724E-01 1.1208384207E-01 6.3989143440E-02 2.9921384077E-02 9.0196078958E-03 4.2053194806E-04 3.2615326636E-03 1.6683546516E-02 3.9833875789E-02 7.1868890718E-02 1.1195661986E-01 1.5927922121E-01 2.1303532722E-01 2.7244225751E-01 3.3673809386E-01 4.0518361265E-01 4.7706407060E-01 5.5169084062E-01 6.2840289488E-01 7.0656813341E-01 7.8558455667E-01 8.6488128193E-01 9.4391940320E-01 1.0221926958E+00 1.0992281670E+00 1.1745864546E+00 1.2478620764E+00 1.3186835340E+00 1.3867132741E+00 1.4516475124E+00 1.5132159248E+00 1.5711812108E+00 1.6253385359E+00 1.6755148573E+00 1.7215681419E+00 1.7633864811E+00 1.8008871110E+00 1.8340153451E+00 1.8627434262E+00 1.8870693061E+00 1.9070153611E+00 1.9226270500E+00 1.9339715240E+00 1.9411361951E+00 1.9442272719E+00 1.9433682707E+00 1.9386985079E+00 1.9303715845E+00 1.9185538658E+00 1.9034229685E+00 1.8851662569E+00 1.8639793597E+00 + 2.5916313833E+01 2.4963534231E+01 2.4013924122E+01 2.3069059496E+01 2.2130480709E+01 2.1199688635E+01 2.0278140993E+01 1.9367248842E+01 1.8468373266E+01 1.7582822255E+01 1.6711847792E+01 1.5856643158E+01 1.5018340454E+01 1.4198008354E+01 1.3396650091E+01 1.2615201681E+01 1.1854530388E+01 1.1115433439E+01 1.0398636976E+01 9.7047952666E+00 9.0344901473E+00 8.3882307266E+00 7.7664533219E+00 7.1695216408E+00 6.5977271980E+00 6.0512899638E+00 5.5303592385E+00 5.0350147469E+00 4.5652679443E+00 4.1210635274E+00 3.7022811403E+00 3.3087372673E+00 2.9401873017E+00 2.5963277804E+00 2.2767987738E+00 1.9811864186E+00 1.7090255824E+00 1.4598026474E+00 1.2329584017E+00 1.0278910235E+00 8.4395914792E-01 6.8048500082E-01 5.3675758853E-01 4.1203592930E-01 3.0555231383E-01 2.1651558180E-01 1.4411440171E-01 8.7520541392E-02 4.5892116877E-02 1.8376807665E-02 4.1150266621E-03 2.2430335999E-03 1.1895981076E-02 3.2210882906E-02 6.2329494967E-02 1.0140109926E-01 1.4858518253E-01 2.0305400131E-01 2.6399502609E-01 3.3061325762E-01 4.0213340950E-01 4.7780195135E-01 5.5688900812E-01 6.3869011135E-01 7.2252779915E-01 8.0775306232E-01 8.9374663472E-01 9.7992012679E-01 1.0657170017E+00 1.1506133941E+00 1.2341187735E+00 1.3157764516E+00 1.3951639384E+00 1.4718931479E+00 1.5456104577E+00 1.6159966262E+00 1.6827665721E+00 1.7456690205E+00 1.8044860218E+00 1.8590323495E+00 1.9091547814E+00 1.9547312732E+00 1.9956700298E+00 2.0319084817E+00 2.0634121750E+00 2.0901735808E+00 2.1122108339E+00 2.1295664071E+00 2.1423057295E+00 2.1505157576E+00 2.1543035060E+00 2.1537945466E+00 2.1491314841E+00 2.1404724147E+00 2.1279893772E+00 2.1118668023E+00 2.0922999689E+00 2.0694934731E+00 2.0436597175E+00 2.0150174269E+00 + 2.3608182883E+01 2.2687810346E+01 2.1772608351E+01 2.0864082888E+01 1.9963700363E+01 1.9072883970E+01 1.8193010245E+01 1.7325405797E+01 1.6471344243E+01 1.5632043347E+01 1.4808662367E+01 1.4002299624E+01 1.3213990307E+01 1.2444704497E+01 1.1695345437E+01 1.0966748038E+01 1.0259677633E+01 9.5748289684E+00 8.9128254514E+00 8.2742186314E+00 7.6594879337E+00 7.0690406315E+00 6.5032120579E+00 5.9622660527E+00 5.4463956389E+00 4.9557239248E+00 4.4903052226E+00 4.0501263795E+00 3.6351083101E+00 3.2451077236E+00 2.8799190366E+00 2.5392764588E+00 2.2228562454E+00 1.9302791014E+00 1.6611127281E+00 1.4148745007E+00 1.1910342624E+00 9.8901722507E-01 8.0820696240E-01 6.4794848259E-01 5.0755136832E-01 3.8629297025E-01 2.8342164132E-01 1.9815999866E-01 1.2970820026E-01 7.7247223568E-02 3.9942133493E-02 1.6945327437E-02 7.3997454406E-03 1.0442033732E-02 2.5205650448E-02 5.0823902737E-02 8.6432904893E-02 1.3117444774E-01 1.8419876998E-01 2.4466722292E-01 3.1175482032E-01 3.8465266625E-01 4.6257025385E-01 5.4473762919E-01 6.3040741463E-01 7.1885668711E-01 8.0938870731E-01 9.0133449648E-01 9.9405425831E-01 1.0869386441E+00 1.1794098598E+00 1.2709226153E+00 1.3609649150E+00 1.4490586916E+00 1.5347602846E+00 1.6176607649E+00 1.6973861096E+00 1.7735972292E+00 1.8459898527E+00 1.9142942729E+00 1.9782749597E+00 2.0377300443E+00 2.0924906822E+00 2.1424202998E+00 2.1874137328E+00 2.2273962619E+00 2.2623225540E+00 2.2921755165E+00 2.3169650716E+00 2.3367268594E+00 2.3515208772E+00 2.3614300633E+00 2.3665588331E+00 2.3670315766E+00 2.3629911235E+00 2.3545971864E+00 2.3420247871E+00 2.3254626765E+00 2.3051117537E+00 2.2811834921E+00 2.2538983806E+00 2.2234843850E+00 2.1901754375E+00 2.1542099597E+00 + 2.1557564190E+01 2.0669365104E+01 1.9788106140E+01 1.8915224137E+01 1.8052112893E+01 1.7200119757E+01 1.6360542404E+01 1.5534625797E+01 1.4723559366E+01 1.3928474383E+01 1.3150441569E+01 1.2390468917E+01 1.1649499751E+01 1.0928411021E+01 1.0228011832E+01 9.5490422199E+00 8.8921721682E+00 8.2580008685E+00 7.6470562264E+00 7.0597946093E+00 6.4966008348E+00 5.9577883975E+00 5.4435999284E+00 4.9542078844E+00 4.4897154608E+00 4.0501577206E+00 3.6355029337E+00 3.2456541184E+00 2.8804507756E+00 2.5396708076E+00 2.2230326103E+00 1.9301973296E+00 1.6607712705E+00 1.4143084474E+00 1.1903132641E+00 9.8824331088E-01 8.0751226681E-01 6.4749289423E-01 5.0752011250E-01 3.8689413828E-01 2.8488367902E-01 2.0072916677E-01 1.3364601921E-01 8.2827914947E-02 4.7450070353E-02 2.6672505378E-02 1.9643285953E-02 2.5501731055E-02 4.3381572717E-02 7.2414057759E-02 1.1173098039E-01 1.6046763535E-01 2.1776568179E-01 2.8277590852E-01 3.5466089209E-01 4.3259753944E-01 5.1577950784E-01 6.0341949515E-01 6.9475139449E-01 7.8903230775E-01 8.8554441320E-01 9.8359668336E-01 1.0825264496E+00 1.1817008114E+00 1.2805178871E+00 1.3784079076E+00 1.4748341488E+00 1.5692937074E+00 1.6613181165E+00 1.7504738069E+00 1.8363624126E+00 1.9186209263E+00 1.9969217061E+00 2.0709723388E+00 2.1405153643E+00 2.2053278649E+00 2.2652209269E+00 2.3200389785E+00 2.3696590123E+00 2.4139896971E+00 2.4529703882E+00 2.4865700417E+00 2.5147860413E+00 2.5376429448E+00 2.5551911599E+00 2.5675055541E+00 2.5746840105E+00 2.5768459353E+00 2.5741307257E+00 2.5666962066E+00 2.5547170448E+00 2.5383831465E+00 2.5178980487E+00 2.4934773102E+00 2.4653469096E+00 2.4337416592E+00 2.3989036397E+00 2.3610806633E+00 2.3205247711E+00 2.2774907715E+00 + 1.9738131414E+01 1.8881872835E+01 1.8034105851E+01 1.7196198944E+01 1.6369474584E+01 1.5555206023E+01 1.4754614292E+01 1.3968865389E+01 1.3199067682E+01 1.2446269528E+01 1.1711457115E+01 1.0995552533E+01 1.0299412076E+01 9.6238247847E+00 8.9695112290E+00 8.3371225279E+00 7.7272396171E+00 7.1403727557E+00 6.5769612759E+00 6.0373735711E+00 5.5219073214E+00 5.0307899509E+00 4.5641793134E+00 4.1221646011E+00 3.7047674689E+00 3.3119433680E+00 2.9435830813E+00 2.5995144507E+00 2.2795042894E+00 1.9832604663E+00 1.7104341557E+00 1.4606222383E+00 1.2333698443E+00 1.0281730256E+00 8.4448154605E-01 6.8170177597E-01 5.3919967999E-01 4.1630388410E-01 3.1230880940E-01 2.2647785965E-01 1.5804664938E-01 1.0622625958E-01 7.0206508091E-02 4.9159222008E-02 4.2241499291E-02 4.8598947497E-02 6.7368887471E-02 9.7683510363E-02 1.3867297667E-01 1.8946844646E-01 2.4920503038E-01 3.1702465159E-01 3.9207880928E-01 4.7353123510E-01 5.6056043425E-01 6.5236210378E-01 7.4815142134E-01 8.4716519800E-01 9.4866388991E-01 1.0519334638E+00 1.1562871122E+00 1.2610668157E+00 1.3656447483E+00 1.4694245253E+00 1.5718422919E+00 1.6723676517E+00 1.7705044359E+00 1.8657913141E+00 1.9578022473E+00 2.0461467870E+00 2.1304702210E+00 2.2104535715E+00 2.2858134482E+00 2.3563017608E+00 2.4217052970E+00 2.4818451708E+00 2.5365761463E+00 2.5857858455E+00 2.6293938445E+00 2.6673506668E+00 2.6996366798E+00 2.7262609036E+00 2.7472597380E+00 2.7626956178E+00 2.7726556025E+00 2.7772499102E+00 2.7766104025E+00 2.7708890300E+00 2.7602562458E+00 2.7448993951E+00 2.7250210895E+00 2.7008375732E+00 2.6725770890E+00 2.6404782523E+00 2.6047884393E+00 2.5657621970E+00 2.5236596811E+00 2.4787451297E+00 2.4312853761E+00 2.3815484094E+00 + 1.8124785163E+01 1.7300226816E+01 1.6485507062E+01 1.5681926800E+01 1.4890738392E+01 1.4113142672E+01 1.3350286146E+01 1.2603258407E+01 1.1873089756E+01 1.1160749049E+01 1.0467141769E+01 9.7931083280E+00 9.1394226059E+00 8.5067907239E+00 7.8958500610E+00 7.3071685090E+00 6.7412439695E+00 6.1985040894E+00 5.6793062354E+00 5.1839377032E+00 4.7126161587E+00 4.2654903055E+00 3.8426407751E+00 3.4440812320E+00 3.0697596877E+00 2.7195600159E+00 2.3933036602E+00 2.0907515248E+00 1.8116060401E+00 1.5555133914E+00 1.3220659010E+00 1.1108045512E+00 9.2122163865E-01 7.5276354576E-01 6.0483361878E-01 4.7679513863E-01 3.6797437256E-01 2.7766369334E-01 2.0512475325E-01 1.4959169963E-01 1.1027441926E-01 8.6361798504E-02 7.7024986475E-02 8.1420648789E-02 9.8694199417E-02 1.2798299870E-01 1.6841950576E-01 2.1913437407E-01 2.7925947918E-01 3.4793086830E-01 4.2429162166E-01 5.0749461643E-01 5.9670518429E-01 6.9110365442E-01 7.8988777442E-01 8.9227500216E-01 9.9750466231E-01 1.1048399619E+00 1.2135698605E+00 1.3230107897E+00 1.4325082200E+00 1.5414380715E+00 1.6492079657E+00 1.7552583188E+00 1.8590632748E+00 1.9601314783E+00 2.0580066885E+00 2.1522682355E+00 2.2425313215E+00 2.3284471681E+00 2.4097030157E+00 2.4860219758E+00 2.5571627433E+00 2.6229191727E+00 2.6831197227E+00 2.7376267774E+00 2.7863358481E+00 2.8291746641E+00 2.8661021581E+00 2.8971073554E+00 2.9222081724E+00 2.9414501334E+00 2.9549050142E+00 2.9626694185E+00 2.9648632985E+00 2.9616284245E+00 2.9531268145E+00 2.9395391306E+00 2.9210630510E+00 2.8979116253E+00 2.8703116212E+00 2.8385018707E+00 2.8027316230E+00 2.7632589108E+00 2.7203489393E+00 2.6742725012E+00 2.6253044279E+00 2.5737220803E+00 2.5198038854E+00 2.4638279258E+00 + 1.6693830309E+01 1.5900717181E+01 1.5118598949E+01 1.4348709681E+01 1.3592232821E+01 1.2850298395E+01 1.2123980425E+01 1.1414294551E+01 1.0722195871E+01 1.0048577004E+01 9.3942663825E+00 8.7600267768E+00 8.1465540514E+00 7.5544761630E+00 6.9843523943E+00 6.4366728270E+00 5.9118580527E+00 5.4102591202E+00 4.9321577164E+00 4.4777665775E+00 4.0472301259E+00 3.6406253291E+00 3.2579627716E+00 2.8991879372E+00 2.5641826898E+00 2.2527669486E+00 1.9647005458E+00 1.6996852589E+00 1.4573670071E+00 1.2373382014E+00 1.0391402370E+00 8.6226611695E-01 7.0616319485E-01 5.7023602470E-01 4.5384930528E-01 3.5633090644E-01 2.7697496463E-01 2.1504503469E-01 1.6977728488E-01 1.4038372247E-01 1.2605543677E-01 1.2596584714E-01 1.3927394319E-01 1.6512750506E-01 2.0266629160E-01 2.5102518479E-01 3.0933727905E-01 3.7673690456E-01 4.5236257395E-01 5.3535984264E-01 6.2488407308E-01 7.2010309432E-01 8.2019974832E-01 9.2437431553E-01 1.0318468126E+00 1.1418591561E+00 1.2536771858E+00 1.3665925439E+00 1.4799244043E+00 1.5930210499E+00 1.7052612936E+00 1.8160557420E+00 1.9248479003E+00 2.0311151161E+00 2.1343693651E+00 2.2341578761E+00 2.3300635988E+00 2.4217055158E+00 2.5087388009E+00 2.5908548279E+00 2.6677810331E+00 2.7392806354E+00 2.8051522200E+00 2.8652291906E+00 2.9193790956E+00 2.9675028345E+00 3.0095337522E+00 3.0454366269E+00 3.0752065596E+00 3.0988677723E+00 3.1164723234E+00 3.1280987477E+00 3.1338506288E+00 3.1338551133E+00 3.1282613733E+00 3.1172390277E+00 3.1009765285E+00 3.0796795213E+00 3.0535691885E+00 3.0228805825E+00 2.9878609567E+00 2.9487681023E+00 2.9058686988E+00 2.8594366841E+00 2.8097516514E+00 2.7570972811E+00 2.7017598109E+00 2.6440265531E+00 2.5841844616E+00 2.5225187564E+00 + 1.5423116425E+01 1.4661172063E+01 1.3911201989E+01 1.3174374197E+01 1.2451804373E+01 1.1744553302E+01 1.1053624486E+01 1.0379961972E+01 9.7244483975E+00 9.0879032679E+00 8.4710814555E+00 7.8746719346E+00 7.2992967489E+00 6.7455102157E+00 6.2137983657E+00 5.7045786183E+00 5.2181996917E+00 4.7549417443E+00 4.3150167452E+00 3.8985690688E+00 3.5056763105E+00 3.1363503144E+00 2.7905384109E+00 2.4681248524E+00 2.1689324434E+00 1.8927243526E+00 1.6392061007E+00 1.4080277128E+00 1.1987860240E+00 1.0110271299E+00 8.4424896847E-01 6.9790402264E-01 5.7140213113E-01 4.6411339585E-01 3.7537117281E-01 3.0447513415E-01 2.5069438838E-01 2.1327064611E-01 1.9142141842E-01 1.8434323501E-01 1.9121486959E-01 2.1120055989E-01 2.4345321016E-01 2.8711756392E-01 3.4133333544E-01 4.0523828850E-01 4.7797125145E-01 5.5867505820E-01 6.4649940484E-01 7.4060361273E-01 8.4015928873E-01 9.4435287451E-01 1.0523880769E+00 1.1634881725E+00 1.2768981793E+00 1.3918868910E+00 1.5077487667E+00 1.6238056740E+00 1.7394084798E+00 1.8539384867E+00 1.9668087133E+00 2.0774650147E+00 2.1853870454E+00 2.2900890617E+00 2.3911205654E+00 2.4880667900E+00 2.5805490310E+00 2.6682248225E+00 2.7507879641E+00 2.8279684002E+00 2.8995319579E+00 2.9652799466E+00 3.0250486253E+00 3.0787085436E+00 3.1261637615E+00 3.1673509560E+00 3.2022384197E+00 3.2308249606E+00 3.2531387082E+00 3.2692358359E+00 3.2791992066E+00 3.2831369486E+00 3.2811809725E+00 3.2734854340E+00 3.2602251547E+00 3.2415940054E+00 3.2178032632E+00 3.1890799485E+00 3.1556651509E+00 3.1178123521E+00 3.0757857521E+00 3.0298586085E+00 2.9803115930E+00 2.9274311756E+00 2.8715080396E+00 2.8128355366E+00 2.7517081857E+00 2.6884202226E+00 2.6232642053E+00 2.5565296782E+00 + 1.4292142128E+01 1.3561062724E+01 1.2842773765E+01 1.2138377937E+01 1.1448924320E+01 1.0775405990E+01 1.0118757832E+01 9.4798545722E+00 8.8595090271E+00 8.2584705762E+00 7.6774238661E+00 7.1169877445E+00 6.5777144256E+00 6.0600888898E+00 5.5645285158E+00 5.0913829443E+00 4.6409341714E+00 4.2133968692E+00 3.8089189291E+00 3.4275822230E+00 3.0694035784E+00 2.7343359594E+00 2.4222698482E+00 2.1330348175E+00 1.8664012880E+00 1.6220824600E+00 1.3997364096E+00 1.1989683413E+00 1.0193329835E+00 8.6033711881E-01 7.2144223491E-01 6.0206728663E-01 5.0159155545E-01 4.1935759485E-01 3.5467424892E-01 3.0681973144E-01 2.7504475301E-01 2.5857568315E-01 2.5661773510E-01 2.6835816044E-01 2.9296944124E-01 3.2961246753E-01 3.7743968793E-01 4.3559822206E-01 5.0323292297E-01 5.7948937906E-01 6.6351684458E-01 7.5447108888E-01 8.5151715469E-01 9.5383201656E-01 1.0606071308E+00 1.1710508692E+00 1.2843908294E+00 1.3998760146E+00 1.5167788782E+00 1.6343972260E+00 1.7520559735E+00 1.8691087530E+00 1.9849393676E+00 2.0989630907E+00 2.2106278073E+00 2.3194149980E+00 2.4248405641E+00 2.5264554948E+00 2.6238463772E+00 2.7166357506E+00 2.8044823080E+00 2.8870809469E+00 2.9641626737E+00 3.0354943654E+00 3.1008783928E+00 3.1601521113E+00 3.2131872235E+00 3.2598890213E+00 3.3001955121E+00 3.3340764374E+00 3.3615321899E+00 3.3825926368E+00 3.3973158574E+00 3.4057868018E+00 3.4081158794E+00 3.4044374856E+00 3.3949084742E+00 3.3797065838E+00 3.3590288273E+00 3.3330898514E+00 3.3021202756E+00 3.2663650178E+00 3.2260816146E+00 3.1815385443E+00 3.1330135598E+00 3.0807920385E+00 3.0251653574E+00 2.9664292976E+00 2.9048824878E+00 2.8408248895E+00 2.7745563325E+00 2.7063751040E+00 2.6365765968E+00 2.5654520209E+00 + 1.3282124706E+01 1.2581574033E+01 1.1894480177E+01 1.1221881311E+01 1.0564761061E+01 9.9240462998E+00 9.3006051546E+00 8.6952452325E+00 8.1087120641E+00 7.5416877719E+00 6.9947899648E+00 6.4685708629E+00 5.9635166499E+00 5.4800470564E+00 5.0185151716E+00 4.5792074821E+00 4.1623441346E+00 3.7680794201E+00 3.3965024745E+00 3.0476381904E+00 2.7214483346E+00 2.4178328646E+00 2.1366314365E+00 1.8776250965E+00 1.6405381466E+00 1.4250401766E+00 1.2307482514E+00 1.0572292434E+00 9.0400229936E-01 7.7054143136E-01 6.5627821852E-01 5.6060460918E-01 4.8287581070E-01 4.2241325487E-01 3.7850762622E-01 3.5042194101E-01 3.3739466406E-01 3.3864285121E-01 3.5336530456E-01 3.8074572854E-01 4.1995587442E-01 4.7015866139E-01 5.3051126269E-01 6.0016814524E-01 6.7828405204E-01 7.6401691667E-01 8.5653069983E-01 9.5499813828E-01 1.0586033972E+00 1.1665446173E+00 1.2780363486E+00 1.3923118645E+00 1.5086253473E+00 1.6262539418E+00 1.7444996695E+00 1.8626911996E+00 1.9801854728E+00 2.0963691738E+00 2.2106600513E+00 2.3225080821E+00 2.4313964789E+00 2.5368425408E+00 2.6383983477E+00 2.7356512972E+00 2.8282244886E+00 2.9157769528E+00 2.9980037334E+00 3.0746358206E+00 3.1454399434E+00 3.2102182223E+00 3.2688076900E+00 3.3210796828E+00 3.3669391114E+00 3.4063236148E+00 3.4392026053E+00 3.4655762111E+00 3.4854741243E+00 3.4989543608E+00 3.5061019410E+00 3.5070274976E+00 3.5018658208E+00 3.4907743466E+00 3.4739315981E+00 3.4515355873E+00 3.4238021855E+00 3.3909634709E+00 3.3532660606E+00 3.3109694361E+00 3.2643442687E+00 3.2136707532E+00 3.1592369567E+00 3.1013371903E+00 3.0402704092E+00 2.9763386487E+00 2.9098455017E+00 2.8410946435E+00 2.7703884094E+00 2.6980264300E+00 2.6243043284E+00 2.5495124837E+00 + 1.2376036847E+01 1.1705642094E+01 1.1049233869E+01 1.0407786669E+01 9.7822198330E+00 9.1733955260E+00 8.5821169374E+00 8.0091266941E+00 7.4551054928E+00 6.9206709541E+00 6.4063767021E+00 5.9127116676E+00 5.4400996194E+00 4.9888989188E+00 4.5594024992E+00 4.1518380669E+00 3.7663685199E+00 3.4030925814E+00 3.0620456425E+00 2.7432008096E+00 2.4464701482E+00 2.1717061184E+00 1.9187031928E+00 1.6871996491E+00 1.4768795276E+00 1.2873747460E+00 1.1182673586E+00 9.6909195260E-01 8.3933816765E-01 7.2845332951E-01 6.3584518511E-01 5.6088472758E-01 5.0290909897E-01 4.6122455869E-01 4.3510950512E-01 4.2381753816E-01 4.2658055029E-01 4.4261183391E-01 4.7110919267E-01 5.1125804488E-01 5.6223450702E-01 6.2320844592E-01 6.9334648830E-01 7.7181497672E-01 8.5778286145E-01 9.5042451819E-01 1.0489224820E+00 1.1524700881E+00 1.2602740117E+00 1.3715566974E+00 1.4855586727E+00 1.6015407367E+00 1.7187860197E+00 1.8366019067E+00 1.9543218207E+00 2.0713068620E+00 2.1869472987E+00 2.3006639066E+00 2.4119091566E+00 2.5201682475E+00 2.6249599831E+00 2.7258374951E+00 2.8223888108E+00 2.9142372678E+00 3.0010417771E+00 3.0824969372E+00 3.1583330025E+00 3.2283157095E+00 3.2922459652E+00 3.3499594016E+00 3.4013258029E+00 3.4462484100E+00 3.4846631079E+00 3.5165375043E+00 3.5418699045E+00 3.5606881898E+00 3.5730486076E+00 3.5790344804E+00 3.5787548412E+00 3.5723430030E+00 3.5599550715E+00 3.5417684077E+00 3.5179800501E+00 3.4888051021E+00 3.4544750961E+00 3.4152363391E+00 3.3713482494E+00 3.3230816919E+00 3.2707173187E+00 3.2145439233E+00 3.1548568150E+00 3.0919562202E+00 3.0261457170E+00 2.9577307096E+00 2.8870169481E+00 2.8143090992E+00 2.7399093723E+00 2.6641162063E+00 2.5872230220E+00 2.5095170413E+00 + 1.1558612752E+01 1.0917961275E+01 1.0291702093E+01 9.6807469115E+00 9.0859519756E+00 8.5081162383E+00 7.9479797454E+00 7.4062222321E+00 6.8834619362E+00 6.3802546322E+00 5.8970928851E+00 5.4344055265E+00 4.9925573516E+00 4.5718490360E+00 4.1725172717E+00 3.7947351168E+00 3.4386125585E+00 3.1041972816E+00 2.7914756404E+00 2.5003738255E+00 2.2307592205E+00 1.9824419400E+00 1.7551765424E+00 1.5486639067E+00 1.3625532668E+00 1.1964443908E+00 1.0498898979E+00 9.2239769958E-01 8.1343355648E-01 7.2242373820E-01 6.4875777494E-01 5.9179128917E-01 5.5084889540E-01 5.2522715585E-01 5.1419758000E-01 5.1700965577E-01 5.3289390030E-01 5.6106491820E-01 6.0072445553E-01 6.5106443762E-01 7.1126997944E-01 7.8052235732E-01 8.5800193104E-01 9.4289100597E-01 1.0343766251E+00 1.1316532816E+00 1.2339255418E+00 1.3404105721E+00 1.4503405586E+00 1.5629650153E+00 1.6775529717E+00 1.7933950335E+00 1.9098053131E+00 2.0261232216E+00 2.1417151207E+00 2.2559758294E+00 2.3683299826E+00 2.4782332404E+00 2.5851733447E+00 2.6886710241E+00 2.7882807450E+00 2.8835913107E+00 2.9742263088E+00 3.0598444088E+00 3.1401395120E+00 3.2148407565E+00 3.2837123818E+00 3.3465534546E+00 3.4031974629E+00 3.4535117821E+00 3.4973970179E+00 3.5347862335E+00 3.5656440657E+00 3.5899657379E+00 3.6077759751E+00 3.6191278305E+00 3.6241014286E+00 3.6228026338E+00 3.6153616526E+00 3.6019315759E+00 3.5826868705E+00 3.5578218272E+00 3.5275489738E+00 3.4920974613E+00 3.4517114301E+00 3.4066483648E+00 3.3571774459E+00 3.3035779040E+00 3.2461373855E+00 3.1851503366E+00 3.1209164108E+00 3.0537389090E+00 2.9839232561E+00 2.9117755207E+00 2.8376009843E+00 2.7617027636E+00 2.6843804915E+00 2.6059290609E+00 2.5266374355E+00 2.4467875303E+00 + 1.0816326255E+01 1.0204963261E+01 9.6082866086E+00 9.0271461615E+00 8.4623362970E+00 7.9145942629E+00 7.3845987410E+00 6.8729686224E+00 6.3802619962E+00 5.9069753554E+00 5.4535430180E+00 5.0203367662E+00 4.6076657002E+00 4.2157763077E+00 3.8448527437E+00 3.4950173197E+00 3.1663311964E+00 2.8587952768E+00 2.5723512919E+00 2.3068830750E+00 2.0622180160E+00 1.8381286880E+00 1.6343346399E+00 1.4505043430E+00 1.2862572855E+00 1.1411662032E+00 1.0147594357E+00 9.0652339996E-01 8.1590516706E-01 7.4231513357E-01 6.8512977441E-01 6.4369446625E-01 6.1732636934E-01 6.0531735616E-01 6.0693697465E-01 6.2143543437E-01 6.4804660364E-01 6.8599100600E-01 7.3447880445E-01 7.9271276214E-01 8.5989116840E-01 9.3521071954E-01 1.0178693438E+00 1.1070689605E+00 1.2020181642E+00 1.3019348236E+00 1.4060485883E+00 1.5136032939E+00 1.6238592581E+00 1.7360954616E+00 1.8496116068E+00 1.9637300484E+00 2.0777975916E+00 2.1911871521E+00 2.3032992761E+00 2.4135635147E+00 2.5214396524E+00 2.6264187863E+00 2.7280242566E+00 2.8258124253E+00 2.9193733065E+00 3.0083310462E+00 3.0923442546E+00 3.1711061931E+00 3.2443448174E+00 3.3118226814E+00 3.3733367038E+00 3.4287178037E+00 3.4778304086E+00 3.5205718398E+00 3.5568715824E+00 3.5866904434E+00 3.6100196071E+00 3.6268795921E+00 3.6373191181E+00 3.6414138895E+00 3.6392653029E+00 3.6309990865E+00 3.6167638790E+00 3.5967297552E+00 3.5710867073E+00 3.5400430888E+00 3.5038240294E+00 3.4626698280E+00 3.4168343329E+00 3.3665833150E+00 3.3121928428E+00 3.2539476658E+00 3.1921396137E+00 3.1270660174E+00 3.0590281593E+00 2.9883297580E+00 2.9152754949E+00 2.8401695860E+00 2.7633144057E+00 2.6850091672E+00 2.6055486629E+00 2.5252220704E+00 2.4443118256E+00 2.3630925683E+00 + 1.0137343858E+01 9.5547709991E+00 8.9870784861E+00 8.4350553525E+00 7.8994353817E+00 7.3808956417E+00 6.8800552245E+00 6.3974741945E+00 5.9336527470E+00 5.4890305781E+00 5.0639864664E+00 4.6588380660E+00 4.2738419092E+00 3.9091936173E+00 3.5650283154E+00 3.2414212486E+00 2.9383885949E+00 2.6558884684E+00 2.3938221088E+00 2.1520352487E+00 1.9303196526E+00 1.7284148191E+00 1.5460098387E+00 1.3827453972E+00 1.2382159157E+00 1.1119718175E+00 1.0035219115E+00 9.1233588165E-01 8.3784687070E-01 7.7945414839E-01 7.3652585175E-01 7.0840178627E-01 6.9439627648E-01 6.9380105414E-01 7.0588817239E-01 7.2991293430E-01 7.6511682442E-01 8.1073043174E-01 8.6597635318E-01 9.3007206656E-01 1.0022327624E+00 1.0816741245E+00 1.1676150490E+00 1.2592802923E+00 1.3559030401E+00 1.4567273868E+00 1.5610107187E+00 1.6680259929E+00 1.7770639055E+00 1.8874349415E+00 1.9984713016E+00 2.1095287000E+00 2.2199880299E+00 2.3292568903E+00 2.4367709740E+00 2.5419953110E+00 2.6444253681E+00 2.7435880009E+00 2.8390422597E+00 2.9303800479E+00 3.0172266334E+00 3.0992410151E+00 3.1761161462E+00 3.2475790155E+00 3.3133905907E+00 3.3733456279E+00 3.4272723488E+00 3.4750319929E+00 3.5165182477E+00 3.5516565633E+00 3.5804033568E+00 3.6027451120E+00 3.6186973826E+00 3.6283037034E+00 3.6316344182E+00 3.6287854309E+00 3.6198768870E+00 3.6050517939E+00 3.5844745863E+00 3.5583296454E+00 3.5268197798E+00 3.4901646745E+00 3.4485993173E+00 3.4023724088E+00 3.3517447649E+00 3.2969877172E+00 3.2383815207E+00 3.1762137742E+00 3.1107778603E+00 3.0423714125E+00 2.9712948137E+00 2.8978497343E+00 2.8223377133E+00 2.7450587888E+00 2.6663101826E+00 2.5863850427E+00 2.5055712485E+00 2.4241502821E+00 2.3423961684E+00 2.2605744877E+00 + 9.5114558031E+00 8.9571306695E+00 8.4177909080E+00 7.8941658144E+00 7.3869299027E+00 6.8967016140E+00 6.4240422281E+00 5.9694549789E+00 5.5333843766E+00 5.1162157355E+00 4.7182749078E+00 4.3398282236E+00 3.9810826323E+00 3.6421860465E+00 3.3232278813E+00 3.0242397879E+00 2.7451965743E+00 2.4860173092E+00 2.2465666021E+00 2.0266560520E+00 1.8260458593E+00 1.6444465902E+00 1.4815210875E+00 1.3368865169E+00 1.2101165403E+00 1.1007436059E+00 1.0082613446E+00 9.3212706266E-01 8.7176431975E-01 8.2656558049E-01 7.9589492950E-01 7.7909083799E-01 7.7546897051E-01 7.8432502084E-01 8.0493756532E-01 8.3657092259E-01 8.7847800858E-01 9.2990317567E-01 9.9008502555E-01 1.0582591850E+00 1.1336610349E+00 1.2155283817E+00 1.3031040637E+00 1.3956384808E+00 1.4923920413E+00 1.5926375165E+00 1.6956622955E+00 1.8007705339E+00 1.9072851896E+00 2.0145499391E+00 2.1219309707E+00 2.2288186477E+00 2.3346290401E+00 2.4388053184E+00 2.5408190101E+00 2.6401711137E+00 2.7363930705E+00 2.8290475928E+00 2.9177293482E+00 3.0020655007E+00 3.0817161090E+00 3.1563743839E+00 3.2257668074E+00 3.2896531153E+00 3.3478261473E+00 3.4001115675E+00 3.4463674613E+00 3.4864838104E+00 3.5203818543E+00 3.5480133417E+00 3.5693596780E+00 3.5844309756E+00 3.5932650135E+00 3.5959261124E+00 3.5925039323E+00 3.5831122007E+00 3.5678873779E+00 3.5469872663E+00 3.5205895728E+00 3.4888904308E+00 3.4521028888E+00 3.4104553745E+00 3.3641901412E+00 3.3135617034E+00 3.2588352698E+00 3.2002851795E+00 3.1381933500E+00 3.0728477416E+00 3.0045408466E+00 2.9335682079E+00 2.8602269740E+00 2.7848144942E+00 2.7076269623E+00 2.6289581096E+00 2.5490979553E+00 2.4683316159E+00 2.3869381791E+00 2.3051896435E+00 2.2233499293E+00 2.1416739604E+00 + 8.9299884570E+00 8.4033249115E+00 7.8916732064E+00 7.3957040738E+00 6.9160341411E+00 6.4532248104E+00 6.0077813371E+00 5.5801521079E+00 5.1707281196E+00 4.7798426586E+00 4.4077711802E+00 4.0547313859E+00 3.7208834976E+00 3.4063307234E+00 3.1111199135E+00 2.8352424004E+00 2.5786350181E+00 2.3411812950E+00 2.1227128140E+00 1.9230107322E+00 1.7418074526E+00 1.5787884404E+00 1.4335941740E+00 1.3058222227E+00 1.1950294410E+00 1.1007342696E+00 1.0224191331E+00 9.5953292402E-01 9.1149356212E-01 8.7769061868E-01 8.5748799425E-01 8.5022663913E-01 8.5522730545E-01 8.7179331980E-01 8.9921336537E-01 9.3676426278E-01 9.8371373885E-01 1.0393231728E+00 1.1028503097E+00 1.1735519309E+00 1.2506864722E+00 1.3335165801E+00 1.4213115974E+00 1.5133499696E+00 1.6089215642E+00 1.7073298951E+00 1.8078942457E+00 1.9099516835E+00 2.0128589605E+00 2.1159942946E+00 2.2187590265E+00 2.3205791487E+00 2.4209067019E+00 2.5192210377E+00 2.6150299433E+00 2.7078706285E+00 2.7973105721E+00 2.8829482285E+00 2.9644135949E+00 3.0413686379E+00 3.1135075840E+00 3.1805570725E+00 3.2422761762E+00 3.2984562911E+00 3.3489208990E+00 3.3935252074E+00 3.4321556709E+00 3.4647293983E+00 3.4911934521E+00 3.5115240447E+00 3.5257256376E+00 3.5338299501E+00 3.5358948843E+00 3.5320033717E+00 3.5222621506E+00 3.5068004793E+00 3.4857687932E+00 3.4593373135E+00 3.4276946140E+00 3.3910461541E+00 3.3496127850E+00 3.3036292361E+00 3.2533425894E+00 3.1990107490E+00 3.1409009123E+00 3.0792880489E+00 3.0144533962E+00 2.9466829751E+00 2.8762661341E+00 2.8034941260E+00 2.7286587244E+00 2.6520508831E+00 2.5739594449E+00 2.4946699042E+00 2.4144632256E+00 2.3336147251E+00 2.2523930148E+00 2.1710590158E+00 2.0898650399E+00 2.0090539448E+00 + 8.3857013313E+00 7.8860706404E+00 7.4014094422E+00 6.9323311655E+00 6.4793959966E+00 6.0431099268E+00 5.6239239922E+00 5.2222337091E+00 4.8383787037E+00 4.4726425363E+00 4.1252527190E+00 3.7963809236E+00 3.4861433787E+00 3.1946014506E+00 2.9217624061E+00 2.6675803499E+00 2.4319573324E+00 2.2147446225E+00 2.0157441367E+00 1.8347100189E+00 1.6713503625E+00 1.5253290661E+00 1.3962678151E+00 1.2837481793E+00 1.1873138167E+00 1.1064727747E+00 1.0406998780E+00 9.8943919307E-01 9.5210655810E-01 9.2809216892E-01 9.1676320928E-01 9.1746651507E-01 9.2953126169E-01 9.5227166387E-01 9.8498967734E-01 1.0269776919E+00 1.0775212054E+00 1.1359014690E+00 1.2013980938E+00 1.2732916086E+00 1.3508659606E+00 1.4334109505E+00 1.5202245920E+00 1.6106153899E+00 1.7039045271E+00 1.7994279559E+00 1.8965383852E+00 1.9946071588E+00 2.0930260189E+00 2.1912087503E+00 2.2885927012E+00 2.3846401763E+00 2.4788397005E+00 2.5707071491E+00 2.6597867443E+00 2.7456519158E+00 2.8279060252E+00 2.9061829542E+00 2.9801475574E+00 3.0494959805E+00 3.1139558453E+00 3.1732863051E+00 3.2272779713E+00 3.2757527165E+00 3.3185633560E+00 3.3555932130E+00 3.3867555720E+00 3.4119930250E+00 3.4312767160E+00 3.4446054898E+00 3.4520049506E+00 3.4535264372E+00 3.4492459209E+00 3.4392628323E+00 3.4236988259E+00 3.4026964864E+00 3.3764179868E+00 3.3450437030E+00 3.3087707941E+00 3.2678117539E+00 3.2223929419E+00 3.1727531001E+00 3.1191418630E+00 3.0618182674E+00 3.0010492687E+00 2.9371082702E+00 2.8702736712E+00 2.8008274410E+00 2.7290537232E+00 2.6552374762E+00 2.5796631560E+00 2.5026134441E+00 2.4243680271E+00 2.3452024307E+00 2.2653869120E+00 2.1851854145E+00 2.1048545872E+00 2.0246428716E+00 1.9447896586E+00 1.8655245163E+00 + 7.8726720816E+00 7.3994047751E+00 6.9410048428E+00 6.4980297575E+00 6.0709847775E+00 5.6603221553E+00 5.2664405353E+00 4.8896845404E+00 4.5303445463E+00 4.1886566448E+00 3.8648027920E+00 3.5589111398E+00 3.2710565483E+00 3.0012612734E+00 2.7494958276E+00 2.5156800061E+00 2.2996840747E+00 2.1013301115E+00 1.9203934966E+00 1.7566045424E+00 1.6096502547E+00 1.4791762198E+00 1.3647886050E+00 1.2660562660E+00 1.1825129514E+00 1.1136595928E+00 1.0589666735E+00 1.0178766628E+00 9.8980650777E-01 9.7415017076E-01 9.7028120300E-01 9.7755534348E-01 9.9531313287E-01 1.0228825321E+00 1.0595815353E+00 1.1047207676E+00 1.1576060569E+00 1.2175409716E+00 1.2838293128E+00 1.3557775548E+00 1.4326972227E+00 1.5139072002E+00 1.5987359599E+00 1.6865237076E+00 1.7766244355E+00 1.8684078760E+00 1.9612613513E+00 2.0545915135E+00 2.1478259702E+00 2.2404147905E+00 2.3318318897E+00 2.4215762876E+00 2.5091732392E+00 2.5941752348E+00 2.6761628703E+00 2.7547455834E+00 2.8295622595E+00 2.9002817046E+00 2.9666029882E+00 3.0282556561E+00 3.0849998166E+00 3.1366261016E+00 3.1829555062E+00 3.2238391096E+00 3.2591576823E+00 3.2888211831E+00 3.3127681512E+00 3.3309649975E+00 3.3434052020E+00 3.3501084224E+00 3.3511195188E+00 3.3465075032E+00 3.3363644175E+00 3.3208041489E+00 3.2999611877E+00 3.2739893360E+00 3.2430603726E+00 3.2073626822E+00 3.1670998554E+00 3.1224892668E+00 3.0737606371E+00 3.0211545874E+00 2.9649211913E+00 2.9053185315E+00 2.8426112675E+00 2.7770692203E+00 2.7089659802E+00 2.6385775426E+00 2.5661809788E+00 2.4920531443E+00 2.4164694323E+00 2.3397025748E+00 2.2620214951E+00 2.1836902180E+00 2.1049668381E+00 2.0261025508E+00 1.9473407483E+00 1.8689161829E+00 1.7910541995E+00 1.7139700383E+00 + 7.3861727604E+00 6.9385611468E+00 6.5056633544E+00 6.0879823378E+00 5.6859700076E+00 5.3000265978E+00 4.9305002146E+00 4.5776865690E+00 4.2418288905E+00 3.9231180219E+00 3.6216926916E+00 3.3376399618E+00 3.0709958481E+00 2.8217461063E+00 2.5898271830E+00 2.3751273219E+00 2.1774878226E+00 1.9967044436E+00 1.8325289431E+00 1.6846707493E+00 1.5527987542E+00 1.4365432198E+00 1.3354977902E+00 1.2492215993E+00 1.1772414657E+00 1.1190541639E+00 1.0741287637E+00 1.0419090267E+00 1.0218158497E+00 1.0132497466E+00 1.0155933566E+00 1.0282139696E+00 1.0504660593E+00 1.0816938132E+00 1.1212336498E+00 1.1684167142E+00 1.2225713420E+00 1.2830254831E+00 1.3491090750E+00 1.4201563602E+00 1.4955081365E+00 1.5745139339E+00 1.6565341117E+00 1.7409418670E+00 1.8271251500E+00 1.9144884797E+00 2.0024546539E+00 2.0904663506E+00 2.1779876141E+00 2.2645052245E+00 2.3495299455E+00 2.4325976496E+00 2.5132703171E+00 2.5911369088E+00 2.6658141109E+00 2.7369469519E+00 2.8042092915E+00 2.8673041830E+00 2.9259641098E+00 2.9799510981E+00 3.0290567082E+00 3.0731019072E+00 3.1119368262E+00 3.1454404060E+00 3.1735199352E+00 3.1961104852E+00 3.2131742472E+00 3.2246997761E+00 3.2307011467E+00 3.2312170289E+00 3.2263096859E+00 3.2160639047E+00 3.2005858613E+00 3.1800019312E+00 3.1544574486E+00 3.1241154226E+00 3.0891552176E+00 3.0497712024E+00 3.0061713776E+00 2.9585759857E+00 2.9072161115E+00 2.8523322796E+00 2.7941730544E+00 2.7329936495E+00 2.6690545517E+00 2.6026201668E+00 2.5339574913E+00 2.4633348154E+00 2.3910204636E+00 2.3172815757E+00 2.2423829339E+00 2.1665858403E+00 2.0901470465E+00 2.0133177410E+00 1.9363425966E+00 1.8594588793E+00 1.7828956228E+00 1.7068728693E+00 1.6316009783E+00 1.5572800049E+00 + 6.9225404812E+00 6.4998417362E+00 6.0916594536E+00 5.6984435956E+00 5.3205943755E+00 4.9584617774E+00 4.6123452517E+00 4.2824935880E+00 3.9691049617E+00 3.6723271544E+00 3.3922579433E+00 3.1289456588E+00 2.8823899043E+00 2.6525424348E+00 2.4393081886E+00 2.2425464667E+00 2.0620722544E+00 1.8976576763E+00 1.7490335805E+00 1.6158912413E+00 1.4978841751E+00 1.3946300592E+00 1.3057127458E+00 1.2306843623E+00 1.1690674877E+00 1.1203573972E+00 1.0840243640E+00 1.0595160098E+00 1.0462596930E+00 1.0436649267E+00 1.0511258146E+00 1.0680234962E+00 1.0937285926E+00 1.1276036409E+00 1.1690055107E+00 1.2172877916E+00 1.2718031440E+00 1.3319056039E+00 1.3969528341E+00 1.4663083135E+00 1.5393434570E+00 1.6154396591E+00 1.6939902543E+00 1.7744023884E+00 1.8560987944E+00 1.9385194686E+00 2.0211232407E+00 2.1033892357E+00 2.1848182221E+00 2.2649338439E+00 2.3432837345E+00 2.4194405090E+00 2.4930026345E+00 2.5635951771E+00 2.6308704257E+00 2.6945083909E+00 2.7542171824E+00 2.8097332638E+00 2.8608215875E+00 2.9072756117E+00 2.9489172021E+00 2.9855964209E+00 3.0171912077E+00 3.0436069551E+00 3.0647759839E+00 3.0806569221E+00 3.0912339930E+00 3.0965162175E+00 3.0965365365E+00 3.0913508583E+00 3.0810370374E+00 3.0656937918E+00 3.0454395629E+00 3.0204113265E+00 2.9907633606E+00 2.9566659755E+00 2.9183042150E+00 2.8758765327E+00 2.8295934517E+00 2.7796762133E+00 2.7263554211E+00 2.6698696866E+00 2.6104642830E+00 2.5483898115E+00 2.4839008873E+00 2.4172548502E+00 2.3487105041E+00 2.2785268921E+00 2.2069621093E+00 2.1342721602E+00 2.0607098632E+00 1.9865238053E+00 1.9119573524E+00 1.8372477160E+00 1.7626250805E+00 1.6883117918E+00 1.6145216117E+00 1.5414590357E+00 1.4693186802E+00 1.3982847351E+00 + 6.4790454793E+00 6.0804852219E+00 5.6962071902E+00 5.3266099671E+00 4.9720437864E+00 4.6328102002E+00 4.3091619160E+00 4.0013028038E+00 3.7093880692E+00 3.4335245930E+00 3.1737714317E+00 2.9301404768E+00 2.7025972682E+00 2.4910619564E+00 2.2954104093E+00 2.1154754561E+00 1.9510482636E+00 1.8018798368E+00 1.6676826371E+00 1.5481323106E+00 1.4428695179E+00 1.3515018578E+00 1.2736058757E+00 1.2087291480E+00 1.1563924337E+00 1.1160918842E+00 1.0873013007E+00 1.0694744315E+00 1.0620472991E+00 1.0644405465E+00 1.0760617955E+00 1.0963080063E+00 1.1245678286E+00 1.1602239376E+00 1.2026553428E+00 1.2512396642E+00 1.3053553655E+00 1.3643839363E+00 1.4277120176E+00 1.4947334602E+00 1.5648513123E+00 1.6374797268E+00 1.7120457845E+00 1.7879912260E+00 1.8647740885E+00 1.9418702408E+00 2.0187748151E+00 2.0950035290E+00 2.1700938968E+00 2.2436063262E+00 2.3151250990E+00 2.3842592339E+00 2.4506432297E+00 2.5139376908E+00 2.5738298310E+00 2.6300338610E+00 2.6822912559E+00 2.7303709076E+00 2.7740691627E+00 2.8132097486E+00 2.8476435899E+00 2.8772485204E+00 2.9019288918E+00 2.9216150855E+00 2.9362629302E+00 2.9458530311E+00 2.9503900151E+00 2.9499016978E+00 2.9444381771E+00 2.9340708602E+00 2.9188914283E+00 2.8990107470E+00 2.8745577271E+00 2.8456781422E+00 2.8125334100E+00 2.7752993436E+00 2.7341648779E+00 2.6893307789E+00 2.6410083417E+00 2.5894180820E+00 2.5347884290E+00 2.4773544246E+00 2.4173564342E+00 2.3550388753E+00 2.2906489689E+00 2.2244355184E+00 2.1566477215E+00 2.0875340183E+00 2.0173409820E+00 1.9463122530E+00 1.8746875234E+00 1.8027015727E+00 1.7305833580E+00 1.6585551627E+00 1.5868318046E+00 1.5156199055E+00 1.4451172239E+00 1.3755120532E+00 1.3069826840E+00 1.2396969328E+00 + 6.0537593392E+00 5.6785356061E+00 5.3173292274E+00 4.9704891021E+00 4.6383172687E+00 4.3210687139E+00 4.0189513456E+00 3.7321261283E+00 3.4607073769E+00 3.2047632088E+00 2.9643161487E+00 2.7393438834E+00 2.5297801611E+00 2.3355158309E+00 2.1564000167E+00 1.9922414189E+00 1.8428097383E+00 1.7078372141E+00 1.5870202699E+00 1.4800212594E+00 1.3864703035E+00 1.3059672116E+00 1.2380834768E+00 1.1823643387E+00 1.1383309027E+00 1.1054823084E+00 1.0832979369E+00 1.0712396487E+00 1.0687540426E+00 1.0752747272E+00 1.0902245945E+00 1.1130180890E+00 1.1430634610E+00 1.1797649981E+00 1.2225252241E+00 1.2707470591E+00 1.3238359323E+00 1.3812018398E+00 1.4422613402E+00 1.5064394824E+00 1.5731716575E+00 1.6419053696E+00 1.7121019208E+00 1.7832380041E+00 1.8548071996E+00 1.9263213711E+00 1.9973119582E+00 2.0673311616E+00 2.1359530184E+00 2.2027743654E+00 2.2674156892E+00 2.3295218622E+00 2.3887627625E+00 2.4448337793E+00 2.4974562037E+00 2.5463775050E+00 2.5913714955E+00 2.6322383840E+00 2.6688047210E+00 2.7009232392E+00 2.7284725901E+00 2.7513569836E+00 2.7695057302E+00 2.7828726947E+00 2.7914356619E+00 2.7951956211E+00 2.7941759749E+00 2.7884216760E+00 2.7779982985E+00 2.7629910493E+00 2.7435037256E+00 2.7196576234E+00 2.6915904042E+00 2.6594549257E+00 2.6234180421E+00 2.5836593802E+00 2.5403700979E+00 2.4937516306E+00 2.4440144317E+00 2.3913767122E+00 2.3360631867E+00 2.2783038294E+00 2.2183326465E+00 2.1563864704E+00 2.0927037796E+00 2.0275235493E+00 1.9610841377E+00 1.8936222113E+00 1.8253717129E+00 1.7565628772E+00 1.6874212955E+00 1.6181670330E+00 1.5490138015E+00 1.4801681904E+00 1.4118289553E+00 1.3441863693E+00 1.2774216349E+00 1.2117063603E+00 1.1472020982E+00 1.0840599487E+00 + 5.6454259027E+00 5.2927134312E+00 4.9537283871E+00 4.6287717609E+00 4.3180992418E+00 4.0219211638E+00 3.7404026084E+00 3.4736636617E+00 3.2217798232E+00 2.9847825637E+00 2.7626600281E+00 2.5553578784E+00 2.3627802729E+00 2.1847909759E+00 2.0212145915E+00 1.8718379164E+00 1.7364114043E+00 1.6146507349E+00 1.5062384805E+00 1.4108258624E+00 1.3280345888E+00 1.2574587666E+00 1.1986668784E+00 1.1512038163E+00 1.1145929634E+00 1.0883383149E+00 1.0719266302E+00 1.0648296055E+00 1.0665060609E+00 1.0764041302E+00 1.0939634478E+00 1.1186173218E+00 1.1497948867E+00 1.1869232263E+00 1.2294294601E+00 1.2767427853E+00 1.3282964660E+00 1.3835297650E+00 1.4418898094E+00 1.5028333844E+00 1.5658286508E+00 1.6303567783E+00 1.6959134926E+00 1.7620105291E+00 1.8281769908E+00 1.8939606063E+00 1.9589288851E+00 2.0226701670E+00 2.0847945644E+00 2.1449347947E+00 2.2027469034E+00 2.2579108751E+00 2.3101311348E+00 2.3591369371E+00 2.4046826471E+00 2.4465479112E+00 2.4845377225E+00 2.5184823802E+00 2.5482373484E+00 2.5736830140E+00 2.5947243507E+00 2.6112904896E+00 2.6233342021E+00 2.6308312995E+00 2.6337799526E+00 2.6321999383E+00 2.6261318158E+00 2.6156360394E+00 2.6007920132E+00 2.5816970927E+00 2.5584655388E+00 2.5312274314E+00 2.5001275465E+00 2.4653242050E+00 2.4269880961E+00 2.3853010844E+00 2.3404550038E+00 2.2926504457E+00 2.2420955459E+00 2.1890047769E+00 2.1335977492E+00 2.0760980289E+00 2.0167319745E+00 1.9557275992E+00 1.8933134620E+00 1.8297175927E+00 1.7651664548E+00 1.6998839485E+00 1.6340904601E+00 1.5680019578E+00 1.5018291387E+00 1.4357766287E+00 1.3700422383E+00 1.3048162743E+00 1.2402809115E+00 1.1766096232E+00 1.1139666734E+00 1.0525066689E+00 9.9237417453E-01 9.3370338880E-01 + 5.2533370908E+00 4.9222918193E+00 4.6046639368E+00 4.3007083728E+00 4.0106363720E+00 3.7346155715E+00 3.4727702268E+00 3.2251815852E+00 2.9918884027E+00 2.7728876018E+00 2.5681350651E+00 2.3775465605E+00 2.2009987934E+00 2.0383305797E+00 1.8893441336E+00 1.7538064640E+00 1.6314508738E+00 1.5219785523E+00 1.4250602572E+00 1.3403380746E+00 1.2674272518E+00 1.2059180945E+00 1.1553779185E+00 1.1153530500E+00 1.0853708636E+00 1.0649418518E+00 1.0535617160E+00 1.0507134704E+00 1.0558695521E+00 1.0684939271E+00 1.0880441849E+00 1.1139736141E+00 1.1457332506E+00 1.1827738902E+00 1.2245480605E+00 1.2705119416E+00 1.3201272330E+00 1.3728629561E+00 1.4281971898E+00 1.4856187311E+00 1.5446286770E+00 1.6047419223E+00 1.6654885679E+00 1.7264152384E+00 1.7870863019E+00 1.8470849925E+00 1.9060144300E+00 1.9634985369E+00 2.0191828502E+00 2.0727352262E+00 2.1238464395E+00 2.1722306743E+00 2.2176259092E+00 2.2597941960E+00 2.2985218336E+00 2.3336194395E+00 2.3649219192E+00 2.3922883376E+00 2.4156016949E+00 2.4347686094E+00 2.4497189113E+00 2.4604051521E+00 2.4668020320E+00 2.4689057512E+00 2.4667332896E+00 2.4603216191E+00 2.4497268539E+00 2.4350233446E+00 2.4163027206E+00 2.3936728873E+00 2.3672569820E+00 2.3371922971E+00 2.3036291724E+00 2.2667298660E+00 2.2266674062E+00 2.1836244327E+00 2.1377920305E+00 2.0893685634E+00 2.0385585112E+00 1.9855713168E+00 1.9306202477E+00 1.8739212762E+00 1.8156919841E+00 1.7561504951E+00 1.6955144393E+00 1.6339999542E+00 1.5718207250E+00 1.5091870685E+00 1.4463050621E+00 1.3833757225E+00 1.3205942346E+00 1.2581492347E+00 1.1962221479E+00 1.1349865825E+00 1.0746077817E+00 1.0152421347E+00 9.5703674574E-01 9.0012906351E-01 8.4464656935E-01 7.9070652454E-01 + 4.8772155634E+00 4.5669792625E+00 4.2698345419E+00 3.9859921839E+00 3.7156209461E+00 3.4588477629E+00 3.2157580893E+00 2.9863963837E+00 2.7707667272E+00 2.5688335738E+00 2.3805226294E+00 2.2057218522E+00 2.0442825716E+00 1.8960207176E+00 1.7607181565E+00 1.6381241249E+00 1.5279567568E+00 1.4299046947E+00 1.3436287792E+00 1.2687638085E+00 1.2049203599E+00 1.1516866667E+00 1.1086305400E+00 1.0753013302E+00 1.0512319176E+00 1.0359407249E+00 1.0289337437E+00 1.0297065664E+00 1.0377464153E+00 1.0525341613E+00 1.0735463248E+00 1.1002570507E+00 1.1321400496E+00 1.1686704996E+00 1.2093269012E+00 1.2535928774E+00 1.3009589156E+00 1.3509240429E+00 1.4029974305E+00 1.4566999220E+00 1.5115654812E+00 1.5671425542E+00 1.6229953428E+00 1.6787049856E+00 1.7338706442E+00 1.7881104906E+00 1.8410625961E+00 1.8923857184E+00 1.9417599855E+00 1.9888874782E+00 2.0334927080E+00 2.0753229927E+00 2.1141487298E+00 2.1497635687E+00 2.1819844836E+00 2.2106517484E+00 2.2356288172E+00 2.2568021119E+00 2.2740807205E+00 2.2873960094E+00 2.2967011537E+00 2.3019705893E+00 2.3031993907E+00 2.3004025797E+00 2.2936143693E+00 2.2828873480E+00 2.2682916089E+00 2.2499138297E+00 2.2278563084E+00 2.2022359599E+00 2.1731832801E+00 2.1408412807E+00 2.1053644033E+00 2.0669174149E+00 2.0256742931E+00 1.9818171046E+00 1.9355348826E+00 1.8870225086E+00 1.8364796034E+00 1.7841094313E+00 1.7301178242E+00 1.6747121271E+00 1.6181001719E+00 1.5604892819E+00 1.5020853114E+00 1.4430917232E+00 1.3837087083E+00 1.3241323493E+00 1.2645538317E+00 1.2051587037E+00 1.1461261885E+00 1.0876285485E+00 1.0298305055E+00 9.7288871557E-01 9.1695130083E-01 8.6215743847E-01 8.0863700683E-01 7.5651028889E-01 7.0588773255E-01 6.5686976729E-01 + 4.5171058208E+00 4.2268107714E+00 3.9492694980E+00 3.6846506082E+00 3.4330823761E+00 3.1946530611E+00 2.9694113639E+00 2.7573670122E+00 2.5584914750E+00 2.3727188003E+00 2.1999465719E+00 2.0400369789E+00 1.8928179946E+00 1.7580846569E+00 1.6356004447E+00 1.5250987443E+00 1.4262843976E+00 1.3388353267E+00 1.2624042256E+00 1.1966203132E+00 1.1410911395E+00 1.0954044359E+00 1.0591300041E+00 1.0318216334E+00 1.0130190399E+00 1.0022498191E+00 9.9903140423E-01 1.0028730221E+00 1.0132776399E+00 1.0297438939E+00 1.0517679942E+00 1.0788455973E+00 1.1104736406E+00 1.1461521307E+00 1.1853858818E+00 1.2276861947E+00 1.2725724744E+00 1.3195737778E+00 1.3682302891E+00 1.4180947164E+00 1.4687336068E+00 1.5197285756E+00 1.5706774461E+00 1.6211952982E+00 1.6709154220E+00 1.7194901754E+00 1.7665917441E+00 1.8119128029E+00 1.8551670768E+00 1.8960898034E+00 1.9344380957E+00 1.9699912060E+00 2.0025506925E+00 2.0319404901E+00 2.0580068865E+00 2.0806184074E+00 2.0996656113E+00 2.1150607993E+00 2.1267376415E+00 2.1346507236E+00 2.1387750193E+00 2.1391052899E+00 2.1356554184E+00 2.1284576802E+00 2.1175619569E+00 2.1030348967E+00 2.0849590281E+00 2.0634318301E+00 2.0385647655E+00 2.0104822828E+00 1.9793207899E+00 1.9452276081E+00 1.9083599086E+00 1.8688836387E+00 1.8269724421E+00 1.7828065788E+00 1.7365718484E+00 1.6884585235E+00 1.6386602959E+00 1.5873732414E+00 1.5347948069E+00 1.4811228241E+00 1.4265545530E+00 1.3712857605E+00 1.3155098343E+00 1.2594169394E+00 1.2031932156E+00 1.1470200225E+00 1.0910732308E+00 1.0355225646E+00 9.8053099474E-01 9.2625418477E-01 8.7283999139E-01 8.2042801924E-01 7.6914923094E-01 7.1912561259E-01 6.7046989459E-01 6.2328532734E-01 5.7766551142E-01 5.3369428119E-01 + 4.1732750251E+00 3.9020486648E+00 3.6432295280E+00 3.3969460712E+00 3.1632881270E+00 2.9423073358E+00 2.7340177060E+00 2.5383962971E+00 2.3553840221E+00 2.1848865664E+00 2.0267754153E+00 1.8808889873E+00 1.7470338662E+00 1.6249861262E+00 1.5144927436E+00 1.4152730888E+00 1.3270204914E+00 1.2494038713E+00 1.1820694285E+00 1.1246423847E+00 1.0767287680E+00 1.0379172346E+00 1.0077809186E+00 9.8587930229E-01 9.7176010074E-01 9.6496115063E-01 9.6501229799E-01 9.7143727620E-01 9.8375556738E-01 1.0014842401E+00 1.0241397564E+00 1.0512397415E+00 1.0823047098E+00 1.1168597412E+00 1.1544361016E+00 1.1945728026E+00 1.2368180948E+00 1.2807308900E+00 1.3258821084E+00 1.3718559458E+00 1.4182510589E+00 1.4646816631E+00 1.5107785426E+00 1.5561899690E+00 1.6005825264E+00 1.6436418423E+00 1.6850732235E+00 1.7246021950E+00 1.7619749429E+00 1.7969586622E+00 1.8293418079E+00 1.8589342531E+00 1.8855673534E+00 1.9090939217E+00 1.9293881128E+00 1.9463452235E+00 1.9598814083E+00 1.9699333156E+00 1.9764576482E+00 1.9794306495E+00 1.9788475226E+00 1.9747217842E+00 1.9670845584E+00 1.9559838157E+00 1.9414835607E+00 1.9236629749E+00 1.9026155176E+00 1.8784479926E+00 1.8512795827E+00 1.8212408603E+00 1.7884727764E+00 1.7531256354E+00 1.7153580593E+00 1.6753359465E+00 1.6332314311E+00 1.5892218459E+00 1.5434886953E+00 1.4962166413E+00 1.4475925077E+00 1.3978043065E+00 1.3470402901E+00 1.2954880334E+00 1.2433335490E+00 1.1907604383E+00 1.1379490834E+00 1.0850758790E+00 1.0323125104E+00 9.7982527736E-01 9.2777446639E-01 8.7631377358E-01 8.2558977820E-01 7.7574146897E-01 7.2689982326E-01 6.7918743981E-01 6.3271822516E-01 5.8759713353E-01 5.4391996000E-01 5.0177318614E-01 4.6123387740E-01 4.2236963101E-01 + 3.8461244929E+00 3.5930939566E+00 3.3521181067E+00 3.1232873125E+00 2.9066550389E+00 2.7022383840E+00 2.5100187372E+00 2.3299425520E+00 2.1619222319E+00 2.0058371218E+00 1.8615346018E+00 1.7288312766E+00 1.6075142554E+00 1.4973425154E+00 1.3980483430E+00 1.3093388466E+00 1.2308975318E+00 1.1623859353E+00 1.1034453070E+00 1.0536983358E+00 1.0127509095E+00 9.8019390222E-01 9.5560498288E-01 9.3855043511E-01 9.2858698323E-01 9.2526361586E-01 9.2812340043E-01 9.3670528126E-01 9.5054585461E-01 9.6918111384E-01 9.9214815827E-01 1.0189868596E+00 1.0492414797E+00 1.0824622349E+00 1.1182068004E+00 1.1560417506E+00 1.1955439304E+00 1.2363017538E+00 1.2779164246E+00 1.3200030781E+00 1.3621918372E+00 1.4041287846E+00 1.4454768449E+00 1.4859165771E+00 1.5251468762E+00 1.5628855808E+00 1.5988699893E+00 1.6328572816E+00 1.6646248485E+00 1.6939705292E+00 1.7207127567E+00 1.7446906147E+00 1.7657638062E+00 1.7838125358E+00 1.7987373102E+00 1.8104586574E+00 1.8189167693E+00 1.8240710699E+00 1.8258997148E+00 1.8243990227E+00 1.8195828470E+00 1.8114818879E+00 1.8001429523E+00 1.7856281652E+00 1.7680141368E+00 1.7473910913E+00 1.7238619610E+00 1.6975414517E+00 1.6685550844E+00 1.6370382173E+00 1.6031350540E+00 1.5669976425E+00 1.5287848697E+00 1.4886614565E+00 1.4467969576E+00 1.4033647710E+00 1.3585411614E+00 1.3125043014E+00 1.2654333347E+00 1.2175074653E+00 1.1689050757E+00 1.1198028780E+00 1.0703751011E+00 1.0207927151E+00 9.7122269903E-01 9.2182735003E-01 8.7276363937E-01 8.2418261522E-01 7.7622885443E-01 7.2903996420E-01 6.8274613476E-01 6.3746974366E-01 5.9332501208E-01 5.5041771313E-01 5.0884493227E-01 4.6869487917E-01 4.3004675051E-01 3.9297064285E-01 3.5752751429E-01 3.2376919380E-01 + 3.5361124890E+00 3.3004089810E+00 3.0764039584E+00 2.8641517994E+00 2.6636716982E+00 2.4749483013E+00 2.2979324565E+00 2.1325420703E+00 1.9786630683E+00 1.8361504550E+00 1.7048294657E+00 1.5844968071E+00 1.4749219781E+00 1.3758486664E+00 1.2869962139E+00 1.2080611433E+00 1.1387187406E+00 1.0786246850E+00 1.0274167204E+00 9.8471635982E-01 9.5013061707E-01 9.2325375711E-01 9.0366905873E-01 8.9095058192E-01 8.8466493301E-01 8.8437302051E-01 8.8963179483E-01 8.9999596523E-01 9.1501968753E-01 9.3425821617E-01 9.5726951487E-01 9.8361581985E-01 1.0128651505E+00 1.0445927619E+00 1.0783825351E+00 1.1138282996E+00 1.1505350853E+00 1.1881202989E+00 1.2262148225E+00 1.2644640304E+00 1.3025287227E+00 1.3400859724E+00 1.3768298856E+00 1.4124722718E+00 1.4467432253E+00 1.4793916155E+00 1.5101854875E+00 1.5389123720E+00 1.5653795063E+00 1.5894139664E+00 1.6108627130E+00 1.6295925522E+00 1.6454900129E+00 1.6584611445E+00 1.6684312366E+00 1.6753444643E+00 1.6791634627E+00 1.6798688331E+00 1.6774585862E+00 1.6719475253E+00 1.6633665746E+00 1.6517620553E+00 1.6371949167E+00 1.6197399244E+00 1.5994848114E+00 1.5765293978E+00 1.5509846815E+00 1.5229719081E+00 1.4926216210E+00 1.4600727004E+00 1.4254713930E+00 1.3889703382E+00 1.3507275964E+00 1.3109056816E+00 1.2696706050E+00 1.2271909321E+00 1.1836368586E+00 1.1391793078E+00 1.0939890539E+00 1.0482358748E+00 1.0020877368E+00 9.5571001477E-01 9.0926475029E-01 8.6290995072E-01 8.1679893059E-01 7.7107969783E-01 7.2589438643E-01 6.8137873680E-01 6.3766162514E-01 5.9486464246E-01 5.5310172408E-01 5.1247882979E-01 4.7309367473E-01 4.3503551083E-01 3.9838495848E-01 3.6321388744E-01 3.2958534647E-01 2.9755354015E-01 2.6716385192E-01 2.3845291146E-01 + 3.2436886515E+00 3.0244515886E+00 2.8165550691E+00 2.6200195986E+00 2.4348322118E+00 2.2609472005E+00 2.0982869476E+00 1.9467428606E+00 1.8061764021E+00 1.6764202096E+00 1.5572793007E+00 1.4485323574E+00 1.3499330833E+00 1.2612116267E+00 1.1820760643E+00 1.1122139382E+00 1.0512938391E+00 9.9896702867E-01 9.5486909531E-01 9.1862163437E-01 8.8983394725E-01 8.6810475162E-01 8.5302389592E-01 8.4417407131E-01 8.4113251412E-01 8.4347269225E-01 8.5076596891E-01 8.6258323759E-01 8.7849652189E-01 8.9808053465E-01 9.2091419060E-01 9.4658206733E-01 9.7467580964E-01 1.0047954724E+00 1.0365507980E+00 1.0695624238E+00 1.1034630168E+00 1.1378983316E+00 1.1725281887E+00 1.2070273723E+00 1.2410864428E+00 1.2744124649E+00 1.3067296489E+00 1.3377799044E+00 1.3673233060E+00 1.3951384714E+00 1.4210228514E+00 1.4447929338E+00 1.4662843606E+00 1.4853519619E+00 1.5018697066E+00 1.5157305729E+00 1.5268463414E+00 1.5351473124E+00 1.5405819518E+00 1.5431164676E+00 1.5427343218E+00 1.5394356805E+00 1.5332368067E+00 1.5241693995E+00 1.5122798851E+00 1.4976286622E+00 1.4802893080E+00 1.4603477490E+00 1.4379014002E+00 1.4130582798E+00 1.3859361012E+00 1.3566613493E+00 1.3253683455E+00 1.2921983041E+00 1.2572983878E+00 1.2208207641E+00 1.1829216685E+00 1.1437604778E+00 1.1034987988E+00 1.0622995746E+00 1.0203262140E+00 9.7774174635E-01 9.3470800516E-01 8.9138484484E-01 8.4792939175E-01 8.0449533335E-01 7.6123224731E-01 7.1828497289E-01 6.7579302635E-01 6.3389006201E-01 5.9270338029E-01 5.5235348379E-01 5.1295368212E-01 4.7460974617E-01 4.3741961188E-01 4.0147313370E-01 3.6685188729E-01 3.3362902124E-01 3.0186915679E-01 2.7162833489E-01 2.4295400916E-01 2.1588508361E-01 1.9045199342E-01 1.6667682706E-01 + 2.9692400863E+00 2.7656209647E+00 2.5729842717E+00 2.3913187711E+00 2.2205814549E+00 2.0606983563E+00 1.9115654608E+00 1.7730497106E+00 1.6449900970E+00 1.5271988350E+00 1.4194626150E+00 1.3215439252E+00 1.2331824384E+00 1.1540964570E+00 1.0839844099E+00 1.0225263941E+00 9.6938575432E-01 9.2421069385E-01 8.8663591014E-01 8.5628424741E-01 8.3276836003E-01 8.1569237956E-01 8.0465357881E-01 7.9924402618E-01 7.9905222385E-01 8.0366472347E-01 8.1266771318E-01 8.2564857004E-01 8.4219737215E-01 8.6190836517E-01 8.8438137783E-01 9.0922318186E-01 9.3604879159E-01 9.6448269924E-01 9.9416004184E-01 1.0247276964E+00 1.0558453004E+00 1.0871861943E+00 1.1184382844E+00 1.1493048242E+00 1.1795051109E+00 1.2087750993E+00 1.2368679283E+00 1.2635543633E+00 1.2886231514E+00 1.3118812926E+00 1.3331542253E+00 1.3522859285E+00 1.3691389427E+00 1.3835943098E+00 1.3955514352E+00 1.4049278743E+00 1.4116590463E+00 1.4156978779E+00 1.4170143803E+00 1.4155951636E+00 1.4114428917E+00 1.4045756810E+00 1.3950264493E+00 1.3828422159E+00 1.3680833602E+00 1.3508228418E+00 1.3311453860E+00 1.3091466415E+00 1.2849323125E+00 1.2586172721E+00 1.2303246590E+00 1.2001849654E+00 1.1683351173E+00 1.1349175541E+00 1.1000793109E+00 1.0639711077E+00 1.0267464501E+00 9.8856074457E-01 9.4957043355E-01 9.0993215247E-01 8.6980191316E-01 8.2933431643E-01 7.8868179689E-01 7.4799390282E-01 7.0741661355E-01 6.6709169666E-01 6.2715610712E-01 5.8774142985E-01 5.4897336761E-01 5.1097127510E-01 4.7384774042E-01 4.3770821465E-01 4.0265068982E-01 3.6876542573E-01 3.3613472528E-01 3.0483275822E-01 2.7492543275E-01 2.4647031411E-01 2.1951658928E-01 1.9410507650E-01 1.7026827833E-01 1.4803047652E-01 1.2740786709E-01 1.0840873353E-01 + 2.7130489129E+00 2.5242148567E+00 2.3460061980E+00 2.1783820923E+00 2.0212716025E+00 1.8745745894E+00 1.7381626939E+00 1.6118804049E+00 1.4955462072E+00 1.3889538047E+00 1.2918734120E+00 1.2040531093E+00 1.1252202530E+00 1.0550829377E+00 9.9333150010E-01 9.3964006136E-01 8.9366809838E-01 8.5506203913E-01 8.2345687432E-01 7.9847777904E-01 7.7974173753E-01 7.6685916449E-01 7.5943551654E-01 7.5707288729E-01 7.5937157996E-01 7.6593165151E-01 7.7635442242E-01 7.9024394669E-01 8.0720843657E-01 8.2686163727E-01 8.4882414661E-01 8.7272467546E-01 8.9820124477E-01 9.2490231542E-01 9.5248784769E-01 9.8063028702E-01 1.0090154738E+00 1.0373434746E+00 1.0653293332E+00 1.0927037396E+00 1.1192136167E+00 1.1446226225E+00 1.1687115693E+00 1.1912787582E+00 1.2121402309E+00 1.2311299382E+00 1.2480998273E+00 1.2629198490E+00 1.2754778869E+00 1.2856796101E+00 1.2934482526E+00 1.2987243218E+00 1.3014652389E+00 1.3016449152E+00 1.2992532662E+00 1.2942956694E+00 1.2867923676E+00 1.2767778232E+00 1.2643000268E+00 1.2494197648E+00 1.2322098502E+00 1.2127543218E+00 1.1911476147E+00 1.1674937088E+00 1.1419052580E+00 1.1145027056E+00 1.0854133909E+00 1.0547706495E+00 1.0227129145E+00 9.8938282014E-01 9.5492631415E-01 9.1949178147E-01 8.8322918403E-01 8.4628921989E-01 8.0882250542E-01 7.7097878390E-01 7.3290616349E-01 6.9475038771E-01 6.5665414086E-01 6.1875639106E-01 5.8119177291E-01 5.4409001180E-01 5.0757539155E-01 4.7176626682E-01 4.3677462138E-01 4.0270567327E-01 3.6965752738E-01 3.3772087591E-01 3.0697874682E-01 2.7750630025E-01 2.4937067235E-01 2.2263086616E-01 1.9733768864E-01 1.7353373276E-01 1.5125340355E-01 1.3052298655E-01 1.1136075715E-01 9.3777128966E-02 7.7774839391E-02 6.3349170150E-02 + 2.4752608064E+00 2.3003977667E+00 2.1358051634E+00 1.9814146703E+00 1.8371295220E+00 1.7028254762E+00 1.5783518596E+00 1.4635326925E+00 1.3581678857E+00 1.2620345061E+00 1.1748881019E+00 1.0964640842E+00 1.0264791564E+00 9.6463278668E-01 9.1060871555E-01 8.6407649313E-01 8.2469303861E-01 7.9210421570E-01 7.6594641730E-01 7.4584815285E-01 7.3143163190E-01 7.2231433749E-01 7.1811058309E-01 7.1843304705E-01 7.2289427871E-01 7.3110817034E-01 7.4269138969E-01 7.5726476777E-01 7.7445463703E-01 7.9389411536E-01 8.1522433152E-01 8.3809558801E-01 8.6216845791E-01 8.8711481214E-01 9.1261877439E-01 9.3837760114E-01 9.6410248451E-01 9.8951927616E-01 1.0143691308E+00 1.0384090686E+00 1.0614124548E+00 1.0831693979E+00 1.1034870647E+00 1.1221899146E+00 1.1391198515E+00 1.1541362971E+00 1.1671161856E+00 1.1779538814E+00 1.1865610230E+00 1.1928662948E+00 1.1968151302E+00 1.1983693473E+00 1.1975067233E+00 1.1942205078E+00 1.1885188818E+00 1.1804243630E+00 1.1699731648E+00 1.1572145102E+00 1.1422099065E+00 1.1250323853E+00 1.1057657104E+00 1.0845035607E+00 1.0613486908E+00 1.0364120734E+00 1.0098120306E+00 9.8167335481E-01 9.5212642750E-01 9.2130633691E-01 8.8935200094E-01 8.5640529851E-01 8.2261021342E-01 7.8811199468E-01 7.5305633679E-01 7.1758858351E-01 6.8185295837E-01 6.4599182488E-01 6.1014497944E-01 5.7444897935E-01 5.3903650849E-01 5.0403578257E-01 4.6956999602E-01 4.3575681199E-01 4.0270789691E-01 3.7052850066E-01 3.3931708322E-01 3.0916498835E-01 2.8015616472E-01 2.5236693444E-01 2.2586580895E-01 2.0071335182E-01 1.7696208784E-01 1.5465645745E-01 1.3383281569E-01 1.1451947409E-01 9.6736784280E-02 8.0497261555E-02 6.5805746639E-02 5.2659603660E-02 4.1048952263E-02 3.0956931608E-02 + 2.2558638781E+00 2.0941794592E+00 1.9424133418E+00 1.8004718269E+00 1.6682344015E+00 1.5455547642E+00 1.4322619286E+00 1.3281613971E+00 1.2330364021E+00 1.1466492056E+00 1.0687424537E+00 9.9904057807E-01 9.3725123939E-01 8.8306680496E-01 8.3616585510E-01 7.9621471113E-01 7.6286897877E-01 7.3577510016E-01 7.1457190831E-01 6.9889217728E-01 6.8836416218E-01 6.8261312256E-01 6.8126282334E-01 6.8393700751E-01 6.9026083499E-01 6.9986228222E-01 7.1237349762E-01 7.2743210781E-01 7.4468247024E-01 7.6377686805E-01 7.8437664301E-01 8.0615326332E-01 8.2878932271E-01 8.5197946831E-01 8.7543125444E-01 8.9886592055E-01 9.2201909125E-01 9.4464139731E-01 9.6649901641E-01 9.8737413322E-01 1.0070653184E+00 1.0253878268E+00 1.0421738152E+00 1.0572724804E+00 1.0705501192E+00 1.0818901114E+00 1.0911928275E+00 1.0983754642E+00 1.1033718087E+00 1.1061319362E+00 1.1066218416E+00 1.1048230107E+00 1.1007319326E+00 1.0943595580E+00 1.0857307071E+00 1.0748834301E+00 1.0618683260E+00 1.0467478224E+00 1.0295954217E+00 1.0104949176E+00 9.8953958632E-01 9.6683135690E-01 9.4247996570E-01 9.1660209858E-01 8.8932052583E-01 8.6076323395E-01 8.3106255851E-01 8.0035432237E-01 7.6877698312E-01 7.3647079377E-01 7.0357698043E-01 6.7023694041E-01 6.3659146432E-01 6.0277998523E-01 5.6893985793E-01 5.3520567104E-01 5.0170859453E-01 4.6857576489E-01 4.3592971012E-01 4.0388781616E-01 3.7256183660E-01 3.4205744665E-01 3.1247384265E-01 2.8390338784E-01 2.5643130486E-01 2.3013541535E-01 2.0508592664E-01 1.8134526535E-01 1.5896795744E-01 1.3800055394E-01 1.1848160173E-01 1.0044165793E-01 8.3903346874E-02 6.8881457997E-02 5.5383083060E-02 4.3407790843E-02 3.2947837323E-02 2.3988409224E-02 1.6507898690E-02 1.0478206738E-02 + 2.0546770699E+00 1.9054029678E+00 1.7656984210E+00 1.6354464417E+00 1.5145048197E+00 1.4027072058E+00 1.2998642649E+00 1.2057648939E+00 1.1201774982E+00 1.0428513220E+00 9.7351782409E-01 9.1189209516E-01 8.5767430861E-01 8.1055119940E-01 7.7019756407E-01 7.3627777560E-01 7.0844730669E-01 6.8635425504E-01 6.6964086437E-01 6.5794503507E-01 6.5090181823E-01 6.4814488739E-01 6.4930798216E-01 6.5402631827E-01 6.6193795876E-01 6.7268514130E-01 6.8591555693E-01 7.0128357564E-01 7.1845141484E-01 7.3709024669E-01 7.5688124088E-01 7.7751653966E-01 7.9870016244E-01 8.2014883723E-01 8.4159275725E-01 8.6277626055E-01 8.8345843172E-01 9.0341362440E-01 9.2243190424E-01 9.4031941195E-01 9.5689864663E-01 9.7200866992E-01 9.8550523178E-01 9.9726081914E-01 1.0071646289E+00 1.0151224670E+00 1.0210565764E+00 1.0249053951E+00 1.0266232483E+00 1.0261799766E+00 1.0235605044E+00 1.0187643511E+00 1.0118050885E+00 1.0027097500E+00 9.9151819314E-01 9.7828242093E-01 9.6306586637E-01 9.4594264346E-01 9.2699676984E-01 9.0632136513E-01 8.8401782944E-01 8.6019500646E-01 8.3496833556E-01 8.0845899719E-01 7.8079305595E-01 7.5210060542E-01 7.2251491901E-01 6.9217161064E-01 6.6120780929E-01 6.2976135087E-01 5.9796999123E-01 5.6597064336E-01 5.3389864212E-01 5.0188703938E-01 4.7006593225E-01 4.3856182688E-01 4.0749704022E-01 3.7698914151E-01 3.4715043551E-01 3.1808748882E-01 2.8990070054E-01 2.6268391841E-01 2.3652410101E-01 2.1150102662E-01 1.8768704890E-01 1.6514689953E-01 1.4393753728E-01 1.2410804342E-01 1.0569956234E-01 8.8745286820E-02 7.3270486566E-02 5.9292578765E-02 4.6821239154E-02 3.5858551870E-02 2.6399196234E-02 1.8430668463E-02 1.1933536156E-02 6.8817233057E-03 3.2428234520E-03 9.7843852979E-04 + 1.8713470978E+00 1.7337411442E+00 1.6053597938E+00 1.4860648181E+00 1.3756943234E+00 1.2740638833E+00 1.1809677360E+00 1.0961800385E+00 1.0194561743E+00 9.5053410549E-01 8.8913576661E-01 8.3496849059E-01 7.8772646292E-01 7.4709219642E-01 7.1273802063E-01 6.8432757946E-01 6.6151733072E-01 6.4395804140E-01 6.3129627255E-01 6.2317584778E-01 6.1923929958E-01 6.1912928779E-01 6.2248998486E-01 6.2896842259E-01 6.3821579554E-01 6.4988871621E-01 6.6365041783E-01 6.7917190047E-01 6.9613301676E-01 7.1422349381E-01 7.3314388807E-01 7.5260647050E-01 7.7233603962E-01 7.9207066031E-01 8.1156232675E-01 8.3057754819E-01 8.4889785664E-01 8.6632023578E-01 8.8265747110E-01 8.9773842118E-01 9.1140821093E-01 9.2352834731E-01 9.3397675906E-01 9.4264776173E-01 9.4945194995E-01 9.5431601914E-01 9.5718251899E-01 9.5800954146E-01 9.5677034621E-01 9.5345292681E-01 9.4805952086E-01 9.4060606786E-01 9.3112161849E-01 9.1964769925E-01 9.0623763649E-01 8.9095584405E-01 8.7387707873E-01 8.5508566788E-01 8.3467471357E-01 8.1274527760E-01 7.8940555185E-01 7.6477001821E-01 7.3895860258E-01 7.1209582697E-01 6.8430996409E-01 6.5573219836E-01 6.2649579731E-01 5.9673529726E-01 5.6658570684E-01 5.3618173187E-01 5.0565702492E-01 4.7514346266E-01 4.4477045384E-01 4.1466428070E-01 3.8494747609E-01 3.5573823867E-01 3.2714988810E-01 2.9929036190E-01 2.7226175560E-01 2.4615990718E-01 2.2107402695E-01 1.9708637356E-01 1.7427197647E-01 1.5269840523E-01 1.3242558544E-01 1.1350566122E-01 9.5982903499E-02 7.9893663569E-02 6.5266370852E-02 5.2121573716E-02 4.0472022010E-02 3.0322789745E-02 2.1671436217E-02 1.4508203672E-02 8.8162494936E-03 4.5719107496E-03 1.7449988053E-03 2.9912162541E-04 1.9203128272E-04 1.3759941249E-03 + 1.7053528837E+00 1.5787006969E+00 1.4609322339E+00 1.3518900313E+00 1.2513944796E+00 1.1592449990E+00 1.0752212732E+00 9.9908453465E-01 9.3057889558E-01 8.6943271838E-01 8.1536001953E-01 7.6806190053E-01 7.2722799970E-01 6.9253795849E-01 6.6366289594E-01 6.4026688530E-01 6.2200842634E-01 6.0854190762E-01 5.9951905251E-01 5.9459034348E-01 5.9340641885E-01 5.9561943672E-01 6.0088440097E-01 6.0886044430E-01 6.1921206380E-01 6.3161030456E-01 6.4573388733E-01 6.6127027649E-01 6.7791668483E-01 6.9538101212E-01 7.1338271470E-01 7.3165360370E-01 7.4993856986E-01 7.6799623329E-01 7.8559951691E-01 8.0253614256E-01 8.1860904934E-01 8.3363673380E-01 8.4745351241E-01 8.5990970652E-01 8.7087175094E-01 8.8022222716E-01 8.8785982284E-01 8.9369921929E-01 8.9767090924E-01 8.9972094715E-01 8.9981063486E-01 8.9791614549E-01 8.9402808873E-01 8.8815102089E-01 8.8030290346E-01 8.7051451359E-01 8.5882881082E-01 8.4530026370E-01 8.2999414074E-01 8.1298576971E-01 7.9435976975E-01 7.7420926049E-01 7.5263505267E-01 7.2974482451E-01 7.0565228819E-01 6.8047635085E-01 6.5434027407E-01 6.2737083636E-01 5.9969750230E-01 5.7145160258E-01 5.4276552849E-01 5.1377194471E-01 4.8460302359E-01 4.5538970449E-01 4.2626098108E-01 3.9734321946E-01 3.6875950990E-01 3.4062905450E-01 3.1306659301E-01 2.8618186875E-01 2.6007913631E-01 2.3485671260E-01 2.1060657223E-01 1.8741398836E-01 1.6535721966E-01 1.4450724370E-01 1.2492753717E-01 1.0667390266E-01 8.9794341831E-02 7.4328974400E-02 6.0310002182E-02 4.7761717226E-02 3.6700552840E-02 2.7135176145E-02 1.9066620573E-02 1.2488456581E-02 7.3869986740E-03 3.7415466882E-03 1.5246591575E-03 7.0245645648E-04 1.2349513211E-03 3.0764042517E-03 6.1757012326E-03 1.0476751145E-02 + 1.5560163440E+00 1.4396325936E+00 1.3317959425E+00 1.2323316474E+00 1.1410442985E+00 1.0577190319E+00 9.8212279413E-01 9.1400565128E-01 8.5310213806E-01 7.9913263998E-01 7.5180480271E-01 7.1081496230E-01 6.7584959011E-01 6.4658674608E-01 6.2269753434E-01 6.0384755503E-01 5.8969834620E-01 5.7990881012E-01 5.7413661816E-01 5.7203958875E-01 5.7327703300E-01 5.7751106306E-01 5.8440785811E-01 5.9363888349E-01 6.0488205860E-01 6.1782286964E-01 6.3215542316E-01 6.4758343744E-01 6.6382116818E-01 6.8059426613E-01 6.9764056402E-01 7.1471079098E-01 7.3156921259E-01 7.4799419537E-01 7.6377869483E-01 7.7873066639E-01 7.9267339904E-01 8.0544577186E-01 8.1690243395E-01 8.2691390856E-01 8.3536662267E-01 8.4216286344E-01 8.4722066339E-01 8.5047361650E-01 8.5187062747E-01 8.5137559693E-01 8.4896704547E-01 8.4463767970E-01 8.3839390353E-01 8.3025527846E-01 8.2025393642E-01 8.0843394915E-01 7.9485065805E-01 7.7956996871E-01 7.6266761427E-01 7.4422839184E-01 7.2434537642E-01 7.0311911658E-01 6.8065681617E-01 6.5707150659E-01 6.3248121357E-01 6.0700812305E-01 5.8077774995E-01 5.5391811406E-01 5.2655892688E-01 4.9883079320E-01 4.7086443103E-01 4.4278991330E-01 4.1473593469E-01 3.8682910650E-01 3.5919328257E-01 3.3194891882E-01 3.0521246885E-01 2.7909581771E-01 2.5370575594E-01 2.2914349538E-01 2.0550422831E-01 1.8287673109E-01 1.6134301321E-01 1.4097801242E-01 1.2184933646E-01 1.0401705136E-01 8.7533516532E-02 7.2443266042E-02 5.8782935773E-02 4.6581235537E-02 3.5858965237E-02 2.6629073852E-02 1.8896759866E-02 1.2659611546E-02 7.9077853397E-03 4.6242204591E-03 2.7848875983E-03 2.3590695935E-03 3.3096717064E-03 5.5935591186E-03 9.1619191282E-03 1.3960645470E-02 1.9930742121E-02 2.7008743911E-02 + 1.4225183715E+00 1.3157476719E+00 1.2171918133E+00 1.1266606693E+00 1.0439448866E+00 9.6881712682E-01 9.0103335539E-01 8.4033416868E-01 7.8644615524E-01 7.3908328413E-01 6.9794831454E-01 6.6273422027E-01 6.3312562321E-01 6.0880022939E-01 5.8943026184E-01 5.7468388412E-01 5.6422660877E-01 5.5772268501E-01 5.5483646016E-01 5.5523370954E-01 5.5858292965E-01 5.6455658982E-01 5.7283233786E-01 5.8309415514E-01 5.9503345729E-01 6.0835013669E-01 6.2275354336E-01 6.3796340119E-01 6.5371065675E-01 6.6973825835E-01 6.8580186317E-01 7.0167047105E-01 7.1712698334E-01 7.3196868603E-01 7.4600765659E-01 7.5907109417E-01 7.7100157339E-01 7.8165722219E-01 7.9091182452E-01 7.9865484902E-01 8.0479140529E-01 8.0924212930E-01 8.1194300030E-01 8.1284509141E-01 8.1191425654E-01 8.0913075666E-01 8.0448882839E-01 7.9799619825E-01 7.8967354628E-01 7.7955392245E-01 7.6768211993E-01 7.5411400913E-01 7.3891583657E-01 7.2216349284E-01 7.0394175380E-01 6.8434349944E-01 6.6346891461E-01 6.4142467597E-01 6.1832312950E-01 5.9428146275E-01 5.6942087608E-01 5.4386575703E-01 5.1774286173E-01 4.9118050736E-01 4.6430777934E-01 4.3725375691E-01 4.1014676051E-01 3.8311362421E-01 3.5627899628E-01 3.2976467078E-01 3.0368895273E-01 2.7816605935E-01 2.5330555951E-01 2.2921185334E-01 2.0598369370E-01 1.8371375096E-01 1.6248822218E-01 1.4238648583E-01 1.2348080253E-01 1.0583606228E-01 8.9509578483E-02 7.4550928560E-02 6.1001840859E-02 4.8896127395E-02 3.8259661581E-02 2.9110399986E-02 2.1458446929E-02 1.5306160498E-02 1.0648298435E-02 7.4722021068E-03 5.7580166640E-03 5.4789453139E-03 6.6015355047E-03 9.0859947063E-03 1.2886533360E-02 1.7951732482E-02 2.4224933334E-02 3.1644646510E-02 4.0144977746E-02 4.9656067738E-02 + 1.3039188449E+00 1.2061362963E+00 1.1162407593E+00 1.0340285579E+00 9.5927818650E-01 8.9175157660E-01 8.3119540259E-01 7.7734242158E-01 7.2991284098E-01 6.8861570767E-01 6.5315031272E-01 6.2320760555E-01 5.9847161142E-01 5.7862084632E-01 5.6332972332E-01 5.5226994464E-01 5.4511187367E-01 5.4152588167E-01 5.4118366367E-01 5.4375951864E-01 5.4893158902E-01 5.5638305504E-01 5.6580327949E-01 5.7688889899E-01 5.8934485794E-01 6.0288538178E-01 6.1723488648E-01 6.3212882150E-01 6.4731444380E-01 6.6255152089E-01 6.7761296118E-01 6.9228537029E-01 7.0636953239E-01 7.1968081593E-01 7.3204950345E-01 7.4332104565E-01 7.5335624009E-01 7.6203133537E-01 7.6923806183E-01 7.7488359028E-01 7.7889042044E-01 7.8119620122E-01 7.8175348506E-01 7.8052941904E-01 7.7750537551E-01 7.7267652540E-01 7.6605135739E-01 7.5765114662E-01 7.4750937637E-01 7.3567111674E-01 7.2219236412E-01 7.0713934564E-01 6.9058779264E-01 6.7262218753E-01 6.5333498814E-01 6.3282583394E-01 6.1120073853E-01 5.8857127244E-01 5.6505374070E-01 5.4076835926E-01 5.1583843438E-01 4.9038954901E-01 4.6454876000E-01 4.3844381000E-01 4.1220235750E-01 3.8595122862E-01 3.5981569377E-01 3.3391877232E-01 3.0838056814E-01 2.8331763862E-01 2.5884239963E-01 2.3506256855E-01 2.1208064745E-01 1.8999344790E-01 1.6889165911E-01 1.4885946041E-01 1.2997417914E-01 1.1230599451E-01 9.5917688051E-02 8.0864440690E-02 6.7193676449E-02 5.4944952491E-02 4.4149894956E-02 3.4832179828E-02 2.7007557870E-02 2.0683922423E-02 1.5861418696E-02 1.2532592959E-02 1.0682579900E-02 1.0289326229E-02 1.1323848461E-02 1.3750522684E-02 1.7527403997E-02 2.2606573176E-02 2.8934508069E-02 3.6452477110E-02 4.5096952313E-02 5.4800039034E-02 6.5489919780E-02 7.7091309315E-02 + 1.1991795237E+00 1.1097909248E+00 1.0279659716E+00 9.5348920147E-01 8.8612867878E-01 8.2563727820E-01 7.7175400287E-01 7.2420533073E-01 6.8270658309E-01 6.4696330943E-01 6.1667268247E-01 5.9152489735E-01 5.7120456909E-01 5.5539212237E-01 5.4376516799E-01 5.3599986033E-01 5.3177223034E-01 5.3075948892E-01 5.3264129543E-01 5.3710098674E-01 5.4382676202E-01 5.5251281911E-01 5.6286043835E-01 5.7457901015E-01 5.8738700292E-01 6.0101286816E-01 6.1519588001E-01 6.2968690683E-01 6.4424911266E-01 6.5865858692E-01 6.7270490087E-01 6.8619158992E-01 6.9893656105E-01 7.1077242505E-01 7.2154675366E-01 7.3112226200E-01 7.3937691695E-01 7.4620397268E-01 7.5151193456E-01 7.5522445329E-01 7.5728015115E-01 7.5763238266E-01 7.5624893227E-01 7.5311165177E-01 7.4821604052E-01 7.4157077170E-01 7.3319716816E-01 7.2312863122E-01 7.1141002649E-01 6.9809703047E-01 6.8325544196E-01 6.6696046243E-01 6.4929594959E-01 6.3035364826E-01 6.1023240301E-01 5.8903735665E-01 5.6687913895E-01 5.4387304979E-01 5.2013824089E-01 4.9579690025E-01 4.7097344322E-01 4.4579371415E-01 4.2038420244E-01 3.9487127638E-01 3.6938043848E-01 3.4403560534E-01 3.1895841530E-01 2.9426756663E-01 2.7007818898E-01 2.4650125048E-01 2.2364300277E-01 2.0160446579E-01 1.8048095426E-01 1.6036164706E-01 1.4132920095E-01 1.2345940952E-01 1.0682090804E-01 9.1474924751E-02 7.7475078723E-02 6.4867224352E-02 5.3689342127E-02 4.3971475198E-02 3.5735711007E-02 2.8996207015E-02 2.3759259359E-02 2.0023413069E-02 1.7779612287E-02 1.7011388756E-02 1.7695086670E-02 1.9800121841E-02 2.3289272998E-02 2.8119002886E-02 3.4239806771E-02 4.1596585821E-02 5.0129042771E-02 5.9772097233E-02 7.0456317924E-02 8.2108369110E-02 9.4651468496E-02 1.0800585382E-01 + 1.1071887399E+00 1.0256304999E+00 9.5131702501E-01 8.8402275553E-01 8.2350697238E-01 7.6951509256E-01 7.2177999334E-01 6.8002335967E-01 6.4395704854E-01 6.1328446459E-01 5.8770194079E-01 5.6690011841E-01 5.5056532041E-01 5.3838091258E-01 5.3002864683E-01 5.2518998117E-01 5.2354737122E-01 5.2478552810E-01 5.2859263800E-01 5.3466153874E-01 5.4269084899E-01 5.5238604628E-01 5.6346048981E-01 5.7563638471E-01 5.8864568476E-01 6.0223093042E-01 6.1614602013E-01 6.3015691234E-01 6.4404225685E-01 6.5759395379E-01 6.7061763926E-01 6.8293309698E-01 6.9437459545E-01 7.0479115072E-01 7.1404671510E-01 7.2202029239E-01 7.2860598078E-01 7.3371294456E-01 7.3726531649E-01 7.3920203255E-01 7.3947660145E-01 7.3805681133E-01 7.3492437629E-01 7.3007452593E-01 7.2351554089E-01 7.1526823789E-01 7.0536540782E-01 6.9385121061E-01 6.8078053070E-01 6.6621829719E-01 6.5023877265E-01 6.3292481483E-01 6.1436711538E-01 5.9466341997E-01 5.7391773387E-01 5.5223951739E-01 5.2974287532E-01 5.0654574447E-01 4.8276908350E-01 4.5853606895E-01 4.3397130140E-01 4.0920002543E-01 3.8434736712E-01 3.5953759239E-01 3.3489338957E-01 3.1053517925E-01 2.8658045426E-01 2.6314315249E-01 2.4033306505E-01 2.1825528189E-01 1.9700967697E-01 1.7669043464E-01 1.5738561879E-01 1.3917678608E-01 1.2213864399E-01 1.0633875484E-01 9.1837285839E-02 7.8686805789E-02 6.6932128142E-02 5.6610200365E-02 4.7750039042E-02 4.0372710016E-02 3.4491352669E-02 3.0111247169E-02 2.7229923356E-02 2.5837309744E-02 2.5915920901E-02 2.7441081364E-02 3.0381184023E-02 3.4697980834E-02 4.0346903541E-02 4.7277412021E-02 5.5433367736E-02 6.4753429715E-02 7.5171470424E-02 8.6617008819E-02 9.9015657860E-02 1.1228958373E-01 1.2635797401E-01 1.4113751206E-01 + 1.0267868693E+00 9.5252564957E-01 8.8519482345E-01 8.2456034445E-01 7.7037427888E-01 7.2237610690E-01 6.8029404761E-01 6.4384640220E-01 6.1274290930E-01 5.8668610652E-01 5.6537269248E-01 5.4849488347E-01 5.3574175908E-01 5.2680059125E-01 5.2135815138E-01 5.1910199024E-01 5.1972168559E-01 5.2291005291E-01 5.2836431428E-01 5.3578722152E-01 5.4488812914E-01 5.5538401364E-01 5.6700043537E-01 5.7947244013E-01 5.9254539740E-01 6.0597577275E-01 6.1953183237E-01 6.3299427778E-01 6.4615680928E-01 6.5882661698E-01 6.7082479871E-01 6.8198670433E-01 6.9216220634E-01 7.0121589716E-01 7.0902721350E-01 7.1549048901E-01 7.2051493617E-01 7.2402455926E-01 7.2595800005E-01 7.2626831849E-01 7.2492271075E-01 7.2190216731E-01 7.1720107399E-01 7.1082675905E-01 7.0279898966E-01 6.9314942132E-01 6.8192100381E-01 6.6916734756E-01 6.5495205433E-01 6.3934801621E-01 6.2243668713E-01 6.0430733098E-01 5.8505625057E-01 5.6478600163E-01 5.4360459604E-01 5.2162469861E-01 4.9896282129E-01 4.7573851913E-01 4.5207359180E-01 4.2809129466E-01 4.0391556298E-01 3.7967025313E-01 3.5547840395E-01 3.3146152184E-01 3.0773889242E-01 2.8442692187E-01 2.6163851054E-01 2.3948246128E-01 2.1806292487E-01 1.9747888440E-01 1.7782368058E-01 1.5918457927E-01 1.4164238273E-01 1.2527108549E-01 1.1013757575E-01 9.6301382608E-02 8.3814469731E-02 7.2721075198E-02 6.3057597506E-02 5.4852527208E-02 4.8126423563E-02 4.2891935264E-02 3.9153864188E-02 3.6909270818E-02 3.6147619878E-02 3.6850964475E-02 3.8994166924E-02 4.2545154237E-02 4.7465206147E-02 5.3709273386E-02 6.1226323847E-02 6.9959714133E-02 7.9847583939E-02 9.0823270637E-02 1.0281574137E-01 1.1575003994E-01 1.2954774576E-01 1.4412744207E-01 1.5940519077E-01 1.7529501105E-01 + 9.5679165860E-01 8.8932377701E-01 8.2847646148E-01 7.7400870791E-01 7.2566685511E-01 6.8318588627E-01 6.4629074970E-01 6.1469769281E-01 5.8811560362E-01 5.6624735393E-01 5.4879113855E-01 5.3544180480E-01 5.2589216687E-01 5.1983429974E-01 5.1696080718E-01 5.1696605923E-01 5.1954739389E-01 5.2440627883E-01 5.3124942854E-01 5.3978987290E-01 5.4974797343E-01 5.6085238365E-01 5.7284095040E-01 5.8546155321E-01 5.9847287910E-01 6.1164513078E-01 6.2476066614E-01 6.3761456765E-01 6.5001514035E-01 6.6178433779E-01 6.7275811516E-01 6.8278670968E-01 6.9173484828E-01 6.9948188326E-01 7.0592185661E-01 7.1096349425E-01 7.1453013170E-01 7.1655957290E-01 7.1700388427E-01 7.1582912631E-01 7.1301502539E-01 7.0855458849E-01 7.0245366404E-01 6.9473045196E-01 6.8541496649E-01 6.7454845530E-01 6.6218277875E-01 6.4837975299E-01 6.3321046110E-01 6.1675453612E-01 5.9909942023E-01 5.8033960421E-01 5.6057585125E-01 5.3991440950E-01 5.1846621727E-01 4.9634610518E-01 4.7367199919E-01 4.5056412853E-01 4.2714424239E-01 4.0353483905E-01 3.7985841120E-01 3.5623671070E-01 3.3279003631E-01 3.0963654730E-01 2.8689160598E-01 2.6466715183E-01 2.4307110975E-01 2.2220683466E-01 2.0217259454E-01 1.8306109374E-01 1.6495903813E-01 1.4794674327E-01 1.3209778699E-01 1.1747870678E-01 1.0414874305E-01 9.2159628087E-02 8.1555421267E-02 7.2372389982E-02 6.4638936140E-02 5.8375567498E-02 5.3594913017E-02 5.0301781193E-02 4.8493260078E-02 4.8158857570E-02 4.9280680304E-02 5.1833649371E-02 5.5785750878E-02 6.1098319251E-02 6.7726351061E-02 7.5618846987E-02 8.4719179502E-02 9.4965483715E-02 1.0629106878E-01 1.1862484717E-01 1.3189177921E-01 1.4601332996E-01 1.6090793593E-01 1.7649147873E-01 1.9267776298E-01 2.0937899582E-01 + 8.9602259067E-01 8.3487322129E-01 7.8003918927E-01 7.3127397790E-01 6.8831960189E-01 6.5090790419E-01 6.1876186737E-01 5.9159693381E-01 5.6912232895E-01 5.5104238194E-01 5.3705783816E-01 5.2686715804E-01 5.2016779697E-01 5.1665746101E-01 5.1603533343E-01 5.1800326735E-01 5.2226693977E-01 5.2853696277E-01 5.3652994766E-01 5.4596951842E-01 5.5658727074E-01 5.6812367355E-01 5.8032891001E-01 5.9296365546E-01 6.0579979000E-01 6.1862104371E-01 6.3122357300E-01 6.4341646684E-01 6.5502218175E-01 6.6587690533E-01 6.7583084771E-01 6.8474846138E-01 6.9250858953E-01 6.9900454392E-01 7.0414411317E-01 7.0784950305E-01 7.1005721020E-01 7.1071783157E-01 7.0979581156E-01 7.0726912948E-01 7.0312893006E-01 6.9737910001E-01 6.9003579365E-01 6.8112691123E-01 6.7069153317E-01 6.5877931411E-01 6.4544984054E-01 6.3077195576E-01 6.1482305640E-01 5.9768836444E-01 5.7946017876E-01 5.6023711054E-01 5.4012330652E-01 5.1922766417E-01 4.9766304307E-01 4.7554547632E-01 4.5299338593E-01 4.3012680621E-01 4.0706661868E-01 3.8393380230E-01 3.6084870228E-01 3.3793032095E-01 3.1529563369E-01 2.9305893298E-01 2.7133120309E-01 2.5021952824E-01 2.2982653624E-01 2.1024987993E-01 1.9158175806E-01 1.7390847747E-01 1.5731005761E-01 1.4185987890E-01 1.2762437540E-01 1.1466277282E-01 1.0302687189E-01 9.2760877521E-02 8.3901273400E-02 7.6476741904E-02 7.0508128618E-02 6.6008450719E-02 6.2982948239E-02 6.1429176964E-02 6.1337141602E-02 6.2689467613E-02 6.5461609960E-02 6.9622096851E-02 7.5132806436E-02 8.1949274230E-02 9.0021028992E-02 9.9291954611E-02 1.0970067551E-01 1.2118096300E-01 1.3366215991E-01 1.4706962089E-01 1.6132516555E-01 1.7634754189E-01 1.9205289713E-01 2.0835525333E-01 2.2516698513E-01 2.4239929693E-01 + 8.4332358761E-01 7.8804579031E-01 7.3878278047E-01 6.9528388802E-01 6.5728812165E-01 6.2452545608E-01 5.9671812954E-01 5.7358194570E-01 5.5482757460E-01 5.4016184683E-01 5.2928903581E-01 5.2191212264E-01 5.1773403852E-01 5.1645887968E-01 5.1779309003E-01 5.2144660707E-01 5.2713396655E-01 5.3457536184E-01 5.4349765429E-01 5.5363533076E-01 5.6473140539E-01 5.7653826231E-01 5.8881843691E-01 6.0134533313E-01 6.1390387496E-01 6.2629109029E-01 6.3831662595E-01 6.4980319282E-01 6.6058694043E-01 6.7051776072E-01 6.7945952097E-01 6.8729022619E-01 6.9390211184E-01 6.9920166756E-01 7.0310959355E-01 7.0556069086E-01 7.0650368777E-01 7.0590100414E-01 7.0372845635E-01 6.9997490536E-01 6.9464185076E-01 6.8774297394E-01 6.7930363362E-01 6.6936031723E-01 6.5796005160E-01 6.4515977687E-01 6.3102568729E-01 6.1563254297E-01 5.9906295646E-01 5.8140665827E-01 5.6275974548E-01 5.4322391728E-01 5.2290570185E-01 5.0191567831E-01 4.8036769794E-01 4.5837810842E-01 4.3606498511E-01 4.1354737287E-01 3.9094454222E-01 3.6837526311E-01 3.4595709976E-01 3.2380572962E-01 3.0203428937E-01 2.8075275076E-01 2.6006732894E-01 2.4007992533E-01 2.2088760747E-01 2.0258212755E-01 1.8524948126E-01 1.6896950849E-01 1.5381553691E-01 1.3985406947E-01 1.2714451643E-01 1.1573897233E-01 1.0568203822E-01 9.7010688953E-02 8.9754185351E-02 8.3934030716E-02 7.9563970958E-02 7.6650037398E-02 7.5190631096E-02 7.5176647367E-02 7.6591638957E-02 7.9412016181E-02 8.3607282163E-02 8.9140301167E-02 9.5967597888E-02 1.0403968542E-01 1.1330141957E-01 1.2369237697E-01 1.3514725461E-01 1.4759628801E-01 1.6096568546E-01 1.7517807573E-01 1.9015296642E-01 2.0580721031E-01 2.2205547709E-01 2.3881072763E-01 2.5598468842E-01 2.7348832339E-01 + 7.9758347595E-01 7.4775708922E-01 7.0364972715E-01 6.6500783888E-01 6.3156865888E-01 6.0306148016E-01 5.7920893355E-01 5.5972826729E-01 5.4433262169E-01 5.3273229344E-01 5.2463598418E-01 5.1975202846E-01 5.1778959588E-01 5.1845986289E-01 5.2147714948E-01 5.2656001653E-01 5.3343231969E-01 5.4182421591E-01 5.5147311909E-01 5.6212460152E-01 5.7353323809E-01 5.8546339061E-01 5.9768992982E-01 6.0999889311E-01 6.2218807610E-01 6.3406755674E-01 6.4546015087E-01 6.5620179853E-01 6.6614188045E-01 6.7514346497E-01 6.8308348526E-01 6.8985284776E-01 6.9535647250E-01 6.9951326659E-01 7.0225603235E-01 7.0353131191E-01 7.0329917020E-01 7.0153291875E-01 6.9821878280E-01 6.9335551451E-01 6.8695395514E-01 6.7903654963E-01 6.6963681662E-01 6.5879877760E-01 6.4657634887E-01 6.3303269982E-01 6.1823958171E-01 6.0227663054E-01 5.8523064828E-01 5.6719486628E-01 5.4826819493E-01 5.2855446366E-01 5.0816165518E-01 4.8720113795E-01 4.6578690078E-01 4.4403479328E-01 4.2206177598E-01 3.9998518358E-01 3.7792200485E-01 3.5598818247E-01 3.3429793584E-01 3.1296311004E-01 2.9209255344E-01 2.7179152676E-01 2.5216114579E-01 2.3329785994E-01 2.1529296864E-01 1.9823217715E-01 1.8219519329E-01 1.6725536627E-01 1.5347936872E-01 1.4092692243E-01 1.2965056851E-01 1.1969548204E-01 1.1109933145E-01 1.0389218211E-01 9.8096443979E-02 9.3726862469E-02 9.0790551717E-02 8.9287069163E-02 8.9208530164E-02 9.0539761186E-02 9.3258489925E-02 9.7335570574E-02 1.0273524228E-01 1.0941541871E-01 1.1732800651E-01 1.2641925038E-01 1.3663010226E-01 1.4789661227E-01 1.6015033877E-01 1.7331877486E-01 1.8732578886E-01 2.0209207596E-01 2.1753561843E-01 2.3357215169E-01 2.5011563368E-01 2.6707871484E-01 2.8437320621E-01 3.0191054311E-01 + 7.5775376598E-01 7.1298419557E-01 6.7364281201E-01 6.3947436924E-01 6.1021547285E-01 5.8559583501E-01 5.6533953147E-01 5.4916625508E-01 5.3679256072E-01 5.2793309628E-01 5.2230181467E-01 5.1961316202E-01 5.1958323722E-01 5.2193091832E-01 5.2637895147E-01 5.3265499817E-01 5.4049263721E-01 5.4963231738E-01 5.5982225795E-01 5.7081929364E-01 5.8238966149E-01 5.9430972711E-01 6.0636664823E-01 6.1835897377E-01 6.3009717694E-01 6.4140412116E-01 6.5211545813E-01 6.6207995745E-01 6.7115976759E-01 6.7923060857E-01 6.8618189657E-01 6.9191680143E-01 6.9635223812E-01 6.9941879349E-01 7.0106059001E-01 7.0123508846E-01 6.9991283170E-01 6.9707713205E-01 6.9272370485E-01 6.8686025115E-01 6.7950599253E-01 6.7069116139E-01 6.6045645006E-01 6.4885242217E-01 6.3593889022E-01 6.2178426283E-01 6.0646486563E-01 5.9006423969E-01 5.7267242151E-01 5.5438520830E-01 5.3530341277E-01 5.1553211120E-01 4.9517988876E-01 4.7435808586E-01 4.5318004942E-01 4.3176039249E-01 4.1021426613E-01 3.8865664656E-01 3.6720164125E-01 3.4596181680E-01 3.2504755176E-01 3.0456641705E-01 2.8462258656E-01 2.6531628045E-01 2.4674324316E-01 2.2899425811E-01 2.1215470094E-01 1.9630413261E-01 1.8151593372E-01 1.6785698106E-01 1.5538736719E-01 1.4416016352E-01 1.3422122732E-01 1.2560905261E-01 1.1835466490E-01 1.1248155934E-01 1.0800568161E-01 1.0493545095E-01 1.0327182410E-01 1.0300839902E-01 1.0413155710E-01 1.0662064206E-01 1.1044817412E-01 1.1558009723E-01 1.2197605760E-01 1.2958971126E-01 1.3836905838E-01 1.4825680212E-01 1.5919072937E-01 1.7110411114E-01 1.8392611975E-01 1.9758226049E-01 2.1199481493E-01 2.2708329338E-01 2.4276489374E-01 2.5895496431E-01 2.7556746781E-01 2.9251544416E-01 3.0971146958E-01 3.2706810949E-01 + 7.2286342434E-01 6.8278035859E-01 6.4783973392E-01 6.1778570812E-01 5.9235531712E-01 5.7127970781E-01 5.5428536903E-01 5.4109535559E-01 5.3143050018E-01 5.2501060807E-01 5.2155562983E-01 5.2078680731E-01 5.2242778838E-01 5.2620570611E-01 5.3185221826E-01 5.3910450325E-01 5.4770620903E-01 5.5740835141E-01 5.6797015892E-01 5.7915986127E-01 5.9075541908E-01 6.0254519261E-01 6.1432854770E-01 6.2591639730E-01 6.3713167748E-01 6.4780975694E-01 6.5779877946E-01 6.6695993906E-01 6.7516768798E-01 6.8230987773E-01 6.8828783402E-01 6.9301636653E-01 6.9642371473E-01 6.9845143143E-01 6.9905420572E-01 6.9819962758E-01 6.9586789634E-01 6.9205147555E-01 6.8675469718E-01 6.7999331789E-01 6.7179403068E-01 6.6219393515E-01 6.5123996984E-01 6.3898831015E-01 6.2550373566E-01 6.1085897042E-01 5.9513400012E-01 5.7841537005E-01 5.6079546762E-01 5.4237179344E-01 5.2324622472E-01 5.0352427496E-01 4.8331435366E-01 4.6272702968E-01 4.4187430208E-01 4.2086888178E-01 3.9982348752E-01 3.7885015944E-01 3.5805959330E-01 3.3756049836E-01 3.1745898166E-01 2.9785796138E-01 2.7885661151E-01 2.6054984024E-01 2.4302780383E-01 2.2637545786E-01 2.1067214738E-01 1.9599123712E-01 1.8239978308E-01 1.6995824608E-01 1.5872024806E-01 1.4873237141E-01 1.4003400144E-01 1.3265721206E-01 1.2662669411E-01 1.2195972610E-01 1.1866618635E-01 1.1674860581E-01 1.1620226024E-01 1.1701530060E-01 1.1916892003E-01 1.2263755580E-01 1.2738912445E-01 1.3338528810E-01 1.4058174998E-01 1.4892857682E-01 1.5837054591E-01 1.6884751453E-01 1.8029480909E-01 1.9264363168E-01 2.0582148142E-01 2.1975258797E-01 2.3435835465E-01 2.4955780872E-01 2.6526805596E-01 2.8140473726E-01 2.9788248464E-01 3.1461537419E-01 3.3151737355E-01 3.4850278180E-01 + 6.9203044294E-01 6.5628652377E-01 6.2540458623E-01 5.9912920543E-01 5.7719882182E-01 5.5934694822E-01 5.4530337156E-01 5.3479534416E-01 5.2754875972E-01 5.2328930909E-01 5.2174361119E-01 5.2264031471E-01 5.2571116604E-01 5.3069203964E-01 5.3732392674E-01 5.4535387895E-01 5.5453590332E-01 5.6463180575E-01 5.7541198005E-01 5.8665614000E-01 5.9815399232E-01 6.0970584857E-01 6.2112317433E-01 6.3222907451E-01 6.4285871373E-01 6.5285967107E-01 6.6209222900E-01 6.7042959631E-01 6.7775806541E-01 6.8397710456E-01 6.8899938594E-01 6.9275075068E-01 6.9517011233E-01 6.9620930048E-01 6.9583284655E-01 6.9401771384E-01 6.9075297439E-01 6.8603943532E-01 6.7988921738E-01 6.7232528884E-01 6.6338095789E-01 6.5309932689E-01 6.4153271193E-01 6.2874203121E-01 6.1479616606E-01 5.9977129810E-01 5.8375022656E-01 5.6682166931E-01 5.4907955167E-01 5.3062228663E-01 5.1155205025E-01 4.9197405616E-01 4.7199583260E-01 4.5172650571E-01 4.3127609258E-01 4.1075480733E-01 3.9027238354E-01 3.6993741617E-01 3.4985672579E-01 3.3013474800E-01 3.1087295060E-01 2.9216928095E-01 2.7411764563E-01 2.5680742451E-01 2.4032302096E-01 2.2474344977E-01 2.1014196409E-01 1.9658572258E-01 1.8413549761E-01 1.7284542509E-01 1.6276279655E-01 1.5392789344E-01 1.4637386382E-01 1.4012664103E-01 1.3520490410E-01 1.3162007892E-01 1.2937637962E-01 1.2847088889E-01 1.2889367610E-01 1.3062795168E-01 1.3365025639E-01 1.3793068347E-01 1.4343313202E-01 1.5011558952E-01 1.5793044131E-01 1.6682480490E-01 1.7674088683E-01 1.8761635951E-01 1.9938475584E-01 2.1197587895E-01 2.2531622462E-01 2.3932941377E-01 2.5393663259E-01 2.6905707769E-01 2.8460840379E-01 3.0050717145E-01 3.1666929251E-01 3.3301047077E-01 3.4944663567E-01 3.6589436683E-01 + 6.6447012447E-01 6.3273960023E-01 6.0559610300E-01 5.8278555468E-01 5.6404869077E-01 5.4912223848E-01 5.3774008605E-01 5.2963443854E-01 5.2453695525E-01 5.2217986417E-01 5.2229704904E-01 5.2462510474E-01 5.2890435692E-01 5.3487984208E-01 5.4230224446E-01 5.5092878640E-01 5.6052406904E-01 5.7086086056E-01 5.8172082938E-01 5.9289522013E-01 6.0418547036E-01 6.1540376632E-01 6.2637353661E-01 6.3692988243E-01 6.4691994390E-01 6.5620320191E-01 6.6465171547E-01 6.7215029462E-01 6.7859660958E-01 6.8390123670E-01 6.8798764251E-01 6.9079210695E-01 6.9226358765E-01 6.9236352691E-01 6.9106560357E-01 6.8835543213E-01 6.8423021155E-01 6.7869832659E-01 6.7177890450E-01 6.6350133023E-01 6.5390472334E-01 6.4303737993E-01 6.3095618317E-01 6.1772598586E-01 6.0341896877E-01 5.8811397830E-01 5.7189584732E-01 5.5485470286E-01 5.3708526438E-01 5.1868613629E-01 4.9975909848E-01 4.8040839839E-01 4.6074004821E-01 4.4086113057E-01 4.2087911619E-01 4.0090119655E-01 3.8103363479E-01 3.6138113765E-01 3.4204625136E-01 3.2312878389E-01 3.0472525614E-01 2.8692838416E-01 2.6982659447E-01 2.5350357429E-01 2.3803785828E-01 2.2350245305E-01 2.0996450080E-01 1.9748498285E-01 1.8611846378E-01 1.7591287675E-01 1.6690935020E-01 1.5914207595E-01 1.5263821854E-01 1.4741786542E-01 1.4349401743E-01 1.4087261867E-01 1.3955262489E-01 1.3952610915E-01 1.4077840342E-01 1.4328827466E-01 1.4702813369E-01 1.5196427493E-01 1.5805714539E-01 1.6526164047E-01 1.7352742476E-01 1.8279927538E-01 1.9301744570E-01 2.0411804687E-01 2.1603344501E-01 2.2869267131E-01 2.4202184280E-01 2.5594459106E-01 2.7038249670E-01 2.8525552681E-01 3.0048247320E-01 3.1598138891E-01 3.3167002078E-01 3.4746623563E-01 3.6328843810E-01 3.7905597790E-01 + 6.3950011260E-01 6.1147749659E-01 5.8777269652E-01 5.6813382854E-01 5.5230473219E-01 5.4002611663E-01 5.3103669484E-01 5.2507430141E-01 5.2187698904E-01 5.2118409967E-01 5.2273730574E-01 5.2628161770E-01 5.3156635400E-01 5.3834606975E-01 5.4638144096E-01 5.5544010098E-01 5.6529742660E-01 5.7573727093E-01 5.8655264100E-01 5.9754631798E-01 6.0853141830E-01 6.1933189437E-01 6.2978297362E-01 6.3973153528E-01 6.4903642415E-01 6.5756870142E-01 6.6521183241E-01 6.7186181182E-01 6.7742722697E-01 6.8182926024E-01 6.8500163167E-01 6.8689048345E-01 6.8745420789E-01 6.8666322095E-01 6.8449968346E-01 6.8095717259E-01 6.7604030600E-01 6.6976432161E-01 6.6215461597E-01 6.5324624426E-01 6.4308338514E-01 6.3171877404E-01 6.1921310799E-01 6.0563442586E-01 5.9105746732E-01 5.7556301439E-01 5.5923721902E-01 5.4217092047E-01 5.2445895606E-01 5.0619946895E-01 4.8749321641E-01 4.6844288218E-01 4.4915239613E-01 4.2972626468E-01 4.1026891508E-01 3.9088405663E-01 3.7167406162E-01 3.5273936899E-01 3.3417791293E-01 3.1608457927E-01 2.9855069137E-01 2.8166352803E-01 2.6550587484E-01 2.5015561081E-01 2.3568533167E-01 2.2216201083E-01 2.0964669930E-01 1.9819426495E-01 1.8785317196E-01 1.7866530052E-01 1.7066580704E-01 1.6388302471E-01 1.5833840400E-01 1.5404649269E-01 1.5101495462E-01 1.4924462631E-01 1.4872961028E-01 1.4945740385E-01 1.5140906197E-01 1.5455939255E-01 1.5887718243E-01 1.6432545233E-01 1.7086173865E-01 1.7843840007E-01 1.8700294695E-01 1.9649839098E-01 2.0686361314E-01 2.1803374724E-01 2.2994057697E-01 2.4251294381E-01 2.5567716352E-01 2.6935744863E-01 2.8347633470E-01 2.9795510781E-01 3.1271423104E-01 3.2767376758E-01 3.4275379827E-01 3.5787483148E-01 3.7295820312E-01 3.8792646501E-01 diff --git a/Tests/UnitTests/TestCore/FormFactorTest.h b/Tests/UnitTests/TestCore/FormFactorTest.h index 076edb53efe28ab6e075628717d1f14e7bc77092..d867719f5f5910b9a987fef4479d1261872528d9 100644 --- a/Tests/UnitTests/TestCore/FormFactorTest.h +++ b/Tests/UnitTests/TestCore/FormFactorTest.h @@ -15,22 +15,22 @@ #ifndef FORMFACTORTEST_H #define FORMFACTORTEST_H -//#include "FormFactorAnisoPyramid.h" +#include "FormFactorAnisoPyramid.h" #include "FormFactorBox.h" #include "FormFactorCone.h" #include "FormFactorCone6.h" #include "FormFactorCylinder.h" -//#include "FormFactorCuboctahedron.h" -#include "FormFactorEllipsoid.h" +#include "FormFactorCuboctahedron.h" +#include "FormFactorEllipsoidalCylinder.h" #include "FormFactorFullSphere.h" #include "FormFactorFullSpheroid.h" -//#include "FormFactorHemiSpheroid.h" +#include "FormFactorHemiEllipsoid.h" #include "FormFactorParallelepiped.h" #include "FormFactorPrism3.h" #include "FormFactorPrism6.h" #include "FormFactorPyramid.h" #include "FormFactorSphere.h" -//#include "FormFactorSpheroid.h" +#include "FormFactorSpheroid.h" #include "FormFactorTetrahedron.h" #include "gtest/gtest.h" @@ -42,6 +42,66 @@ class FormFactorTest : public ::testing::Test virtual ~FormFactorTest(){} }; + +//Test form factor of an anisotropic pyramid +TEST_F(FormFactorTest, AnisoPyramid) +{ + double length = 12.; + double height = 5.; + double width = 14.; + double alpha = 0.8; + double tga = std::tan(alpha); + double volume = height*(length*width + - (length + width)*height/tga + + 4.0/3.0*height*height/(tga*tga)); + + FormFactorAnisoPyramid anisopyramid(length, width, height, alpha); + + EXPECT_EQ("FormFactorAnisoPyramid",anisopyramid.getName()); + EXPECT_DOUBLE_EQ(volume, anisopyramid.getVolume()); + EXPECT_EQ(12., anisopyramid.getLength()); + EXPECT_EQ(14., anisopyramid.getWidth()); + EXPECT_EQ(5., anisopyramid.getHeight()); + EXPECT_EQ(0.8, anisopyramid.getAlpha()); + EXPECT_EQ((int)4, anisopyramid.getNumberOfStochasticParameters()); + + FormFactorAnisoPyramid *anisopyramidclone = anisopyramid.clone(); + EXPECT_EQ("FormFactorAnisoPyramid",anisopyramidclone->getName()); + EXPECT_DOUBLE_EQ(volume, anisopyramidclone->getVolume()); + EXPECT_EQ(12., anisopyramidclone->getLength()); + EXPECT_EQ(14., anisopyramidclone->getWidth()); + EXPECT_EQ(5., anisopyramidclone->getHeight()); + EXPECT_EQ(0.8, anisopyramidclone->getAlpha()); + EXPECT_EQ((int)4, anisopyramidclone->getNumberOfStochasticParameters()); +} + +//Test form factor of an hemiellipsoid +TEST_F(FormFactorTest, HemiEllipsoid) +{ + double radius_a = 6.; + double radius_b = 7.; + double height = 5.; + + double volume = 2.*M_PI*radius_a*radius_b*height/3.; + + FormFactorHemiEllipsoid hemiellipsoid(radius_a, radius_b, height); + + EXPECT_EQ("FormFactorHemiEllipsoid",hemiellipsoid.getName()); + EXPECT_EQ(6., hemiellipsoid.getRadiusA()); + EXPECT_EQ(7., hemiellipsoid.getRadiusB()); + EXPECT_EQ(5., hemiellipsoid.getHeight()); + EXPECT_DOUBLE_EQ(volume, hemiellipsoid.getVolume()); + EXPECT_EQ((int)3, hemiellipsoid.getNumberOfStochasticParameters()); + + FormFactorHemiEllipsoid *hemiellipsoidclone = hemiellipsoid.clone(); + EXPECT_EQ("FormFactorHemiEllipsoid",hemiellipsoidclone->getName()); + EXPECT_EQ(6., hemiellipsoidclone->getRadiusA()); + EXPECT_EQ(7., hemiellipsoidclone->getRadiusB()); + EXPECT_EQ(5., hemiellipsoidclone->getHeight()); + EXPECT_DOUBLE_EQ(volume, hemiellipsoidclone->getVolume()); + EXPECT_EQ((int)3, hemiellipsoidclone->getNumberOfStochasticParameters()); +} + // Test form factor of a box TEST_F(FormFactorTest, Box) { @@ -60,7 +120,6 @@ TEST_F(FormFactorTest, Box) EXPECT_EQ(3, box.getNumberOfStochasticParameters()); FormFactorBox *boxclone = box.clone(); - EXPECT_EQ("FormFactorBox",boxclone->getName()); EXPECT_EQ(7., boxclone->getWidth()); EXPECT_EQ(5., boxclone->getHeight()); @@ -72,9 +131,9 @@ TEST_F(FormFactorTest, Box) // Test form factor of a cone TEST_F(FormFactorTest, Cone) { - double radius = 3.; + double radius = 6.; double height = 5.; - double alpha = 0.5; + double alpha = 0.8; double tga = std::tan(alpha); double HdivRtga = height/tga/radius; double volume = M_PI/3.*tga*radius*radius*radius* @@ -83,16 +142,15 @@ TEST_F(FormFactorTest, Cone) FormFactorCone cone(radius, height, alpha); EXPECT_EQ("FormFactorCone",cone.getName()); - EXPECT_EQ(3., cone.getRadius()); + EXPECT_EQ(6., cone.getRadius()); EXPECT_EQ(5., cone.getHeight()); EXPECT_EQ(0.5, cone.getAlpha()); EXPECT_DOUBLE_EQ(volume, cone.getVolume()); EXPECT_EQ((int)3, cone.getNumberOfStochasticParameters()); FormFactorCone *coneclone = cone.clone(); - EXPECT_EQ("FormFactorCone",coneclone->getName()); - EXPECT_EQ(3., coneclone->getRadius()); + EXPECT_EQ(6., coneclone->getRadius()); EXPECT_EQ(5., coneclone->getHeight()); EXPECT_EQ(0.5, coneclone->getAlpha()); EXPECT_DOUBLE_EQ(volume, coneclone->getVolume()); @@ -102,9 +160,9 @@ TEST_F(FormFactorTest, Cone) // Test form factor of a cone6 TEST_F(FormFactorTest, Cone6) { - double radius = 3.; + double radius = 6.; double height = 5.; - double alpha = 0.5; + double alpha = 0.8; double tga = std::tan(alpha); double HdivRtga = 2.*height/tga/radius/std::sqrt(3.); double volume = 3./4.*tga*radius*radius*radius* @@ -113,16 +171,15 @@ TEST_F(FormFactorTest, Cone6) FormFactorCone6 cone6(radius, height, alpha); EXPECT_EQ("FormFactorCone6",cone6.getName()); - EXPECT_EQ(3., cone6.getRadius()); + EXPECT_EQ(6., cone6.getRadius()); EXPECT_EQ(5., cone6.getHeight()); EXPECT_EQ(0.5, cone6.getAlpha()); EXPECT_DOUBLE_EQ(volume, cone6.getVolume()); EXPECT_EQ((int)3, cone6.getNumberOfStochasticParameters()); FormFactorCone6 *cone6clone = cone6.clone(); - EXPECT_EQ("FormFactorCone6",cone6clone->getName()); - EXPECT_EQ(3., cone6clone->getRadius()); + EXPECT_EQ(6., cone6clone->getRadius()); EXPECT_EQ(5., cone6clone->getHeight()); EXPECT_EQ(0.5, cone6clone->getAlpha()); EXPECT_DOUBLE_EQ(volume, cone6clone->getVolume()); @@ -130,31 +187,41 @@ TEST_F(FormFactorTest, Cone6) } // Test form factor of a cuboctahedron -//TEST_F(FormFactorTest, Cuboctahedron) -//{ -// double radius = 3.; -// double height = 4; -// double height_ratio = 1.; -// double alpha = 0.5; - -// double tga = std::tan(alpha); -// double HdivRtga = height/half_side/tga; -// double ratioHdivRtga = height_ratio*height/half_side/tga; -//double volume = 4./3.*tga*half_side*half_side*half_side*( 2. -// - (1. - HdivRtga)*(1. - HdivRtga)*(1. - HdivRtga) -// - (1. - ratioHdivRtga)*(1. - ratioHdivRtga)*(1. - ratioHdivRtga)); - - // FormFactorCuboctahedron cuboctahedron(radius, width, height, alpha); - - // EXPECT_EQ(4., cuboctahedron.getHeight()); - // EXPECT_EQ(3., cuboctahedron.getRadius()); - // EXPECT_EQ(5., cuboctahedron.getWidth()); - //EXPECT_EQ(5., cuboctahedron.getVolume()); - // EXPECT_EQ(2, ellipsoid.getNumberOfStochasticParameters()); +TEST_F(FormFactorTest, Cuboctahedron) +{ + double half_side = 5.; + double height = 4; + double height_ratio = 1.; + double alpha = 0.8; - //FormFactorCuboctahedron *cuboctahedronclone = cuboctahedron.clone(); + double tga = std::tan(alpha); + double HdivRtga = height/half_side/tga; + double ratioHdivRtga = height_ratio*height/half_side/tga; + double volume = 4./3.*tga*half_side*half_side*half_side*( 2. + - (1. - HdivRtga)*(1. - HdivRtga)*(1. - HdivRtga) + - (1. - ratioHdivRtga)*(1. - ratioHdivRtga)*(1. - ratioHdivRtga)); + + FormFactorCuboctahedron cuboctahedron(half_side, height, + height_ratio, alpha); + + EXPECT_EQ("FormFactorCuboctahedron",cuboctahedron.getName()); + EXPECT_EQ(4., cuboctahedron.getHeight()); + EXPECT_EQ(5., cuboctahedron.getHalfSide()); + EXPECT_EQ(1., cuboctahedron.getHeightRatio()); + EXPECT_EQ(0.8, cuboctahedron.getAlpha()); + EXPECT_DOUBLE_EQ(volume, cuboctahedron.getVolume()); + EXPECT_EQ((int)4, cuboctahedron.getNumberOfStochasticParameters()); + + FormFactorCuboctahedron *cuboctahedronclone = cuboctahedron.clone(); + EXPECT_EQ("FormFactorCuboctahedron",cuboctahedronclone->getName()); + EXPECT_EQ(4., cuboctahedronclone->getHeight()); + EXPECT_EQ(5., cuboctahedronclone->getHalfSide()); + EXPECT_EQ(1., cuboctahedronclone->getHeightRatio()); + EXPECT_EQ(0.8, cuboctahedronclone->getAlpha()); + EXPECT_DOUBLE_EQ(volume, cuboctahedron.getVolume()); + EXPECT_EQ((int)4, cuboctahedronclone->getNumberOfStochasticParameters()); -//} +} // Test form factor of a cylinder TEST_F(FormFactorTest, Cylinder) @@ -164,7 +231,6 @@ TEST_F(FormFactorTest, Cylinder) double volume = M_PI*radius*radius*height; FormFactorCylinder cylinder(height,radius); - EXPECT_EQ("FormFactorCylinder",cylinder.getName()); EXPECT_EQ(5., cylinder.getHeight()); EXPECT_EQ(3., cylinder.getRadius()); @@ -172,7 +238,6 @@ TEST_F(FormFactorTest, Cylinder) EXPECT_EQ((int)2, cylinder.getNumberOfStochasticParameters()); FormFactorCylinder *cylinderclone = cylinder.clone(); - EXPECT_EQ("FormFactorCylinder",cylinderclone->getName()); EXPECT_EQ(5., cylinderclone->getHeight()); EXPECT_EQ(3., cylinderclone-> getRadius()); @@ -180,27 +245,32 @@ TEST_F(FormFactorTest, Cylinder) EXPECT_EQ((int)2, cylinderclone-> getNumberOfStochasticParameters()); } -// Test form factor of an ellipsoid - check form factor -//TEST_F(FormFactorTest, Ellipsoid) -//{ -// double radius = 3.; -// double width = 5.; -// double height = 4; -// double alpha = 0.5; - //double volume = ; - - // FormFactorEllipsoid ellipsoid(radius, width, height, alpha); - - // EXPECT_EQ("FormFactorEllipsoid",ellipsoid.getName()); - // EXPECT_EQ(4., ellipsoid.getHeight()); - // EXPECT_EQ(3., ellipsoid.getRadius()); - // EXPECT_EQ(5., ellipsoid.getWidth()); - // EXPECT_EQ(5., ellipsoid.getVolume()); - // EXPECT_EQ(2, ellipsoid.getNumberOfStochasticParameters()); - - //FormFactorEllipsoid *ellispoidclone = ellipsoid.clone(); +// Test form factor of an ellipsoidal cylinder +TEST_F(FormFactorTest, EllipsoidalCylinder) +{ + double radius = 3.; + double width = 5.; + double height = 4; + double volume = M_PI*radius*width*height; + + FormFactorEllipsoidalCylinder ellipscyl(radius, width, height); + + EXPECT_EQ("FormFactorEllipsoidalCylinder",ellipscyl.getName()); + EXPECT_EQ(4., ellipscyl.getHeight()); + EXPECT_EQ(3., ellipscyl.getRadius()); + EXPECT_EQ(5., ellipscyl.getWidth()); + EXPECT_DOUBLE_EQ(volume, ellipscyl.getVolume()); + EXPECT_EQ((int)3, ellipscyl.getNumberOfStochasticParameters()); + + FormFactorEllipsoidalCylinder *ellipscylclone = ellipscyl.clone(); + EXPECT_EQ("FormFactorEllipsoidalCylinder",ellipscylclone->getName()); + EXPECT_EQ(4., ellipscylclone->getHeight()); + EXPECT_EQ(3., ellipscylclone->getRadius()); + EXPECT_EQ(5., ellipscylclone->getWidth()); + EXPECT_DOUBLE_EQ(volume, ellipscylclone->getVolume()); + EXPECT_EQ((int)3, ellipscylclone->getNumberOfStochasticParameters()); -//} +} // Test form factor of a full sphere TEST_F(FormFactorTest, FullSphere) @@ -229,21 +299,22 @@ TEST_F(FormFactorTest, FullSpheroid) { double radius = 3.; double height = 5.; - // double volume = 2./3.*M_PI*radius*radius*height; + double volume = 2./3.*M_PI*radius*radius*height; FormFactorFullSpheroid fullspheroid(radius,height); EXPECT_EQ("FormFactorFullSpheroid",fullspheroid.getName()); EXPECT_EQ(3., fullspheroid.getRadius()); EXPECT_EQ(5., fullspheroid.getHeight()); - // EXPECT_EQ(volume, fullspheroid.getVolume()); + EXPECT_DOUBLE_EQ(volume, fullspheroid.getVolume()); EXPECT_EQ((int)2, fullspheroid.getNumberOfStochasticParameters()); - // FormFactorFullSpheroid *fullspheroidclone = fullspheroid.clone(); - // EXPECT_EQ(3., fullspheroidclone->getRadius()); - // EXPECT_EQ(5, fullspheroidclone->getHeight()); - /* EXPECT_EQ(volume, fullspheroidclone->getVolume()); - EXPECT_EQ((int)2, fullspheroidclone->getNumberOfStochasticParameters());*/ + FormFactorFullSpheroid *fullspheroidclone = fullspheroid.clone(); + EXPECT_EQ("FormFactorFullSpheroid",fullspheroidclone->getName()); + EXPECT_EQ(3., fullspheroidclone->getRadius()); + EXPECT_EQ(5, fullspheroidclone->getHeight()); + EXPECT_DOUBLE_EQ(volume, fullspheroidclone->getVolume()); + EXPECT_EQ((int)2, fullspheroidclone->getNumberOfStochasticParameters()); } @@ -288,7 +359,7 @@ TEST_F(FormFactorTest, Prism3) FormFactorPrism3 *prism3clone = prism3.clone(); EXPECT_EQ("FormFactorPrism3",prism3clone->getName()); - EXPECT_EQ(double(4.), prism3clone->getHeight()); + EXPECT_EQ(4., prism3clone->getHeight()); EXPECT_EQ(3., prism3clone->getHalfSide()); EXPECT_DOUBLE_EQ(volume, prism3clone->getVolume()); EXPECT_EQ((int)2, prism3clone->getNumberOfStochasticParameters()); @@ -322,8 +393,8 @@ TEST_F(FormFactorTest, Prism6) TEST_F(FormFactorTest, Pyramid) { double height = 4.; - double half_side = 3.; - double alpha = 0.5; + double half_side = 5.; + double alpha = 0.8; double tga = std::tan(alpha); double HdivRtga = height/half_side/tga; double volume = 4./3.*tga*half_side*half_side*half_side*( 1. @@ -365,16 +436,43 @@ TEST_F(FormFactorTest, Sphere) FormFactorSphere *sphereclone = sphere.clone(); EXPECT_EQ("FormFactorSphere", sphereclone->getName()); - EXPECT_EQ(3., sphereclone->getHeight()); + EXPECT_DOUBLE_EQ(3., sphereclone->getHeight()); EXPECT_EQ((int)2, sphereclone->getNumberOfStochasticParameters()); } +// Test form factor of a spheroid +TEST_F(FormFactorTest, Spheroid) +{ + double height = 5.; + double radius = 3.; + double flattening = 1.5; + double total_height =2.*flattening *radius; + double volume = M_PI*radius*height/flattening*(1.-height/(3.*flattening*radius)); + + FormFactorSpheroid spheroid(radius, height,flattening); + + EXPECT_EQ("FormFactorSpheroid", spheroid.getName()); + EXPECT_EQ(5., spheroid.getHeight()); + EXPECT_EQ(3., spheroid.getRadius()); + EXPECT_DOUBLE_EQ(total_height, spheroid.getHeightFullSpheroid()); + EXPECT_DOUBLE_EQ(volume, spheroid.getVolume()); + EXPECT_EQ((int)3, spheroid.getNumberOfStochasticParameters()); + + FormFactorSpheroid *spheroidclone = spheroid.clone(); + EXPECT_EQ("FormFactorSpheroid", spheroidclone->getName()); + EXPECT_EQ(5., spheroidclone->getHeight()); + EXPECT_EQ(3., spheroidclone->getRadius()); + EXPECT_DOUBLE_EQ(total_height, spheroidclone->getHeightFullSpheroid()); + EXPECT_DOUBLE_EQ(volume, spheroidclone->getVolume()); + EXPECT_EQ((int)3, spheroidclone->getNumberOfStochasticParameters()); +} + // Test form factor of a tetrahedron TEST_F(FormFactorTest, Tetrahedron) { - double height = 5.; - double half_side = 3.; - double alpha = 0.5; + double height = 4.; + double half_side = 8.; + double alpha = 0.8; double tga = std::tan(alpha); double sqrt3HdivRtga = std::sqrt(3.)*height/half_side/tga; double volume = tga/3.*half_side*half_side*half_side*( @@ -390,7 +488,6 @@ TEST_F(FormFactorTest, Tetrahedron) EXPECT_EQ((int)3, tetrahedron.getNumberOfStochasticParameters()); FormFactorTetrahedron *tetrahedronclone = tetrahedron.clone(); - EXPECT_EQ("FormFactorTetrahedron", tetrahedronclone->getName()); EXPECT_EQ(5., tetrahedronclone->getHeight()); EXPECT_EQ(3., tetrahedronclone->getHalfSide()); @@ -399,5 +496,7 @@ TEST_F(FormFactorTest, Tetrahedron) EXPECT_EQ((int)3, tetrahedronclone->getNumberOfStochasticParameters()); } + + #endif // FORMFACTORTEST_H diff --git a/dev-tools/python-bindings/MakePyCore.py b/dev-tools/python-bindings/MakePyCore.py index 8c66bb61a66bbfcc29fa9ee70f897b0ce61b24aa..2b8116030ebf60d4cc7e2ab557b06a2315dd1e06 100644 --- a/dev-tools/python-bindings/MakePyCore.py +++ b/dev-tools/python-bindings/MakePyCore.py @@ -40,16 +40,19 @@ include_classes = [ "Crystal", "Detector", "FTDistribution2DCauchy", + "FormFactorAnisoPyramid", "FormFactorBox", "FormFactorCone", + "FormFactorCone6", + "FormFactorCuboctahedron", "FormFactorCylinder", "FormFactorCrystal", "FormFactorDecoratorDebyeWaller", - "FormFactorEllipsoid", + "FormFactorEllipsoidalCylinder", "FormFactorFullSphere", "FormFactorFullSpheroid", "FormFactorGauss", - "FormFactorHemiSpheroid", + "FormFactorHemiEllipsoid", "FormFactorLorentz", "FormFactorParallelepiped", "FormFactorPrism3", @@ -57,6 +60,7 @@ include_classes = [ "FormFactorPyramid", "FormFactorSphere", "FormFactorSphereGaussianRadius", + "FormFactorSpheroid", "HomogeneousMaterial", "IAxis", "ICloneable",