From: Wolfgang Bangerth Date: Mon, 16 Sep 2019 23:37:50 +0000 (-0600) Subject: Add a test. X-Git-Tag: v9.2.0-rc1~1041^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd5ba92993985d00629f16a2fd423d0855eb79be;p=dealii.git Add a test. --- diff --git a/tests/data_out/data_out_complex_postprocessor_02.cc b/tests/data_out/data_out_complex_postprocessor_02.cc new file mode 100644 index 0000000000..1260423cc6 --- /dev/null +++ b/tests/data_out/data_out_complex_postprocessor_02.cc @@ -0,0 +1,183 @@ +// --------------------------------------------------------------------- +// +// Copyright (C) 2019 by the deal.II authors +// +// This file is part of the deal.II library. +// +// The deal.II library is free software; you can use it, redistribute +// it, and/or modify it under the terms of the GNU Lesser General +// Public License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// The full text of the license can be found in the file LICENSE.md at +// the top level directory of deal.II. +// +// --------------------------------------------------------------------- + + +// Check DataOut for complex vectors, using a postprocessor (indeed, +// a postprocessor similar to the one from step-29) +// +// This is a test similar to the _01 test, but for a vector-valued +// element. + +#include + +#include +#include +#include + +#include +#include + +#include +#include +#include + +#include +#include + +#include + +#include +#include +#include + +#include "../tests.h" + + +template +class ComputeMagnitudes : public DataPostprocessor +{ +public: + virtual std::vector + get_names() const override; + + virtual UpdateFlags + get_needed_update_flags() const override; + + virtual void + evaluate_vector_field( + const DataPostprocessorInputs::Vector &inputs, + std::vector> &computed_quantities) const override; +}; + + +template +std::vector +ComputeMagnitudes::get_names() const +{ + return {"abs_u", "abs_v"}; +} + + + +template +UpdateFlags +ComputeMagnitudes::get_needed_update_flags() const +{ + return update_values; +} + + +template +void +ComputeMagnitudes::evaluate_vector_field( + const DataPostprocessorInputs::Vector &inputs, + std::vector> & computed_quantities) const +{ + Assert(computed_quantities.size() == inputs.solution_values.size(), + ExcDimensionMismatch(computed_quantities.size(), + inputs.solution_values.size())); + + for (unsigned int i = 0; i < computed_quantities.size(); i++) + { + Assert(computed_quantities[i].size() == 2, + ExcDimensionMismatch(computed_quantities[i].size(), 2)); + Assert(inputs.solution_values[i].size() == 4, + ExcDimensionMismatch(inputs.solution_values[i].size(), 4)); + + const std::complex u(inputs.solution_values[i](0), + inputs.solution_values[i](1)); + const std::complex v(inputs.solution_values[i](2), + inputs.solution_values[i](3)); + + computed_quantities[i](0) = std::abs(u); + computed_quantities[i](1) = std::abs(v); + } +} + + + +template +void +check() +{ + Triangulation tria; + GridGenerator::hyper_cube(tria, 0., 1.); + tria.refine_global(1); + tria.begin_active()->set_refine_flag(); + tria.execute_coarsening_and_refinement(); + + // Create a system of 2 elements, each of which will have + // complex-valued solution components + FESystem fe(FE_Q(1), 2); + DoFHandler dof_handler(tria); + dof_handler.distribute_dofs(fe); + + // Initialize them with more or less random values + Vector> v(dof_handler.n_dofs()); + for (unsigned int i = 0; i < v.size(); ++i) + v(i) = std::complex(1. * i, -1. * i); + + ComputeMagnitudes postprocessor; + DataOut data_out; + data_out.attach_dof_handler(dof_handler); + + // Output first the solution, then the postprocessed one. This + // allows us to compare the latter in a visualization program + data_out.add_data_vector(v, "solution"); + data_out.add_data_vector(v, postprocessor); + data_out.build_patches(); + + data_out.write_gnuplot(deallog.get_file_stream()); +} + + + +int +main() +{ + initlog(); + + try + { + check<1>(); + check<2>(); + check<3>(); + } + catch (std::exception &exc) + { + deallog << std::endl + << std::endl + << "----------------------------------------------------" + << std::endl; + deallog << "Exception on processing: " << std::endl + << exc.what() << std::endl + << "Aborting!" << std::endl + << "----------------------------------------------------" + << std::endl; + return 1; + } + catch (...) + { + deallog << std::endl + << std::endl + << "----------------------------------------------------" + << std::endl; + deallog << "Unknown exception!" << std::endl + << "Aborting!" << std::endl + << "----------------------------------------------------" + << std::endl; + return 1; + } +} diff --git a/tests/data_out/data_out_complex_postprocessor_02.with_complex_values=on.output b/tests/data_out/data_out_complex_postprocessor_02.with_complex_values=on.output new file mode 100644 index 0000000000..9f7181823d --- /dev/null +++ b/tests/data_out/data_out_complex_postprocessor_02.with_complex_values=on.output @@ -0,0 +1,803 @@ + +# This file was generated by the deal.II library. + + +# +# For a description of the GNUPLOT format see the GNUPLOT manual. +# +# +0.500000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +1.00000 2.00000 -2.00000 3.00000 -3.00000 3.60555 3.60555 + + +0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.250000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 + + +0.250000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 +0.500000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 + + +# This file was generated by the deal.II library. + + +# +# For a description of the GNUPLOT format see the GNUPLOT manual. +# +# +0.500000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +1.00000 0.00000 2.00000 -2.00000 3.00000 -3.00000 3.60555 3.60555 + +0.500000 0.500000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +1.00000 0.500000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 + + +0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.500000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 + +0.00000 1.00000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 +0.500000 1.00000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.500000 0.500000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +1.00000 0.500000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 + +0.500000 1.00000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +1.00000 1.00000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.00000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 +0.250000 0.00000 18.0000 -18.0000 19.0000 -19.0000 26.1725 26.1725 + +0.00000 0.250000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 +0.250000 0.250000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 + + +0.250000 0.00000 18.0000 -18.0000 19.0000 -19.0000 26.1725 26.1725 +0.500000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 + +0.250000 0.250000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.500000 0.250000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 + + +0.00000 0.250000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 +0.250000 0.250000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 + +0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.250000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.250000 0.250000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.500000 0.250000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 + +0.250000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 +0.500000 0.500000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 + + +# This file was generated by the deal.II library. + + +# +# For a description of the GNUPLOT format see the GNUPLOT manual. +# +# +0.500000 0.00000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +1.00000 0.00000 0.00000 2.00000 -2.00000 3.00000 -3.00000 3.60555 3.60555 + + +0.500000 0.00000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 + + +0.500000 0.00000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 + + +1.00000 0.00000 0.00000 2.00000 -2.00000 3.00000 -3.00000 3.60555 3.60555 +1.00000 0.500000 0.00000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 + + +1.00000 0.00000 0.00000 2.00000 -2.00000 3.00000 -3.00000 3.60555 3.60555 +1.00000 0.00000 0.500000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +1.00000 0.500000 0.00000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +1.00000 0.500000 0.00000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +1.00000 0.00000 0.500000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +1.00000 0.00000 0.500000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.00000 0.500000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 + + +0.00000 0.500000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 +0.00000 1.00000 0.00000 18.0000 -18.0000 19.0000 -19.0000 26.1725 26.1725 + + +0.00000 0.500000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.500000 1.00000 0.00000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.00000 1.00000 0.00000 18.0000 -18.0000 19.0000 -19.0000 26.1725 26.1725 +0.500000 1.00000 0.00000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 + + +0.00000 1.00000 0.00000 18.0000 -18.0000 19.0000 -19.0000 26.1725 26.1725 +0.00000 1.00000 0.500000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 + + +0.500000 1.00000 0.00000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.00000 1.00000 0.500000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.00000 1.00000 0.500000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +1.00000 0.500000 0.00000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.500000 1.00000 0.00000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +1.00000 0.500000 0.00000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 +1.00000 1.00000 0.00000 28.0000 -28.0000 29.0000 -29.0000 40.3113 40.3113 + + +1.00000 0.500000 0.00000 6.00000 -6.00000 7.00000 -7.00000 9.21954 9.21954 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.500000 1.00000 0.00000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 +1.00000 1.00000 0.00000 28.0000 -28.0000 29.0000 -29.0000 40.3113 40.3113 + + +0.500000 1.00000 0.00000 20.0000 -20.0000 21.0000 -21.0000 29.0000 29.0000 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +1.00000 1.00000 0.00000 28.0000 -28.0000 29.0000 -29.0000 40.3113 40.3113 +1.00000 1.00000 0.500000 30.0000 -30.0000 31.0000 -31.0000 43.1393 43.1393 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 +1.00000 1.00000 0.500000 30.0000 -30.0000 31.0000 -31.0000 43.1393 43.1393 + + +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 +1.00000 1.00000 0.500000 30.0000 -30.0000 31.0000 -31.0000 43.1393 43.1393 + + +0.00000 0.00000 0.500000 32.0000 -32.0000 33.0000 -33.0000 45.9674 45.9674 +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 + + +0.00000 0.00000 0.500000 32.0000 -32.0000 33.0000 -33.0000 45.9674 45.9674 +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 + + +0.00000 0.00000 0.500000 32.0000 -32.0000 33.0000 -33.0000 45.9674 45.9674 +0.00000 0.00000 1.00000 34.0000 -34.0000 35.0000 -35.0000 48.7955 48.7955 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.00000 1.00000 36.0000 -36.0000 37.0000 -37.0000 51.6236 51.6236 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.00000 0.500000 1.00000 38.0000 -38.0000 39.0000 -39.0000 54.4518 54.4518 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +0.00000 0.00000 1.00000 34.0000 -34.0000 35.0000 -35.0000 48.7955 48.7955 +0.500000 0.00000 1.00000 36.0000 -36.0000 37.0000 -37.0000 51.6236 51.6236 + + +0.00000 0.00000 1.00000 34.0000 -34.0000 35.0000 -35.0000 48.7955 48.7955 +0.00000 0.500000 1.00000 38.0000 -38.0000 39.0000 -39.0000 54.4518 54.4518 + + +0.500000 0.00000 1.00000 36.0000 -36.0000 37.0000 -37.0000 51.6236 51.6236 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +0.00000 0.500000 1.00000 38.0000 -38.0000 39.0000 -39.0000 54.4518 54.4518 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +1.00000 0.00000 0.500000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.00000 1.00000 36.0000 -36.0000 37.0000 -37.0000 51.6236 51.6236 + + +1.00000 0.00000 0.500000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +1.00000 0.00000 0.500000 10.0000 -10.0000 11.0000 -11.0000 14.8661 14.8661 +1.00000 0.00000 1.00000 42.0000 -42.0000 43.0000 -43.0000 60.1082 60.1082 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 +1.00000 0.500000 1.00000 44.0000 -44.0000 45.0000 -45.0000 62.9365 62.9365 + + +0.500000 0.00000 1.00000 36.0000 -36.0000 37.0000 -37.0000 51.6236 51.6236 +1.00000 0.00000 1.00000 42.0000 -42.0000 43.0000 -43.0000 60.1082 60.1082 + + +0.500000 0.00000 1.00000 36.0000 -36.0000 37.0000 -37.0000 51.6236 51.6236 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +1.00000 0.00000 1.00000 42.0000 -42.0000 43.0000 -43.0000 60.1082 60.1082 +1.00000 0.500000 1.00000 44.0000 -44.0000 45.0000 -45.0000 62.9365 62.9365 + + +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 +1.00000 0.500000 1.00000 44.0000 -44.0000 45.0000 -45.0000 62.9365 62.9365 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.00000 1.00000 0.500000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.00000 0.500000 1.00000 38.0000 -38.0000 39.0000 -39.0000 54.4518 54.4518 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +0.00000 1.00000 0.500000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.00000 1.00000 0.500000 24.0000 -24.0000 25.0000 -25.0000 34.6554 34.6554 +0.00000 1.00000 1.00000 46.0000 -46.0000 47.0000 -47.0000 65.7647 65.7647 + + +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 +0.500000 1.00000 1.00000 48.0000 -48.0000 49.0000 -49.0000 68.5930 68.5930 + + +0.00000 0.500000 1.00000 38.0000 -38.0000 39.0000 -39.0000 54.4518 54.4518 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +0.00000 0.500000 1.00000 38.0000 -38.0000 39.0000 -39.0000 54.4518 54.4518 +0.00000 1.00000 1.00000 46.0000 -46.0000 47.0000 -47.0000 65.7647 65.7647 + + +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 +0.500000 1.00000 1.00000 48.0000 -48.0000 49.0000 -49.0000 68.5930 68.5930 + + +0.00000 1.00000 1.00000 46.0000 -46.0000 47.0000 -47.0000 65.7647 65.7647 +0.500000 1.00000 1.00000 48.0000 -48.0000 49.0000 -49.0000 68.5930 68.5930 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 + + +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 + + +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 +1.00000 1.00000 0.500000 30.0000 -30.0000 31.0000 -31.0000 43.1393 43.1393 + + +1.00000 0.500000 0.500000 14.0000 -14.0000 15.0000 -15.0000 20.5183 20.5183 +1.00000 0.500000 1.00000 44.0000 -44.0000 45.0000 -45.0000 62.9365 62.9365 + + +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 +1.00000 1.00000 0.500000 30.0000 -30.0000 31.0000 -31.0000 43.1393 43.1393 + + +0.500000 1.00000 0.500000 26.0000 -26.0000 27.0000 -27.0000 37.4833 37.4833 +0.500000 1.00000 1.00000 48.0000 -48.0000 49.0000 -49.0000 68.5930 68.5930 + + +1.00000 1.00000 0.500000 30.0000 -30.0000 31.0000 -31.0000 43.1393 43.1393 +1.00000 1.00000 1.00000 50.0000 -50.0000 51.0000 -51.0000 71.4213 71.4213 + + +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 +1.00000 0.500000 1.00000 44.0000 -44.0000 45.0000 -45.0000 62.9365 62.9365 + + +0.500000 0.500000 1.00000 40.0000 -40.0000 41.0000 -41.0000 57.2800 57.2800 +0.500000 1.00000 1.00000 48.0000 -48.0000 49.0000 -49.0000 68.5930 68.5930 + + +1.00000 0.500000 1.00000 44.0000 -44.0000 45.0000 -45.0000 62.9365 62.9365 +1.00000 1.00000 1.00000 50.0000 -50.0000 51.0000 -51.0000 71.4213 71.4213 + + +0.500000 1.00000 1.00000 48.0000 -48.0000 49.0000 -49.0000 68.5930 68.5930 +1.00000 1.00000 1.00000 50.0000 -50.0000 51.0000 -51.0000 71.4213 71.4213 + + +0.00000 0.00000 0.00000 52.0000 -52.0000 53.0000 -53.0000 74.2496 74.2496 +0.250000 0.00000 0.00000 54.0000 -54.0000 55.0000 -55.0000 77.0779 77.0779 + + +0.00000 0.00000 0.00000 52.0000 -52.0000 53.0000 -53.0000 74.2496 74.2496 +0.00000 0.250000 0.00000 56.0000 -56.0000 57.0000 -57.0000 79.9062 79.9062 + + +0.00000 0.00000 0.00000 52.0000 -52.0000 53.0000 -53.0000 74.2496 74.2496 +0.00000 0.00000 0.250000 60.0000 -60.0000 61.0000 -61.0000 85.5628 85.5628 + + +0.250000 0.00000 0.00000 54.0000 -54.0000 55.0000 -55.0000 77.0779 77.0779 +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 + + +0.250000 0.00000 0.00000 54.0000 -54.0000 55.0000 -55.0000 77.0779 77.0779 +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 + + +0.00000 0.250000 0.00000 56.0000 -56.0000 57.0000 -57.0000 79.9062 79.9062 +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 + + +0.00000 0.250000 0.00000 56.0000 -56.0000 57.0000 -57.0000 79.9062 79.9062 +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.00000 0.00000 0.250000 60.0000 -60.0000 61.0000 -61.0000 85.5628 85.5628 +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 + + +0.00000 0.00000 0.250000 60.0000 -60.0000 61.0000 -61.0000 85.5628 85.5628 +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.250000 0.00000 0.00000 54.0000 -54.0000 55.0000 -55.0000 77.0779 77.0779 +0.500000 0.00000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 + + +0.250000 0.00000 0.00000 54.0000 -54.0000 55.0000 -55.0000 77.0779 77.0779 +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 + + +0.250000 0.00000 0.00000 54.0000 -54.0000 55.0000 -55.0000 77.0779 77.0779 +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 + + +0.500000 0.00000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +0.500000 0.250000 0.00000 68.0000 -68.0000 69.0000 -69.0000 96.8762 96.8762 + + +0.500000 0.00000 0.00000 0.00000 0.00000 1.00000 -1.00000 1.00000 1.00000 +0.500000 0.00000 0.250000 70.0000 -70.0000 71.0000 -71.0000 99.7046 99.7046 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.500000 0.250000 0.00000 68.0000 -68.0000 69.0000 -69.0000 96.8762 96.8762 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.500000 0.250000 0.00000 68.0000 -68.0000 69.0000 -69.0000 96.8762 96.8762 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.500000 0.00000 0.250000 70.0000 -70.0000 71.0000 -71.0000 99.7046 99.7046 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.500000 0.00000 0.250000 70.0000 -70.0000 71.0000 -71.0000 99.7046 99.7046 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.00000 0.250000 0.00000 56.0000 -56.0000 57.0000 -57.0000 79.9062 79.9062 +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 + + +0.00000 0.250000 0.00000 56.0000 -56.0000 57.0000 -57.0000 79.9062 79.9062 +0.00000 0.500000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 + + +0.00000 0.250000 0.00000 56.0000 -56.0000 57.0000 -57.0000 79.9062 79.9062 +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.250000 0.500000 0.00000 74.0000 -74.0000 75.0000 -75.0000 105.361 105.361 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.00000 0.500000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 +0.250000 0.500000 0.00000 74.0000 -74.0000 75.0000 -75.0000 105.361 105.361 + + +0.00000 0.500000 0.00000 16.0000 -16.0000 17.0000 -17.0000 23.3452 23.3452 +0.00000 0.500000 0.250000 76.0000 -76.0000 77.0000 -77.0000 108.190 108.190 + + +0.250000 0.500000 0.00000 74.0000 -74.0000 75.0000 -75.0000 105.361 105.361 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.00000 0.500000 0.250000 76.0000 -76.0000 77.0000 -77.0000 108.190 108.190 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.00000 0.500000 0.250000 76.0000 -76.0000 77.0000 -77.0000 108.190 108.190 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.500000 0.250000 0.00000 68.0000 -68.0000 69.0000 -69.0000 96.8762 96.8762 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.250000 0.500000 0.00000 74.0000 -74.0000 75.0000 -75.0000 105.361 105.361 + + +0.250000 0.250000 0.00000 58.0000 -58.0000 59.0000 -59.0000 82.7345 82.7345 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.500000 0.250000 0.00000 68.0000 -68.0000 69.0000 -69.0000 96.8762 96.8762 +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 + + +0.500000 0.250000 0.00000 68.0000 -68.0000 69.0000 -69.0000 96.8762 96.8762 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.250000 0.500000 0.00000 74.0000 -74.0000 75.0000 -75.0000 105.361 105.361 +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 + + +0.250000 0.500000 0.00000 74.0000 -74.0000 75.0000 -75.0000 105.361 105.361 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.500000 0.500000 0.00000 4.00000 -4.00000 5.00000 -5.00000 6.40312 6.40312 +0.500000 0.500000 0.250000 80.0000 -80.0000 81.0000 -81.0000 113.846 113.846 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 +0.500000 0.500000 0.250000 80.0000 -80.0000 81.0000 -81.0000 113.846 113.846 + + +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 +0.500000 0.500000 0.250000 80.0000 -80.0000 81.0000 -81.0000 113.846 113.846 + + +0.00000 0.00000 0.250000 60.0000 -60.0000 61.0000 -61.0000 85.5628 85.5628 +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 + + +0.00000 0.00000 0.250000 60.0000 -60.0000 61.0000 -61.0000 85.5628 85.5628 +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 + + +0.00000 0.00000 0.250000 60.0000 -60.0000 61.0000 -61.0000 85.5628 85.5628 +0.00000 0.00000 0.500000 32.0000 -32.0000 33.0000 -33.0000 45.9674 45.9674 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.250000 0.00000 0.500000 82.0000 -82.0000 83.0000 -83.0000 116.675 116.675 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.00000 0.250000 0.500000 84.0000 -84.0000 85.0000 -85.0000 119.503 119.503 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.00000 0.00000 0.500000 32.0000 -32.0000 33.0000 -33.0000 45.9674 45.9674 +0.250000 0.00000 0.500000 82.0000 -82.0000 83.0000 -83.0000 116.675 116.675 + + +0.00000 0.00000 0.500000 32.0000 -32.0000 33.0000 -33.0000 45.9674 45.9674 +0.00000 0.250000 0.500000 84.0000 -84.0000 85.0000 -85.0000 119.503 119.503 + + +0.250000 0.00000 0.500000 82.0000 -82.0000 83.0000 -83.0000 116.675 116.675 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.00000 0.250000 0.500000 84.0000 -84.0000 85.0000 -85.0000 119.503 119.503 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.500000 0.00000 0.250000 70.0000 -70.0000 71.0000 -71.0000 99.7046 99.7046 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.250000 0.00000 0.250000 62.0000 -62.0000 63.0000 -63.0000 88.3912 88.3912 +0.250000 0.00000 0.500000 82.0000 -82.0000 83.0000 -83.0000 116.675 116.675 + + +0.500000 0.00000 0.250000 70.0000 -70.0000 71.0000 -71.0000 99.7046 99.7046 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.500000 0.00000 0.250000 70.0000 -70.0000 71.0000 -71.0000 99.7046 99.7046 +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 +0.500000 0.250000 0.500000 88.0000 -88.0000 89.0000 -89.0000 125.160 125.160 + + +0.250000 0.00000 0.500000 82.0000 -82.0000 83.0000 -83.0000 116.675 116.675 +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 + + +0.250000 0.00000 0.500000 82.0000 -82.0000 83.0000 -83.0000 116.675 116.675 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.500000 0.00000 0.500000 8.00000 -8.00000 9.00000 -9.00000 12.0416 12.0416 +0.500000 0.250000 0.500000 88.0000 -88.0000 89.0000 -89.0000 125.160 125.160 + + +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 +0.500000 0.250000 0.500000 88.0000 -88.0000 89.0000 -89.0000 125.160 125.160 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.00000 0.500000 0.250000 76.0000 -76.0000 77.0000 -77.0000 108.190 108.190 + + +0.00000 0.250000 0.250000 64.0000 -64.0000 65.0000 -65.0000 91.2195 91.2195 +0.00000 0.250000 0.500000 84.0000 -84.0000 85.0000 -85.0000 119.503 119.503 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.00000 0.500000 0.250000 76.0000 -76.0000 77.0000 -77.0000 108.190 108.190 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.00000 0.500000 0.250000 76.0000 -76.0000 77.0000 -77.0000 108.190 108.190 +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 + + +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 +0.250000 0.500000 0.500000 90.0000 -90.0000 91.0000 -91.0000 127.988 127.988 + + +0.00000 0.250000 0.500000 84.0000 -84.0000 85.0000 -85.0000 119.503 119.503 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.00000 0.250000 0.500000 84.0000 -84.0000 85.0000 -85.0000 119.503 119.503 +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 + + +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 +0.250000 0.500000 0.500000 90.0000 -90.0000 91.0000 -91.0000 127.988 127.988 + + +0.00000 0.500000 0.500000 22.0000 -22.0000 23.0000 -23.0000 31.8277 31.8277 +0.250000 0.500000 0.500000 90.0000 -90.0000 91.0000 -91.0000 127.988 127.988 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 + + +0.250000 0.250000 0.250000 66.0000 -66.0000 67.0000 -67.0000 94.0479 94.0479 +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 + + +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 +0.500000 0.500000 0.250000 80.0000 -80.0000 81.0000 -81.0000 113.846 113.846 + + +0.500000 0.250000 0.250000 72.0000 -72.0000 73.0000 -73.0000 102.533 102.533 +0.500000 0.250000 0.500000 88.0000 -88.0000 89.0000 -89.0000 125.160 125.160 + + +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 +0.500000 0.500000 0.250000 80.0000 -80.0000 81.0000 -81.0000 113.846 113.846 + + +0.250000 0.500000 0.250000 78.0000 -78.0000 79.0000 -79.0000 111.018 111.018 +0.250000 0.500000 0.500000 90.0000 -90.0000 91.0000 -91.0000 127.988 127.988 + + +0.500000 0.500000 0.250000 80.0000 -80.0000 81.0000 -81.0000 113.846 113.846 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 +0.500000 0.250000 0.500000 88.0000 -88.0000 89.0000 -89.0000 125.160 125.160 + + +0.250000 0.250000 0.500000 86.0000 -86.0000 87.0000 -87.0000 122.332 122.332 +0.250000 0.500000 0.500000 90.0000 -90.0000 91.0000 -91.0000 127.988 127.988 + + +0.500000 0.250000 0.500000 88.0000 -88.0000 89.0000 -89.0000 125.160 125.160 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + + +0.250000 0.500000 0.500000 90.0000 -90.0000 91.0000 -91.0000 127.988 127.988 +0.500000 0.500000 0.500000 12.0000 -12.0000 13.0000 -13.0000 17.6918 17.6918 + +