diff -Naur lammps-22Sep09/doc/Section_commands.html lammps-24Sep09/doc/Section_commands.html --- lammps-22Sep09/doc/Section_commands.html 2009-08-12 10:45:55.000000000 -0600 +++ lammps-24Sep09/doc/Section_commands.html 2009-09-24 11:42:17.000000000 -0600 @@ -332,7 +332,7 @@ LAMMPS is built with the appropriate package.
This section describes how to unpack, make, and run LAMMPS, for both -new and experienced users. +
This section describes how to build and run LAMMPS, for both new and +experienced users.
2.1 What's in the LAMMPS distributionRead this first: +
This section has the following sub-sections:
+Building LAMMPS can be non-trivial. You will likely need to edit a makefile, there are compiler options, additional libraries can be used (MPI, FFT), etc. Please read this section carefully. If you are not @@ -74,8 +84,10 @@ there isn't a similar Makefile for in the distribution), send it to the developers and we'll include it in future LAMMPS releases.
-Building a LAMMPS executable: -
+The src directory contains the C++ source and header files for LAMMPS. It also contains a top-level Makefile and a MAKE sub-directory with low-level Makefile.* files for several machines. From within the src @@ -93,8 +105,10 @@
If you get no errors and an executable like lmp_linux or lmp_mac is produced, you're done; it's your lucky day.
-Errors that can occur when making LAMMPS: -
+(1) If the make command breaks immediately with errors that indicate it can't find files with a "*" in their names, this can be because your machine's make doesn't support wildcard expansion in a makefile. @@ -116,16 +130,29 @@ whatever existing file is closest to your platform as a starting point. See the next section for more instructions.
-Editing a new low-level Makefile.foo: +
(3) If you get a link-time error about missing libraries or missing +dependencies, then it can be because:
+The first issue is discussed below. The other two issue mean you need +to edit your low-level Makefile.foo, as discussed in the next +sub-section. +
+These are the issues you need to address when editing a low-level -Makefile for your machine. With a couple exceptions, the only portion -of the file you should need to edit is the "System-specific Settings" +Makefile for your machine. The only portion of the file you should +need to edit is the first line and the "System-specific Settings" section.
-(1) Change the first line of Makefile.foo to include the word "foo" -and whatever other options you set. This is the line you will see if -you just type "make". +
(1) Change the first line of Makefile.foo to list the word "foo" after +the "#", and whatever other options you set. This is the line you +will see if you just type "make".
(2) Set the paths and flags for your C++ compiler, including optimization flags. You can use g++, the open-source GNU compiler, @@ -210,6 +237,17 @@ create a Makefile.foo patterned after Makefile.tflop, which uses different rules that do not involve dependency files.
+(9) The comments after the "System-specific Settings" heading refer to +Fortran, BLAS, GPU, etc system libraries. You only need to include +these settings if you intend to build LAMMPS with the optional +packages that use add-on LAMMPS libraries that need these system +libraries. See the section below for more details. If you +are not using these packages and their associated LAMMPS libraries, +then you can either comment out the relevant lines in the Makefile, or +leave the setting blank. If you do not do this, and your system does +not have the specified system library (e.g. a BLAS or CUDA library) +then you will get an error when you build LAMMPS. +
That's it. Once you have a correct Makefile.foo and you have pre-built the MPI and FFT libraries it will use, all you need to do from the src directory is type one of these 2 commands: @@ -219,8 +257,10 @@
You should get the executable lmp_foo when the build is complete.
-Additional build tips: -
+(1) Building LAMMPS for multiple platforms.
You can make LAMMPS for multiple platforms from the same src @@ -259,7 +299,7 @@
On a Macintosh, try compiling the pair "long" files without the -fast compiler option.
-(4) Building for a Macintosh. +
(4) Building for a Mac.
OS X is BSD Unix, so it already works. See the Makefile.mac file.
@@ -277,12 +317,23 @@This section has the following sub-sections: +
+The source code for LAMMPS is structured as a large set of core files -which are always used, plus optional packages, which are groups of -files that enable a specific set of features. For example, force -fields for molecular systems or granular systems are in packages. You -can see the list of both standard and user-contributed packages by -typing "make package". +which are always included, plus optional packages. Packages are +groups of files that enable a specific set of features. For example, +force fields for molecular systems or granular systems are in +packages. You can see the list of all packages by typing "make +package".
The current list of standard packages is as follows:
@@ -307,8 +358,10 @@There are also user-contributed packages which may be as simple as a single additional file or many files grouped together which add a -specific functionality to the code. The difference between a -standard package versus a user package is as follows. +specific functionality to the code. +
+The difference between a standard package versus a user package is +as follows.
Standard packages are supported by the LAMMPS developers and are written in a syntax and style consistent with the rest of LAMMPS. @@ -324,11 +377,13 @@
Any or all packages can be included or excluded independently when +Including/excluding packages: + +
Any or all packages can be included or excluded independently BEFORE LAMMPS is built.
-The two exceptions to this are the "gpu" and "opt" packages. Some of -the files in these packages require other packages to also be +
Note: The two exceptions to this are the "gpu" and "opt" packages. +Some of the files in these packages require other packages to also be included. If this is not the case, then those subsidiary files in "gpu" and "opt" will not be installed either. To install all the files in package "gpu", the "asphere" package must also be installed. @@ -350,103 +405,136 @@ no-user", "make yes-all" or "make no-all" to include/exclude various sets of packages. Type "make package" to see the various options.
-These make commands work by simply moving files back and forth between -the main src directory and sub-directories with the package name, so -that the files are seen or not seen when LAMMPS is built. After you -have included or excluded a package, you must re-build LAMMPS. +
IMPORTANT NOTE: These make commands work by simply moving files back +and forth between the main src directory and sub-directories with the +package name, so that the files are seen or not seen when LAMMPS is +built. After you have included or excluded a package, you must +re-build LAMMPS.
Additional make options exist to help manage LAMMPS files that exist in both the src directory and in package sub-directories. You do not normally need to use these commands unless you are editing LAMMPS -files or have downloaded a patch from the LAMMPS WWW site. Typing -"make package-update" will overwrite src files with files from the -package directories if the package has been included. It should be -used after a patch is installed, since patches only update the master -package version of a file. Typing "make package-overwrite" will -overwrite files in the package directories with src files. Typing -"make package-check" will list differences between src and package -versions of the same files. Again, type "make package" to see the -various options. -
-A few packages require that additional libraries be compiled first, -which LAMMPS will link to when it builds. These are stored under -under the lammps/lib directory of the distribution. Currently, these -include libraries for the "gpu", "meam", "poems", and "reax" packages. -You should look at the README files in the lib directories +files or have downloaded a patch from the LAMMPS WWW site. +
+Typing "make package-update" will overwrite src files with files from +the package directories if the package has been included. It should +be used after a patch is installed, since patches only update the +master package version of a file. Typing "make package-overwrite" +will overwrite files in the package directories with src files. +Typing "make package-check" will list differences between src and +package versions of the same files. Again, type "make package" to see +the various options. +
+A few packages (standard or user) require that add-on libraries be +compiled first, which LAMMPS will link to when it builds. The source +code for these libraries are included in the LAMMPS distribution under +the "lib" directory. Look at the README files in the lib directories (e.g. lib/reax/README) for instructions on how to build each library.
-The "gpu" library in lib/gpu contains code to enable portions of -LAMMPS to run on a GPU chip associated with your CPU. Currently, only -NVIDIA GPUs are supported. Building this library requires NVIDIA Cuda -tools to be installed on your system. See the Running on GPUs -section below for more info about installing and using Cuda. -
-The "meam" library in lib/meam computes the modified embedded atom -method potential, which is a generalization of EAM potentials that can -be used to model a wider variety of materials. This MEAM -implementation was written by Greg Wagner at Sandia. It requires a -F90 compiler to build. The C++ to FORTRAN function calls in pair_meam.cpp -assumes that FORTRAN object names are converted to C object names by -appending an underscore character. This is generally the case, but -on machines that do not conform to this convention, you will need to -modify either the C++ code or your compiler settings. -
-The "poems" library in lib/poems computes the constrained rigid-body -motion of articulated (jointed) multibody systems. POEMS was written -and is distributed by Prof Kurt Anderson's group at Rensselaer -Polytechnic Institute (RPI). -
-The "reax" library in lib/reax computes the Reactive Force Field -(ReaxFF) potential, developed by Adri van Duin in Bill Goddard's group -at CalTech. This implementation in LAMMPS uses many of Adri's files -and was developed by Aidan Thompson at Sandia and Hansohl Cho at MIT. -It requires a F77 or F90 compiler to build. -The C++ to FORTRAN function calls in pair_reax.cpp -assume that FORTRAN object names are converted to C object names by -appending an underscore character. This is generally the case, but -on machines that do not conform to this convention, you will need to -modify either the C++ code or your compiler settings. The name conversion -is handled by the preprocessor macro called FORTRAN in pair_reax_fortran.h. -Different definitions of this macro can be obtained by adding a -machine-specific macro definition to the CCFLAGS variable in your Makefile -e.g. -D_IBM. See pair_reax_fortran.h for more info. +
IMPORTANT NOTE: If you have included a package that uses +one of the libraries, then you must build the library BEFORE +building LAMMPS itself, as the LAMMPS build will link with +the library file. +
+Here is a bit of information about each library: +
+The "atc" library in lib/atc is used by the user-atc package. It +provides continuum field estimation and molecular dynamics-finite +element coupling methods. It was written primarily by Reese Jones, +Jeremy Templeton and Jonathan Zimmerman at Sandia. +
+The "gpu" library in lib/gpu is used by the gpu package. It +contains code to enable portions of LAMMPS to run on a GPU chip +associated with your CPU. Currently, only NVIDIA GPUs are supported. +Building this library requires NVIDIA Cuda tools to be installed on +your system. See the Running on GPUs section below for more +info about installing and using Cuda. +
+The "meam" library in lib/meam is used by the meam package. +computes the modified embedded atom method potential, which is a +generalization of EAM potentials that can be used to model a wider +variety of materials. This MEAM implementation was written by Greg +Wagner at Sandia. It requires a F90 compiler to build. The C++ to +FORTRAN function calls in pair_meam.cpp assumes that FORTRAN object +names are converted to C object names by appending an underscore +character. This is generally the case, but on machines that do not +conform to this convention, you will need to modify either the C++ +code or your compiler settings. +
+The "poems" library in lib/poems is used by the poems package. +computes the constrained rigid-body motion of articulated (jointed) +multibody systems. POEMS was written and is distributed by Prof Kurt +Anderson's group at Rensselaer Polytechnic Institute (RPI). +
+The "reax" library in lib/reax is used by the reax package. It +computes the Reactive Force Field (ReaxFF) potential, developed by +Adri van Duin in Bill Goddard's group at CalTech. This implementation +in LAMMPS uses many of Adri's files and was developed by Aidan +Thompson at Sandia and Hansohl Cho at MIT. It requires a F77 or F90 +compiler to build. The C++ to FORTRAN function calls in pair_reax.cpp +assume that FORTRAN object names are converted to C object names by +appending an underscore character. This is generally the case, but on +machines that do not conform to this convention, you will need to +modify either the C++ code or your compiler settings. The name +conversion is handled by the preprocessor macro called FORTRAN in +pair_reax_fortran.h. Different definitions of this macro can be +obtained by adding a machine-specific macro definition to the CCFLAGS +variable in your Makefile e.g. -D_IBM. See pair_reax_fortran.h for +more info.
-As its README file describes, for each library, the library is built -by typing something like +
As described in its README file, each library is built by typing +something like
-make -f Makefile.foo +make -f Makefile.g++in the appropriate directory, e.g. in lib/reax.
You must use a Makefile that is a match for your system. If one of the provided Makefiles is not appropriate for your system you will -need to edit or add one. For example, in the case of libraries of -Fortran code, your system must have a Fortran compiler, the settings -for which will be in the Makefile. -
-Once the desired library or libraries are built, you can build LAMMPS. -From the lammps/src directory type this, for example, to build LAMMPS -with ReaxFF: +need to edit or add one. For example, in the case of Fotran-based +libraries, your system must have a Fortran compiler, the settings for +which will be in the Makefile. +
+
+ +Additional Makefile settings for extra libraries: + +After the desired library or libraries are built, and the package has +been included, you can build LAMMPS itself. For example, from the +lammps/src directory you would type this, to build LAMMPS with ReaxFF. +Note that the library itself, namely lib/reax/libreax.a, must already +have been built, as dicussed in the preceding section, for the +LAMMPS build to be successful.
make yes-reax make g++-Note that simply building the library (reax in this case), which must -be done first, is not sufficient to use it from LAMMPS. You must also -include the package that uses and wraps the library before you build -LAMMPS itself. -
-To use the gpu package and library, the lo-level Makefile in -lammps/src/MAKE, such as Makefile.g++, must typically have settings -for LINKGPU and GPULIB that are specific to the NVIDIA software -installed on your system. -
-To use the meam or reax packages and libraries that are Fortran based, -the lo-level Makefile in lammps/src/MAKE, such as Makefile.g++, must -typically have settings for LINKFORT and FORTLIB that are specific to -the Fortran compiler installed on your system. This is so that the -C++ compiler can perform a cross-language link using the appropriate -Fortran libraries. +
Note that simply building the library is not sufficient to use it from +LAMMPS. You must also include the package that uses and wraps the +library before you build LAMMPS itself. +
+As discussed in point (9) of this section above, there are +settings in the low-level Makefile that specify additional system +libraries needed by individual LAMMPS add-on libraries. These are the +settings you must specify correctly in your low-level Makefile in +lammps/src/MAKE, such as Makefile.foo: +
+To use the user-atc package and library, the settings for LINKBLAS and +BLASLIB must be correct. This is so that the appropriate BLAS and +LAPACK libs, used by the user-atc library, can be found. +
+To use the gpu package and library, the settings for LINKGPU and +GPULIB must be correct. These are specific to the NVIDIA CUDA +software which must be installed on your system. +
+To use the meam or reax packages and their libraries which are Fortran +based, the settings for LINKFORT and FORTLIB must be correct. This is +so that the C++ compiler can perform a cross-language link using the +appropriate system Fortran libraries.
diff -Naur lammps-22Sep09/doc/Section_start.txt lammps-24Sep09/doc/Section_start.txt --- lammps-22Sep09/doc/Section_start.txt 2009-08-14 15:20:35.000000000 -0600 +++ lammps-24Sep09/doc/Section_start.txt 2009-09-24 11:42:17.000000000 -0600 @@ -8,8 +8,8 @@ 2. Getting Started :h3 -This section describes how to unpack, make, and run LAMMPS, for both -new and experienced users. +This section describes how to build and run LAMMPS, for both new and +experienced users. 2.1 "What's in the LAMMPS distribution"_#2_1 2.2 "Making LAMMPS"_#2_2 @@ -48,7 +48,17 @@ 2.2 Making LAMMPS :h4,link(2_2) -[{Read this first:}] +This section has the following sub-sections: + +"Read this first"_#2_2_1 +"Building a LAMMPS executable"_#2_2_2 +"Errors that can occur when making LAMMPS"_#2_2_3 +"Editing a new low-level Makefile"_#2_2_4 +"Additional build tips"_#2_2_5 :ul + +:line + +[{Read this first:}] :link(2_2_1) Building LAMMPS can be non-trivial. You will likely need to edit a makefile, there are compiler options, additional libraries can be used @@ -69,7 +79,9 @@ there isn't a similar Makefile for in the distribution), send it to the developers and we'll include it in future LAMMPS releases. -[{Building a LAMMPS executable:}] +:line + +[{Building a LAMMPS executable:}] :link(2_2_2) The src directory contains the C++ source and header files for LAMMPS. It also contains a top-level Makefile and a MAKE sub-directory with @@ -88,7 +100,9 @@ If you get no errors and an executable like lmp_linux or lmp_mac is produced, you're done; it's your lucky day. -[{Errors that can occur when making LAMMPS:}] +:line + +[{Errors that can occur when making LAMMPS:}] :link(2_2_3) (1) If the make command breaks immediately with errors that indicate it can't find files with a "*" in their names, this can be because @@ -111,16 +125,29 @@ whatever existing file is closest to your platform as a starting point. See the next section for more instructions. -[{Editing a new low-level Makefile.foo:}] +(3) If you get a link-time error about missing libraries or missing +dependencies, then it can be because: + +you have not pre-built the necessary "add-on LAMMPS library"_#2_3_3 +you are linking to a library that doesn't exist on your system +you are not linking to the necessary system library :ul + +The first issue is discussed below. The other two issue mean you need +to edit your low-level Makefile.foo, as discussed in the next +sub-section. + +:line + +[{Editing a new low-level Makefile.foo:}] :link(2_2_4) These are the issues you need to address when editing a low-level -Makefile for your machine. With a couple exceptions, the only portion -of the file you should need to edit is the "System-specific Settings" +Makefile for your machine. The only portion of the file you should +need to edit is the first line and the "System-specific Settings" section. -(1) Change the first line of Makefile.foo to include the word "foo" -and whatever other options you set. This is the line you will see if -you just type "make". +(1) Change the first line of Makefile.foo to list the word "foo" after +the "#", and whatever other options you set. This is the line you +will see if you just type "make". (2) Set the paths and flags for your C++ compiler, including optimization flags. You can use g++, the open-source GNU compiler, @@ -205,6 +232,17 @@ create a Makefile.foo patterned after Makefile.tflop, which uses different rules that do not involve dependency files. +(9) The comments after the "System-specific Settings" heading refer to +Fortran, BLAS, GPU, etc system libraries. You only need to include +these settings if you intend to build LAMMPS with the optional +packages that use add-on LAMMPS libraries that need these system +libraries. See the "section below"_#2_3_3 for more details. If you +are not using these packages and their associated LAMMPS libraries, +then you can either comment out the relevant lines in the Makefile, or +leave the setting blank. If you do not do this, and your system does +not have the specified system library (e.g. a BLAS or CUDA library) +then you will get an error when you build LAMMPS. + That's it. Once you have a correct Makefile.foo and you have pre-built the MPI and FFT libraries it will use, all you need to do from the src directory is type one of these 2 commands: @@ -214,7 +252,9 @@ You should get the executable lmp_foo when the build is complete. -[{Additional build tips:}] +:line + +[{Additional build tips:}] :link(2_2_5) (1) Building LAMMPS for multiple platforms. @@ -254,7 +294,7 @@ On a Macintosh, try compiling the pair "long" files without the -fast compiler option. -(4) Building for a Macintosh. +(4) Building for a Mac. OS X is BSD Unix, so it already works. See the Makefile.mac file. @@ -272,12 +312,23 @@ 2.3 Making LAMMPS with optional packages :h4,link(2_3) +This section has the following sub-sections: + +"Package basics"_#2_3_1 +"Including/excluding packages"_#2_3_2 +"Packages that require extra LAMMPS libraries"_#2_3_3 +"Additional Makefile settings for extra libraries"_#2_3_4 :ul + +:line + +[{Package basics:}] :link(2_3_1) + The source code for LAMMPS is structured as a large set of core files -which are always used, plus optional packages, which are groups of -files that enable a specific set of features. For example, force -fields for molecular systems or granular systems are in packages. You -can see the list of both standard and user-contributed packages by -typing "make package". +which are always included, plus optional packages. Packages are +groups of files that enable a specific set of features. For example, +force fields for molecular systems or granular systems are in +packages. You can see the list of all packages by typing "make +package". The current list of standard packages is as follows: @@ -300,8 +351,10 @@ There are also user-contributed packages which may be as simple as a single additional file or many files grouped together which add a -specific functionality to the code. The difference between a -{standard} package versus a {user} package is as follows. +specific functionality to the code. + +The difference between a {standard} package versus a {user} package is +as follows. Standard packages are supported by the LAMMPS developers and are written in a syntax and style consistent with the rest of LAMMPS. @@ -317,11 +370,13 @@ :line -Any or all packages can be included or excluded independently when +[{Including/excluding packages:}] :link(2_3_2) + +Any or all packages can be included or excluded independently BEFORE LAMMPS is built. -The two exceptions to this are the "gpu" and "opt" packages. Some of -the files in these packages require other packages to also be +Note: The two exceptions to this are the "gpu" and "opt" packages. +Some of the files in these packages require other packages to also be included. If this is not the case, then those subsidiary files in "gpu" and "opt" will not be installed either. To install all the files in package "gpu", the "asphere" package must also be installed. @@ -343,103 +398,136 @@ no-user", "make yes-all" or "make no-all" to include/exclude various sets of packages. Type "make package" to see the various options. -These make commands work by simply moving files back and forth between -the main src directory and sub-directories with the package name, so -that the files are seen or not seen when LAMMPS is built. After you -have included or excluded a package, you must re-build LAMMPS. +IMPORTANT NOTE: These make commands work by simply moving files back +and forth between the main src directory and sub-directories with the +package name, so that the files are seen or not seen when LAMMPS is +built. After you have included or excluded a package, you must +re-build LAMMPS. Additional make options exist to help manage LAMMPS files that exist in both the src directory and in package sub-directories. You do not normally need to use these commands unless you are editing LAMMPS -files or have downloaded a patch from the LAMMPS WWW site. Typing -"make package-update" will overwrite src files with files from the -package directories if the package has been included. It should be -used after a patch is installed, since patches only update the master -package version of a file. Typing "make package-overwrite" will -overwrite files in the package directories with src files. Typing -"make package-check" will list differences between src and package -versions of the same files. Again, type "make package" to see the -various options. - -A few packages require that additional libraries be compiled first, -which LAMMPS will link to when it builds. These are stored under -under the lammps/lib directory of the distribution. Currently, these -include libraries for the "gpu", "meam", "poems", and "reax" packages. -You should look at the README files in the lib directories +files or have downloaded a patch from the LAMMPS WWW site. + +Typing "make package-update" will overwrite src files with files from +the package directories if the package has been included. It should +be used after a patch is installed, since patches only update the +master package version of a file. Typing "make package-overwrite" +will overwrite files in the package directories with src files. +Typing "make package-check" will list differences between src and +package versions of the same files. Again, type "make package" to see +the various options. + +:line + +[{Packages that require extra LAMMPS libraries:}] :link(2_3_3) + +A few packages (standard or user) require that add-on libraries be +compiled first, which LAMMPS will link to when it builds. The source +code for these libraries are included in the LAMMPS distribution under +the "lib" directory. Look at the README files in the lib directories (e.g. lib/reax/README) for instructions on how to build each library. -The "gpu" library in lib/gpu contains code to enable portions of -LAMMPS to run on a GPU chip associated with your CPU. Currently, only -NVIDIA GPUs are supported. Building this library requires NVIDIA Cuda -tools to be installed on your system. See the "Running on GPUs"_#2_8 -section below for more info about installing and using Cuda. - -The "meam" library in lib/meam computes the modified embedded atom -method potential, which is a generalization of EAM potentials that can -be used to model a wider variety of materials. This MEAM -implementation was written by Greg Wagner at Sandia. It requires a -F90 compiler to build. The C++ to FORTRAN function calls in pair_meam.cpp -assumes that FORTRAN object names are converted to C object names by -appending an underscore character. This is generally the case, but -on machines that do not conform to this convention, you will need to -modify either the C++ code or your compiler settings. - -The "poems" library in lib/poems computes the constrained rigid-body -motion of articulated (jointed) multibody systems. POEMS was written -and is distributed by Prof Kurt Anderson's group at Rensselaer -Polytechnic Institute (RPI). - -The "reax" library in lib/reax computes the Reactive Force Field -(ReaxFF) potential, developed by Adri van Duin in Bill Goddard's group -at CalTech. This implementation in LAMMPS uses many of Adri's files -and was developed by Aidan Thompson at Sandia and Hansohl Cho at MIT. -It requires a F77 or F90 compiler to build. -The C++ to FORTRAN function calls in pair_reax.cpp -assume that FORTRAN object names are converted to C object names by -appending an underscore character. This is generally the case, but -on machines that do not conform to this convention, you will need to -modify either the C++ code or your compiler settings. The name conversion -is handled by the preprocessor macro called FORTRAN in pair_reax_fortran.h. -Different definitions of this macro can be obtained by adding a -machine-specific macro definition to the CCFLAGS variable in your Makefile -e.g. -D_IBM. See pair_reax_fortran.h for more info. +IMPORTANT NOTE: If you have included a package that uses +one of the libraries, then you must build the library BEFORE +building LAMMPS itself, as the LAMMPS build will link with +the library file. + +Here is a bit of information about each library: + +The "atc" library in lib/atc is used by the user-atc package. It +provides continuum field estimation and molecular dynamics-finite +element coupling methods. It was written primarily by Reese Jones, +Jeremy Templeton and Jonathan Zimmerman at Sandia. + +The "gpu" library in lib/gpu is used by the gpu package. It +contains code to enable portions of LAMMPS to run on a GPU chip +associated with your CPU. Currently, only NVIDIA GPUs are supported. +Building this library requires NVIDIA Cuda tools to be installed on +your system. See the "Running on GPUs"_#2_8 section below for more +info about installing and using Cuda. + +The "meam" library in lib/meam is used by the meam package. +computes the modified embedded atom method potential, which is a +generalization of EAM potentials that can be used to model a wider +variety of materials. This MEAM implementation was written by Greg +Wagner at Sandia. It requires a F90 compiler to build. The C++ to +FORTRAN function calls in pair_meam.cpp assumes that FORTRAN object +names are converted to C object names by appending an underscore +character. This is generally the case, but on machines that do not +conform to this convention, you will need to modify either the C++ +code or your compiler settings. + +The "poems" library in lib/poems is used by the poems package. +computes the constrained rigid-body motion of articulated (jointed) +multibody systems. POEMS was written and is distributed by Prof Kurt +Anderson's group at Rensselaer Polytechnic Institute (RPI). + +The "reax" library in lib/reax is used by the reax package. It +computes the Reactive Force Field (ReaxFF) potential, developed by +Adri van Duin in Bill Goddard's group at CalTech. This implementation +in LAMMPS uses many of Adri's files and was developed by Aidan +Thompson at Sandia and Hansohl Cho at MIT. It requires a F77 or F90 +compiler to build. The C++ to FORTRAN function calls in pair_reax.cpp +assume that FORTRAN object names are converted to C object names by +appending an underscore character. This is generally the case, but on +machines that do not conform to this convention, you will need to +modify either the C++ code or your compiler settings. The name +conversion is handled by the preprocessor macro called FORTRAN in +pair_reax_fortran.h. Different definitions of this macro can be +obtained by adding a machine-specific macro definition to the CCFLAGS +variable in your Makefile e.g. -D_IBM. See pair_reax_fortran.h for +more info. -As its README file describes, for each library, the library is built -by typing something like +As described in its README file, each library is built by typing +something like -make -f Makefile.foo :pre +make -f Makefile.g++ :pre in the appropriate directory, e.g. in lib/reax. You must use a Makefile that is a match for your system. If one of the provided Makefiles is not appropriate for your system you will -need to edit or add one. For example, in the case of libraries of -Fortran code, your system must have a Fortran compiler, the settings -for which will be in the Makefile. - -Once the desired library or libraries are built, you can build LAMMPS. -From the lammps/src directory type this, for example, to build LAMMPS -with ReaxFF: +need to edit or add one. For example, in the case of Fotran-based +libraries, your system must have a Fortran compiler, the settings for +which will be in the Makefile. + +:line + +[{Additional Makefile settings for extra libraries:}] :link(2_3_4) + +After the desired library or libraries are built, and the package has +been included, you can build LAMMPS itself. For example, from the +lammps/src directory you would type this, to build LAMMPS with ReaxFF. +Note that the library itself, namely lib/reax/libreax.a, must already +have been built, as dicussed in the preceding section, for the +LAMMPS build to be successful. make yes-reax make g++ :pre -Note that simply building the library (reax in this case), which must -be done first, is not sufficient to use it from LAMMPS. You must also -include the package that uses and wraps the library before you build -LAMMPS itself. - -To use the gpu package and library, the lo-level Makefile in -lammps/src/MAKE, such as Makefile.g++, must typically have settings -for LINKGPU and GPULIB that are specific to the NVIDIA software -installed on your system. - -To use the meam or reax packages and libraries that are Fortran based, -the lo-level Makefile in lammps/src/MAKE, such as Makefile.g++, must -typically have settings for LINKFORT and FORTLIB that are specific to -the Fortran compiler installed on your system. This is so that the -C++ compiler can perform a cross-language link using the appropriate -Fortran libraries. +Note that simply building the library is not sufficient to use it from +LAMMPS. You must also include the package that uses and wraps the +library before you build LAMMPS itself. + +As discussed in point (9) of "this section"_#2_2_4 above, there are +settings in the low-level Makefile that specify additional system +libraries needed by individual LAMMPS add-on libraries. These are the +settings you must specify correctly in your low-level Makefile in +lammps/src/MAKE, such as Makefile.foo: + +To use the user-atc package and library, the settings for LINKBLAS and +BLASLIB must be correct. This is so that the appropriate BLAS and +LAPACK libs, used by the user-atc library, can be found. + +To use the gpu package and library, the settings for LINKGPU and +GPULIB must be correct. These are specific to the NVIDIA CUDA +software which must be installed on your system. + +To use the meam or reax packages and their libraries which are Fortran +based, the settings for LINKFORT and FORTLIB must be correct. This is +so that the C++ compiler can perform a cross-language link using the +appropriate system Fortran libraries. :line diff -Naur lammps-22Sep09/doc/USER/atc/man_atom_element_map.html lammps-24Sep09/doc/USER/atc/man_atom_element_map.html --- lammps-22Sep09/doc/USER/atc/man_atom_element_map.html 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/doc/USER/atc/man_atom_element_map.html 2009-09-24 11:42:17.000000000 -0600 @@ -0,0 +1,26 @@ + + +ATC: fix_modify AtC transfer atom_element_map + + + +fix_modify AtC transfer atom_element_map
+syntax
+fix_modify AtC transfer atom_element_map <eulerian|lagrangian> <frequency>
+
fix_modify atc transfer atom_element_map eulerian 100
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_boundary_integral.html lammps-24Sep09/doc/USER/atc/man_boundary_integral.html
--- lammps-22Sep09/doc/USER/atc/man_boundary_integral.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_boundary_integral.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,26 @@
+
+
+ fix_modify AtC transfer boundary_integral stress faceset loop1
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_contour_integral.html lammps-24Sep09/doc/USER/atc/man_contour_integral.html
--- lammps-22Sep09/doc/USER/atc/man_contour_integral.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_contour_integral.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,26 @@
+
+
+ fix_modify AtC transfer contour_integral stress faceset loop1
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_disp_control.html lammps-24Sep09/doc/USER/atc/man_disp_control.html
--- lammps-22Sep09/doc/USER/atc/man_disp_control.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_disp_control.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,40 @@
+
+
+
+fix_modify AtC transfer momentum control rescale <frequency>
+
+fix_modify AtC transfer momentum control glc_displacement
+
+fix_modify AtC transfer momentum control glc_velocity
+
+fix_modify AtC transfer momentum control flux [faceset face_set_id, interpolate]
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_electron_integration.html lammps-24Sep09/doc/USER/atc/man_electron_integration.html
--- lammps-22Sep09/doc/USER/atc/man_electron_integration.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_electron_integration.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,30 @@
+
+
++num_subcycle_steps (int), optional = number of subcycle steps for the electron time integration
fix_modify AtC extrinsic electron_integration implicit fix_modify AtC extrinsic electron_integration explicit 100
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_equilibrium_start.html lammps-24Sep09/doc/USER/atc/man_equilibrium_start.html
--- lammps-22Sep09/doc/USER/atc/man_equilibrium_start.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_equilibrium_start.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,24 @@
+
+
+ fix_modify atc transfer equilibrium_start on
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_extrinsic_exchange.html lammps-24Sep09/doc/USER/atc/man_extrinsic_exchange.html
--- lammps-22Sep09/doc/USER/atc/man_extrinsic_exchange.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_extrinsic_exchange.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,24 @@
+
+
+ fix_modify AtC extrinsic exchange on
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_fem_mesh.html lammps-24Sep09/doc/USER/atc/man_fem_mesh.html
--- lammps-22Sep09/doc/USER/atc/man_fem_mesh.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_fem_mesh.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC fem create mesh 10 1 1 feRegion p p p
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_filter_scale.html lammps-24Sep09/doc/USER/atc/man_filter_scale.html
--- lammps-22Sep09/doc/USER/atc/man_filter_scale.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_filter_scale.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,28 @@
+
+
+ fix_modify AtC transfer filter scale 10.0
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_fix_atc.html lammps-24Sep09/doc/USER/atc/man_fix_atc.html
--- lammps-22Sep09/doc/USER/atc/man_fix_atc.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_fix_atc.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,119 @@
+
+
+ fix_modify AtC transfer thermal Ar_thermal.dat fix_modify AtC transfer hardy
+The following coupling example is typical, but non-exhaustive:
+
+ # ... commands to create and initialize the MD system
+
+ # initial fix to designate coupling type and group to apply it to
+ # tag group physics material_file
+ fix AtC internal atc thermal Ar_thermal.mat
+
+ # create a uniform 12 x 2 x 2 mesh that covers region contain the group
+ # nx ny nz region periodicity
+ fix_modify AtC fem create mesh 12 2 2 mdRegion f p p
+
+ # specify the control method for the type of coupling
+ # physics control_type
+ fix_modify AtC transfer thermal control flux
+
+ # specify the initial values for the empirical field "temperature"
+ # field node_group value
+ fix_modify AtC transfer initial temperature all 30.
+
+ # create an output stream for nodal fields
+ # filename output_frequency
+ fix_modify AtC transfer output atc_fe_output 100
+
+
+ run 1000
+
+likewise for this post-processing example:
+
+ # ... commands to create and initialize the MD system
+
+ # initial fix to designate post-processing and the group to apply it to
+ # no material file is allowed nor required
+ fix AtC internal atc hardy
+
+ # create a uniform 1 x 1 x 1 mesh that covers region contain the group
+ # with periodicity this effectively creats a system average
+ fix_modify AtC fem create mesh 1 1 1 box p p p
+
+ # change from default lagrangian map to eulerian
+ # refreshed every 100 steps
+ fix_modify AtC atom_element_map eulerian 100
+
+ # start with no field defined
+ fix_modify AtC transfer fields none
+
+ # add mass density, potential energy density, stress and temperature
+ fix_modify AtC transfer fields add density energy stress temperature
+
+ # create an output stream for nodal fields
+ # filename output_frequency
+ fix_modify AtC transfer output nvtFE 100 text
+
+ run 1000
+
+Note coupling and post-processing can be combined in the same simulations using separate fixes.
+ For detailed exposition of the theory and algorithms please see:
+
+Please refer to the standard finite element (FE) texts, e.g. T.J.R Hughes The finite element method , Dover 2003, for the basics of FE simulation.
+Currently,
+fix_modify commands for boundary and initial conditions:
+
+fix_modify commands for control and filtering:
+
+fix_modify commands for output:
+
+fix_modify commands for post-processing:
+
+miscellaneous fix_modify commands:
+
+Note: a set of example input files with the attendant material files are included with this package
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_fix_flux.html lammps-24Sep09/doc/USER/atc/man_fix_flux.html
--- lammps-22Sep09/doc/USER/atc/man_fix_flux.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_fix_flux.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,26 @@
+
+
+ fix_modify atc transfer fix_flux temperature faceSet 10.0
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_fix_nodes.html lammps-24Sep09/doc/USER/atc/man_fix_nodes.html
--- lammps-22Sep09/doc/USER/atc/man_fix_nodes.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_fix_nodes.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,27 @@
+
+
+ fix_modify AtC transfer fix temperature groupNAME 10. fix_modify AtC transfer fix temperature groupNAME 0 0 0 10.0 0 0 1.0
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_computes.html lammps-24Sep09/doc/USER/atc/man_hardy_computes.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_computes.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_computes.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,38 @@
+
+
+ compute virial all stress/atom fix_modify AtC transfer computes add virial volume fix_modify AtC transfer computes delete virial compute centrosymmetry all centro/atom fix_modify AtC transfer computes add centrosymmetry number
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_fields.html lammps-24Sep09/doc/USER/atc/man_hardy_fields.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_fields.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_fields.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,46 @@
+
+
+ fix_modify AtC transfer fields add velocity temperature fix_modify AtC transfer fields none fix_modify AtC transfer fields add velocity temperature
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_gradients.html lammps-24Sep09/doc/USER/atc/man_hardy_gradients.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_gradients.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_gradients.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,30 @@
+
+
+ fix_modify AtC transfer gradients add temperature velocity stress fix_modify AtC transfer gradients delete velocity
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_kernel.html lammps-24Sep09/doc/USER/atc/man_hardy_kernel.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_kernel.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_kernel.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,36 @@
+
+
+
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_on_the_fly.html lammps-24Sep09/doc/USER/atc/man_hardy_on_the_fly.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_on_the_fly.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_on_the_fly.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,34 @@
+
+
+ fix_modify AtC transfer on_the_fly bond on fix_modify AtC transfer on_the_fly kernel fix_modify AtC transfer on_the_fly kernel off
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_rates.html lammps-24Sep09/doc/USER/atc/man_hardy_rates.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_rates.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_rates.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,31 @@
+
+
+ fix_modify AtC transfer rates add temperature velocity stress fix_modify AtC transfer rates delete stress
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_hardy_set.html lammps-24Sep09/doc/USER/atc/man_hardy_set.html
--- lammps-22Sep09/doc/USER/atc/man_hardy_set.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_hardy_set.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,27 @@
+
+
+ fix_modify AtC transfer set reference_potential_energy fix_modify AtC transfer set reference_potential_energy -0.05
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_initial.html lammps-24Sep09/doc/USER/atc/man_initial.html
--- lammps-22Sep09/doc/USER/atc/man_initial.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_initial.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify atc transfer initial temperature groupNAME 10.
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_internal_quadrature.html lammps-24Sep09/doc/USER/atc/man_internal_quadrature.html
--- lammps-22Sep09/doc/USER/atc/man_internal_quadrature.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_internal_quadrature.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,23 @@
+
+
+ fix_modify atc transfer internal_quadrature off
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_mesh_delete_elements.html lammps-24Sep09/doc/USER/atc/man_mesh_delete_elements.html
--- lammps-22Sep09/doc/USER/atc/man_mesh_delete_elements.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_mesh_delete_elements.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC delete_elements gap
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_mesh_elemset.html lammps-24Sep09/doc/USER/atc/man_mesh_elemset.html
--- lammps-22Sep09/doc/USER/atc/man_mesh_elemset.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_mesh_elemset.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC mesh create_elementset middle -4.1 4.1 -100 100 -100 1100
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_mesh_faceset.html lammps-24Sep09/doc/USER/atc/man_mesh_faceset.html
--- lammps-22Sep09/doc/USER/atc/man_mesh_faceset.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_mesh_faceset.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC mesh create_faceset obndy -4.0 4.0 -12 12 -12 12 out
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_mesh_nodeset.html lammps-24Sep09/doc/USER/atc/man_mesh_nodeset.html
--- lammps-22Sep09/doc/USER/atc/man_mesh_nodeset.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_mesh_nodeset.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC mesh create_faceset left -4.1 3.9 -100 100 -100 100
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_mesh_output.html lammps-24Sep09/doc/USER/atc/man_mesh_output.html
--- lammps-22Sep09/doc/USER/atc/man_mesh_output.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_mesh_output.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,24 @@
+
+
+ fix_modify AtC mesh output meshData
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_neighbor_reset_frequency.html lammps-24Sep09/doc/USER/atc/man_neighbor_reset_frequency.html
--- lammps-22Sep09/doc/USER/atc/man_neighbor_reset_frequency.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_neighbor_reset_frequency.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC transfer neighbor_reset_frequency 1000
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_read_restart.html lammps-24Sep09/doc/USER/atc/man_read_restart.html
--- lammps-22Sep09/doc/USER/atc/man_read_restart.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_read_restart.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC transfer read_restart ATC_state
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_remove_source.html lammps-24Sep09/doc/USER/atc/man_remove_source.html
--- lammps-22Sep09/doc/USER/atc/man_remove_source.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_remove_source.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify atc transfer remove_source temperature groupNAME
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_source.html lammps-24Sep09/doc/USER/atc/man_source.html
--- lammps-22Sep09/doc/USER/atc/man_source.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_source.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify atc transfer source temperature middle temporal_ramp 10. 0.
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_thermal_control.html lammps-24Sep09/doc/USER/atc/man_thermal_control.html
--- lammps-22Sep09/doc/USER/atc/man_thermal_control.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_thermal_control.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,47 @@
+
+
+
+fix_modify AtC transfer thermal control rescale <frequency>
+
+fix_modify AtC transfer thermal control hoover
+
+fix_modify AtC transfer thermal control flux <boundary_integration_type> <face_set_id(optional)>
+
fix_modify AtC transfer thermal control none fix_modify AtC transfer thermal control rescale 10 fix_modify AtC transfer thermal control hoover fix_modify AtC transfer thermal control flux bndy_faces
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_time_filter.html lammps-24Sep09/doc/USER/atc/man_time_filter.html
--- lammps-22Sep09/doc/USER/atc/man_time_filter.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_time_filter.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,29 @@
+
+
+ fix_modify atc transfer filter on
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_time_integration.html lammps-24Sep09/doc/USER/atc/man_time_integration.html
--- lammps-22Sep09/doc/USER/atc/man_time_integration.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_time_integration.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,23 @@
+
+
+ fix_modify atc transfer pmfc on
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_transfer_atomic_output.html lammps-24Sep09/doc/USER/atc/man_transfer_atomic_output.html
--- lammps-22Sep09/doc/USER/atc/man_transfer_atomic_output.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_transfer_atomic_output.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,27 @@
+
+
+ fix_modify AtC transfer atomic_output heatMD 100 fix_modify AtC transfer atomic_output nanoMD 1 text
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_transfer_boundary.html lammps-24Sep09/doc/USER/atc/man_transfer_boundary.html
--- lammps-22Sep09/doc/USER/atc/man_transfer_boundary.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_transfer_boundary.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC transfer boundary type ghost_atoms
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_transfer_internal.html lammps-24Sep09/doc/USER/atc/man_transfer_internal.html
--- lammps-22Sep09/doc/USER/atc/man_transfer_internal.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_transfer_internal.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC transfer internal type internal_atoms
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_transfer_output.html lammps-24Sep09/doc/USER/atc/man_transfer_output.html
--- lammps-22Sep09/doc/USER/atc/man_transfer_output.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_transfer_output.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,31 @@
+
+
+ fix_modify AtC transfer output heatFE 100 fix_modify AtC transfer output hardyFE 1 text tensor_components
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_unfix_flux.html lammps-24Sep09/doc/USER/atc/man_unfix_flux.html
--- lammps-22Sep09/doc/USER/atc/man_unfix_flux.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_unfix_flux.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,26 @@
+
+
+ fix_modify atc transfer unfix_flux temperature faceSet
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_unfix_nodes.html lammps-24Sep09/doc/USER/atc/man_unfix_nodes.html
--- lammps-22Sep09/doc/USER/atc/man_unfix_nodes.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_unfix_nodes.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC transfer unfix temperature groupNAME
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/USER/atc/man_write_restart.html lammps-24Sep09/doc/USER/atc/man_write_restart.html
--- lammps-22Sep09/doc/USER/atc/man_write_restart.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/USER/atc/man_write_restart.html 2009-09-24 11:42:17.000000000 -0600
@@ -0,0 +1,25 @@
+
+
+ fix_modify AtC transfer write_restart restart.mydata
1.3.9.1
+
+
diff -Naur lammps-22Sep09/doc/fix_atc.html lammps-24Sep09/doc/fix_atc.html
--- lammps-22Sep09/doc/fix_atc.html 1969-12-31 17:00:00.000000000 -0700
+++ lammps-24Sep09/doc/fix_atc.html 2009-09-24 11:49:17.000000000 -0600
@@ -0,0 +1,231 @@
+
+Syntax: +
+fix ID groupID atc type paramfile ++
Examples: +
+fix AtC atc_atoms atc thermal Ar_thermal.dat +fix AtC atc_atoms atc transfer hardy ++
Description: +
+This fix creates a coupled finite element (FE) and molecular dynamics +(MD) simulation and/or an on-the-fly estimation of continuum fields. +Interscale operators are defined that construct continuum fields from +atomic data. Coupled simulations use FE projection approximated on a +discrete field. Currently, coupling is restricted to thermal physics. +The Hardy module can use either FE projection or integration Kernels +evaluated at mesh points. +
+Coupling methods enable appropriate corrections to the atomic data to +be made based on the FE field. For example, a Gaussian isokinetic +thermostat can apply heat sources to the atoms that varies in space on +the same scale as the FE element size. Meshes are not created +automatically and must be specified on LAMMPS regions with prescribed +element sizes. Note that mesh computations and storage run in serial +(not parallelized) so performance will degrade when large element +counts are used. +
+Note that coupling and post-processing can be combined in the same +simulations using separate fix atc commands. +
+For detailed exposition of the theory and algorithms implemented in +this fix, please see the papers here and here. +Please refer to the standard finite element (FE) texts, such as this +book, for the basics of FE simulation. +
+Thermal and two_temperature (coupling) types use a Verlet +time-integration algorithm. The hardy type does not contain its own +time-integrator and must be used with a separate fix that does contain +one, e.g. fix nve, fix nvt, etc. +
+A set of example input files with the attendant material files are +included in the examples/USER/atc directory of the LAMMPS +distribution. +
+An extensive set of additional documentation pages for the options +turned on via the fix_modify command for this fix +are inlcluded in the doc/USER/atc directory of the LAMMPS +distribution. Individual doc pages are listed and linked to below. +
+The following commands are typical of a coupling problem: +
+# ... commands to create and initialize the MD system ++
# initial fix to designate coupling type and group to apply it to + # tag group physics material_file + fix AtC internal atc thermal Ar_thermal.mat ++
# create a uniform 12 x 2 x 2 mesh that covers region contain the group + # nx ny nz region periodicity + fix_modify AtC fem create mesh 12 2 2 mdRegion f p p ++
# specify the control method for the type of coupling + # physics control_type + fix_modify AtC transfer thermal control flux ++
# specify the initial values for the empirical field "temperature" + # field node_group value + fix_modify AtC transfer initial temperature all 30.0 ++
# create an output stream for nodal fields + # filename output_frequency + fix_modify AtC transfer output atc_fe_output 100 ++
run 1000 ++
The following commands are typical of a post-processing (Hardy) problem: +
+# ... commands to create and initialize the MD system ++
# initial fix to designate post-processing and the group to apply it to + # no material file is allowed nor required + fix AtC internal atc hardy ++
# create a uniform 1 x 1 x 1 mesh that covers region contain the group + # with periodicity this effectively creats a system average + fix_modify AtC fem create mesh 1 1 1 box p p p ++
# change from default lagrangian map to eulerian + # refreshed every 100 steps + fix_modify AtC atom_element_map eulerian 100 ++
# start with no field defined + fix_modify AtC transfer fields none ++
# add mass density, potential energy density, stress and temperature + fix_modify AtC transfer fields add density energy stress temperature ++
# create an output stream for nodal fields + # filename output_frequency + fix_modify AtC transfer output nvtFE 100 text ++
run 1000 ++
Restart, fix_modify, output, run start/stop, minimize info: +
+No information about this fix is written to binary restart +files. The fix_modify options +relevant to this fix are listed below. No global scalar or vector or +per-atom quantities are stored by this fix for access by various +output commands. No parameter of this fix +can be used with the start/stop keywords of the run +command. This fix is not invoked during energy +minimization. +
+Restrictions: +
+This fix is part of the "user-atc" package. It is only enabled if +LAMMPS was built with that package, which also requires the ATC +library be built and linked with LAMMPS. See the Making +LAMMPS section for more info. +
+Related commands: +
+After specifying this fix in your input script, several other +fix_modify commands are used to setup the problem, +e.g. define the finite element mesh and prescribe initial and boundary +conditions. +
+fix_modify commands for setup: +
+fix_modify commands for boundary and initial conditions: +
+fix_modify commands for control and filtering: +
+fix_modify commands for output: +
+fix_modify commands for post-processing: +
+miscellaneous fix_modify commands: +
+ +Default: none +
+(Wagner) Wagner, Jones, Templeton, Parks, Special Issue of +Computer Methods and Applied Mechanics, 197, 3351-3365 (2008). +
+ + +(Zimmerman) Zimmerman, Webb, Hoyt, Jones, Klein, Bammann, Special +Issue of Modelling and Simulation in Materials Science and +Engineering, 12, S319 (2004). +
+ + +(Hughes) T.J.R Hughes, "The Finite Element Method," Dover (2003). +
+ diff -Naur lammps-22Sep09/doc/fix_atc.txt lammps-24Sep09/doc/fix_atc.txt --- lammps-22Sep09/doc/fix_atc.txt 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/doc/fix_atc.txt 2009-09-24 11:49:17.000000000 -0600 @@ -0,0 +1,220 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix atc command :h3 + +[Syntax:] + +fix ID groupID atc type paramfile :pre + +ID, group-ID are documented in "fix"_fix.html command :ulb,l +atc = style name of this fix command :l +type = {thermal} or {two_temperature} or {hardy} :l + {thermal} = thermal coupling with field: temperature + {two_temperature} = electron-phonon coupling with field, temperature and electron_temperature + {hardy} = Hardy on-the-fly post-processing +paramfile = file with material parameters (not specified for {hardy} type) :l,ule + +[Examples:] + +fix AtC atc_atoms atc thermal Ar_thermal.dat +fix AtC atc_atoms atc transfer hardy :pre + +[Description:] + +This fix creates a coupled finite element (FE) and molecular dynamics +(MD) simulation and/or an on-the-fly estimation of continuum fields. +Interscale operators are defined that construct continuum fields from +atomic data. Coupled simulations use FE projection approximated on a +discrete field. Currently, coupling is restricted to thermal physics. +The Hardy module can use either FE projection or integration Kernels +evaluated at mesh points. + +Coupling methods enable appropriate corrections to the atomic data to +be made based on the FE field. For example, a Gaussian isokinetic +thermostat can apply heat sources to the atoms that varies in space on +the same scale as the FE element size. Meshes are not created +automatically and must be specified on LAMMPS regions with prescribed +element sizes. Note that mesh computations and storage run in serial +(not parallelized) so performance will degrade when large element +counts are used. + +Note that coupling and post-processing can be combined in the same +simulations using separate fix atc commands. + +For detailed exposition of the theory and algorithms implemented in +this fix, please see the papers "here"_#Wagner and "here"_#Zimmerman. +Please refer to the standard finite element (FE) texts, such as "this +book"_#Hughes, for the basics of FE simulation. + +:line + +{Thermal} and {two_temperature} (coupling) types use a Verlet +time-integration algorithm. The {hardy} type does not contain its own +time-integrator and must be used with a separate fix that does contain +one, e.g. "fix nve"_fix_nve.html, "fix nvt"_fix_nvt.html, etc. + +A set of example input files with the attendant material files are +included in the examples/USER/atc directory of the LAMMPS +distribution. + +An extensive set of additional documentation pages for the options +turned on via the "fix_modify"_fix_modify.html command for this fix +are inlcluded in the doc/USER/atc directory of the LAMMPS +distribution. Individual doc pages are listed and linked to below. + +The following commands are typical of a coupling problem: + + # ... commands to create and initialize the MD system :pre + + # initial fix to designate coupling type and group to apply it to + # tag group physics material_file + fix AtC internal atc thermal Ar_thermal.mat :pre + + # create a uniform 12 x 2 x 2 mesh that covers region contain the group + # nx ny nz region periodicity + fix_modify AtC fem create mesh 12 2 2 mdRegion f p p :pre + + # specify the control method for the type of coupling + # physics control_type + fix_modify AtC transfer thermal control flux :pre + + # specify the initial values for the empirical field "temperature" + # field node_group value + fix_modify AtC transfer initial temperature all 30.0 :pre + + # create an output stream for nodal fields + # filename output_frequency + fix_modify AtC transfer output atc_fe_output 100 :pre + + run 1000 :pre + +The following commands are typical of a post-processing (Hardy) problem: + + # ... commands to create and initialize the MD system :pre + + # initial fix to designate post-processing and the group to apply it to + # no material file is allowed nor required + fix AtC internal atc hardy :pre + + # create a uniform 1 x 1 x 1 mesh that covers region contain the group + # with periodicity this effectively creats a system average + fix_modify AtC fem create mesh 1 1 1 box p p p :pre + + # change from default lagrangian map to eulerian + # refreshed every 100 steps + fix_modify AtC atom_element_map eulerian 100 :pre + + # start with no field defined + fix_modify AtC transfer fields none :pre + + # add mass density, potential energy density, stress and temperature + fix_modify AtC transfer fields add density energy stress temperature :pre + + # create an output stream for nodal fields + # filename output_frequency + fix_modify AtC transfer output nvtFE 100 text :pre + + run 1000 :pre + +:line + +[Restart, fix_modify, output, run start/stop, minimize info:] + +No information about this fix is written to "binary restart +files"_restart.html. The "fix_modify"_fix_modify.html options +relevant to this fix are listed below. No global scalar or vector or +per-atom quantities are stored by this fix for access by various +"output commands"_Section_howto.html#4_15. No parameter of this fix +can be used with the {start/stop} keywords of the "run"_run.html +command. This fix is not invoked during "energy +minimization"_minimize.html. + +[Restrictions:] + +This fix is part of the "user-atc" package. It is only enabled if +LAMMPS was built with that package, which also requires the ATC +library be built and linked with LAMMPS. See the "Making +LAMMPS"_Section_start.html#2_3 section for more info. + +[Related commands:] + +After specifying this fix in your input script, several other +"fix_modify"_fix_modify.html commands are used to setup the problem, +e.g. define the finite element mesh and prescribe initial and boundary +conditions. + +fix_modify commands for setup: + +"fix_modify AtC fem create mesh"_USER/atc/man_fem_mesh.html +"fix_modify AtC mesh create_nodeset"_USER/atc/man_mesh_nodeset.html +"fix_modify AtC mesh create_faceset"_USER/atc/man_mesh_faceset.html +"fix_modify AtC mesh create_elementset"_USER/atc/man_mesh_elemset.html +"fix_modify AtC transfer internal"_USER/atc/man_transfer_internal.html +"fix_modify AtC transfer boundary"_USER/atc/man_transfer_boundary.html +"fix_modify AtC transfer internal_quadrature"_USER/atc/man_internal_quadrature.html +"fix_modify AtC transfer pmfc"_USER/atc/man_time_integration.html +"fix_modify AtC extrinsic electron_integration"_USER/atc/man_electron_integration.html :ul + +fix_modify commands for boundary and initial conditions: + +"fix_modify AtC transfer initial"_USER/atc/man_initial.html +"fix_modify AtC transfer fix"_USER/atc/man_fix_nodes.html +"fix_modify AtC transfer unfix"_USER/atc/man_unfix_nodes.html +"fix_modify AtC transfer fix_flux"_USER/atc/man_fix_flux.html +"fix_modify AtC transferunfix_flux"_USER/atc/man_unfix_flux.html +"fix_modify AtC transfer source"_USER/atc/man_source.html +"fix_modify AtC transfer remove_source"_USER/atc/man_remove_source.html :ul + +fix_modify commands for control and filtering: + +"fix_modify AtC transfer thermal control"_USER/atc/man_thermal_control.html +"fix_modify AtC transfer filter"_USER/atc/man_time_filter.html +"fix_modify AtC transfer filter scale"_USER/atc/man_filter_scale.html +"fix_modify AtC transfer equilibrium_start"_USER/atc/man_equilibrium_start.html +"fix_modify AtC extrinsic exchange"_USER/atc/man_extrinsic_exchange.html :ul + +fix_modify commands for output: + +"fix_modify AtC transfer output"_USER/atc/man_transfer_output.html +"fix_modify AtC transfer atomic_output"_USER/atc/man_transfer_atomic_output.html +"fix_modify AtC mesh output"_USER/atc/man_mesh_output.html +"fix_modify AtC transfer write_restart"_USER/atc/man_write_restart.html +"fix_modify AtC transfer read_restart"_USER/atc/man_read_restart.html :ul + +fix_modify commands for post-processing: + +"fix_modify AtC transfer fields"_USER/atc/man_hardy_fields.html +"fix_modify AtC transfer gradients"_USER/atc/man_hardy_gradients.html +"fix_modify AtC transfer rates"_USER/atc/man_hardy_rates.htm +"fix_modify AtC transfer computes"_USER/atc/man_hardy_computes.html +"fix_modify AtC set"_USER/atc/man_hardy_set.html +"fix_modify AtC transfer on_the_fly"_USER/atc/man_hardy_on_the_fly.html +"fix_modify AtC boundary_integral"_USER/atc/man_boundary_integral.html +"fix_modify AtC contour_integral"_USER/atc/man_contour_integral.html :ul + +miscellaneous fix_modify commands: + +"fix_modify AtC transfer atom_element_map"_USER/atc/man_atom_element_map.htm +"fix_modify AtC transfer neighbor_reset_frequency"_USER/atc/man_neighbor_reset_frequency.html :ul + +[Default:] none + +:line + +:link(Wagner) +[(Wagner)] Wagner, Jones, Templeton, Parks, Special Issue of +Computer Methods and Applied Mechanics, 197, 3351-3365 (2008). + +:link(Zimmerman) +[(Zimmerman)] Zimmerman, Webb, Hoyt, Jones, Klein, Bammann, Special +Issue of Modelling and Simulation in Materials Science and +Engineering, 12, S319 (2004). + +:link(Hughes) +[(Hughes)] T.J.R Hughes, "The Finite Element Method," Dover (2003). diff -Naur lammps-22Sep09/examples/USER/atc/README lammps-24Sep09/examples/USER/atc/README --- lammps-22Sep09/examples/USER/atc/README 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/README 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,110 @@ +ATC (Atom To Continuum methods) + +Reese Jones, Jeremy Templeton, Jonathan Zimmerman +rjones@sandia.gov +September 2009 + +-------------- + +This directory contains examples run using the AtC library in LAMMPS +in its various coupling and post-processing modes. Descriptions of +the files in each are provided below. In addition to the included +output these examples will "dump" mesh-based data either in binary +(Ensight) format or simple column-based text format (for gnuplot, for +example). + +bar1d_thermal: + input files: + in.bar1d - Atoms comprise a subset of a 1D finite element bar, + heated at the left end and cooled at the right end. + A Gaussian isokinetic thermostat is used to keep the atomic + kinetic temperature equal to the finite element temperature + at the boundaries. + in.bar1d_flux - Same setup and geometry as in.bar1d. + A Gaussian isokinetic thermostat is used to transfer + the FE heat flux to the atoms at the boundaries. + Ar_thermal.mat - Material parameter file specifying + the thermal properties of argon. + temp.init - Initial set of atomic positions and velocities. + + output files: + bar1d.log - LAMMPS log file generated by running in.bar1d. + bar1d_flux.log - LAMMPS log file generated by running in.bar1d_flux. + +bar1d_two_temperature: + input files: + in.bar1d_ttm - Atoms comprise a subset of a 1D finite element bar, + with a high fixed electron temperature on the left end + and low fixed phonon and electron temperatures on the right end. + A Gaussian isokinetic thermostat is used to transfer energy + from the electron temperature field to the atoms. + in.gaussianIC_ttm - Atoms fully overlap an FE mesh with an initially + elevated electron temperature having a Gaussian distribution. + in.no_atoms - Heating followed by relaxation is simulated on a FE mesh. + in.uniform_exchange - Electron and kinetic temperatures are initially + spatially uniform but out of equilibrium, followed by relaxation. + in.uniform_heating - Initially equal electron and kinetic temperatures + are subjected to heating of the kinetic temperature only. The kinetic + temperature is fixed at both ends while the electrons are insulated. + Ar_ttm.mat - Material parameter file specifying + the kinetic and electric thermal properties of argon. + Cu_ttm.mat - Material parameter file specifying + the kinetic and electric thermal properties of copper. + temp.init - Initial set of atomic positions and velocities for most cases. + uniform_exchange_init.data - Initial set of atomic positions and velocities + for in.uniform_exchange + uniform_heating_init.data - Initial set of atomic positions and velocities + for in.uniform_heating + + output files: + bar1d_ttm.log - LAMMPS log file generated by running in.bar1d_ttm. + gaussianIC_ttm.log - log file generated by running in.gaussianIC_ttm. + no_atoms.log - LAMMPS log file generated by running in.no_atoms. + uniform_exchange.log - log file generated by running in.uniform_exchange. + uniform_heating.log - LAMMPS log file generated by running in.uniform_heating. + +hardy: + input files: + in.consistency - Small block of EAM Copper is used to confirm the + consistency between the atc calculations of 1st Piola-Kirchhoff (P-K) + stress, displacment gradient, and strain energy density for various + amounts of uniaxial strain. + in.eam_kernel_convergence - Block of EAM Gold is used to examine the + variation of the atc estimate of 1st P-K stress with size of localization + (averaging) volume. Volume is spherical, and kernel function + is quartic depending on radial distance from sphere center. + in.eam_unistrain_xxxx - Long block of EAM Copper is subjected to uniaxial + stretching and estimates of 1st P-K stress, energy density, displacement + and displacement gradient are calculated. The end-suffix denotes the + localization volume shape and kernel function type: + cell - 3D rectangular elements with step-functions at cell boundary + mesh - 3D rectangular elements with linear "tent" functions + qcylinder - cylindrical volume with quartic function dependent on + distance from cylinder axis + qsphere - spherical volume with quartic function dependent on + distance from sphere center + step - spherical volume with step-function at sphere boundary + in.eam_volume_stretch - Small block of EAM Copper is equitriaxially + stretched and estimates of 1st P-K stress, energy density, and mass + density are calculated. + in.nvt - Block of Lennard-Jones Argon is simulated at 30K for 1000 timesteps. + + output files: + consistency.log - LAMMPS log file generated by running in.consistency + consistency.screen - Screen/console output generated by running + in.consistency + eam_kernel_convergence.log - LAMMPS log file generated by running + in.eam_kernel_convergence + eam_kernel_convergence.screen - Screen/console output generated by running + in.eam_kernel_convergence + eam_unistrain_xxxx.log - LAMMPS log file generated by running + in.eam_unistrain_xxxx + eam_unistrain_xxxx.screen - Screen/console output generated by running + in.eam_unistrain_xxxx ( xxxx = cell, mesh, qcylinder, qsphere, step ) + eam_volume_stretch.log - LAMMPS log file generated by running + in.eam_volume_stretch + eam_volume_stretchscreen - Screen/console output generated by running + in.eam_volume_stretch + nvt.log - LAMMPS log file generated by running in.nvt + nvt.screen - Screen/console output generated by running in.nvt + diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/Ar_thermal.mat lammps-24Sep09/examples/USER/atc/bar1d_thermal/Ar_thermal.mat --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/Ar_thermal.mat 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/Ar_thermal.mat 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,11 @@ +material Ar + heat_flux linear + conductivity .00000000168 + end +end + +material Ar2 + heat_flux linear + conductivity .00000000316 + end +end diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/bar1d.log lammps-24Sep09/examples/USER/atc/bar1d_thermal/bar1d.log --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/bar1d.log 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/bar1d.log 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,286 @@ +LAMMPS (7 Jul 2009) +#AtC Thermal Coupling +# This benchmark tests heat conducting into and out of the MD region. The +# temperature is intially 20 everywhere and the left boundary BC is fixed at 40. +# The result should show heat diffusing through the FEM to the MD and back out +# to the FEM on the right. Insufficient time is captured to reach the linear +# steady state, but heat crossing both boundaries should be observed. + + +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, where N=4 for fcc, s = 3.405 A (Wagner) and a = 5.25 A (Ashcroft & Mermin, p. 70) +# NOTE following 3 lines added for restart +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init + orthogonal box = (-27.025 -16.215 -16.215) to (27.025 16.215 16.215) + 1 by 1 by 1 processor grid + 1440 atoms + 1440 velocities +lattice fcc 5.405 origin 0.25 0.25 0.25 +Lattice spacing in x,y,z = 5.405 5.405 5.405 +region simRegion block -12 12 -3 3 -3 3 + +# create atoms, NOTE commented out for restart +#region mdRegion block -5 5 -3 3 -3 3 +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 + +# specify interal/ghost atoms +region mdInternal block -4 4 -3 3 -3 3 +group internal region mdInternal +1152 atoms in group internal +group ghost subtract all internal +288 atoms in group ghost + +# velocities have Vcm = 0, NOTE next four lines commented out for restart +#velocity internal create 40. 87287 mom yes loop geom + +#pair_style lj/cut 13.5 +##pair_coeff 1 1 0.010323166 3.405 13.5 +#pair_coeff 1 1 .238 3.405 13.5 + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc thermal Ar_thermal.mat + +# ID part keywords nx ny nz region +#fix_modify AtC fem create mesh 12 2 2 simRegion f p p +fix_modify AtC fem create mesh 12 1 1 simRegion f p p + +# specify atom types +#fix_modify AtC transfer internal type internal +fix_modify AtC transfer boundary type ghost + +# fix a temperature +fix_modify AtC transfer fix temperature all 20. + +# turn on thermostat +fix_modify AtC transfer thermal control rescale 10 + +# equilibrate MD field +#dump D1 all atom 100 dump.bar1d +#fix_modify AtC transfer output bar1dfe 100 +timestep 5 +variable xdof equal 3*count(ghost) +compute_modify thermo_temp extra ${xdof} +compute_modify thermo_temp extra 864 +thermo_style custom step cpu etotal pe f_AtC[1] temp f_AtC[2] +thermo_modify format 1 %6i format 2 %7.2g +thermo 100 +run 400 +Memory usage per processor = 8.7506 Mbytes +Step CPU TotEng PotEng AtC[1] Temp AtC[2] + 0 0 -2573.6428 -2710.8793 412.06718 39.965279 20 + 100 2.7 -2537.6764 -2606.3542 412.06718 20 20 + 200 5.5 -2584.8754 -2653.5532 412.06718 20 20 + 300 8.2 -2575.3126 -2643.9904 412.06718 20 20 + 400 11 -2573.4199 -2642.0977 412.06718 20 20 +Loop time of 10.9925 on 1 procs for 400 steps with 1440 atoms + +Pair time (%) = 4.30201 (39.1358) +Neigh time (%) = 1.867 (16.9842) +Comm time (%) = 0.0373757 (0.34001) +Outpt time (%) = 0.00606346 (0.0551598) +Other time (%) = 4.78008 (43.4848) + +Nlocal: 1440 ave 1440 max 1440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 5320 ave 5320 max 5320 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 419459 ave 419459 max 419459 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 838918 ave 838918 max 838918 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 838918 +Ave neighs/atom = 582.582 +Neighbor list builds = 40 +Dangerous builds = 0 + +# change thermostat to hoover +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer thermal control hoover +fix_modify AtC transfer filter type exponential +fix_modify AtC transfer filter scale 10000.0 +fix_modify AtC transfer filter on +fix_modify AtC transfer internal_quadrature off + +# add nodesets +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +fix_modify AtC mesh create_nodeset lbc -12.1 -11.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 11.9 12.1 -12 12 -12 12 +fix_modify AtC transfer fix temperature lbc 40. +fix_modify AtC transfer fix temperature rbc 20. + +# initialize filter +#thermo 1 +run 100 +Memory usage per processor = 8.97948 Mbytes +Step CPU TotEng PotEng AtC[1] Temp AtC[2] + 400 0 -2573.4199 -2642.0977 274.71145 20 20 + 500 2.7 -2573.7738 -2643.7447 295.61002 20.376549 21.713472 +Loop time of 2.67287 on 1 procs for 100 steps with 1440 atoms + +Pair time (%) = 1.07427 (40.1917) +Neigh time (%) = 0.466434 (17.4507) +Comm time (%) = 0.00930166 (0.348003) +Outpt time (%) = 0.00103688 (0.0387928) +Other time (%) = 1.12183 (41.9709) + +Nlocal: 1440 ave 1440 max 1440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 5320 ave 5320 max 5320 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 419059 ave 419059 max 419059 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 838118 ave 838118 max 838118 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 838118 +Ave neighs/atom = 582.026 +Neighbor list builds = 10 +Dangerous builds = 0 + +# set up output, should be before a "run" +fix_modify AtC transfer output bar1dFE 100 text + +# ouput command +#dump D1 all atom 1000 dump.bar1d +fix_modify AtC transfer atomic_output bar1dMD 100 + +# run with FE +reset_timestep 0 +thermo 100 +run 10000 +Memory usage per processor = 8.97948 Mbytes +Step CPU TotEng PotEng AtC[1] Temp AtC[2] + 0 0 -2573.7738 -2643.7447 295.61002 20.376549 21.713472 + 100 2.7 -2573.654 -2645.0562 298.997 20.793359 21.86901 + 200 5.4 -2574.0035 -2642.057 302.05784 19.818184 22.007349 + 300 8 -2573.5186 -2646.5507 304.88852 21.268004 22.143129 + 400 11 -2573.2662 -2641.032 307.48549 19.734394 22.262531 + 500 13 -2573.5673 -2644.7553 309.92162 20.730998 22.376015 + 600 16 -2572.9368 -2641.5818 312.18796 19.990452 22.483808 + 700 19 -2573.2457 -2642.9406 314.3431 20.296183 22.586025 + 800 21 -2573.215 -2642.7311 316.37915 20.244129 22.681635 + 900 24 -2572.7227 -2643.5215 318.29866 20.617655 22.772405 + 1000 27 -2572.411 -2644.5969 320.08215 21.021606 22.85772 + 1100 29 -2571.4099 -2642.08 321.74721 20.580181 22.940424 + 1200 32 -2570.5495 -2641.7296 323.29152 20.728698 23.01806 + 1300 35 -2570.2491 -2640.8115 324.79381 20.548784 23.09183 + 1400 37 -2570.159 -2641.2853 326.14846 20.713008 23.158731 + 1500 40 -2569.5061 -2642.2055 327.46482 21.171117 23.230527 + 1600 43 -2568.7522 -2639.5246 328.68994 20.609988 23.295442 + 1700 45 -2569.1809 -2642.0975 329.85636 21.234392 23.355365 + 1800 48 -2568.7484 -2643.2103 330.95066 21.684387 23.414458 + 1900 51 -2568.258 -2641.5017 332.02069 21.329638 23.476702 + 2000 54 -2568.192 -2641.4646 333.04827 21.338079 23.534077 + 2100 56 -2568.0746 -2639.9335 334.04476 20.926349 23.588633 + 2200 59 -2567.2717 -2642.2868 334.99014 21.84549 23.639739 + 2300 62 -2566.7209 -2639.9022 335.89195 21.311463 23.692327 + 2400 64 -2566.6054 -2638.8118 336.73569 21.02756 23.743177 + 2500 67 -2565.7629 -2639.6423 337.51835 21.514764 23.792702 + 2600 70 -2565.9251 -2642.5797 338.26277 22.322947 23.837067 + 2700 72 -2564.9995 -2640.0503 339.00006 21.855897 23.885327 + 2800 75 -2565.2468 -2638.033 339.72187 21.196396 23.929976 + 2900 78 -2565.0496 -2639.4905 340.4486 21.678289 23.975728 + 3000 80 -2565.1382 -2637.5132 341.15766 21.076651 24.018275 + 3100 83 -2564.4793 -2636.786 341.85076 21.056788 24.060818 + 3200 86 -2564.1799 -2637.5024 342.51347 21.352563 24.105465 + 3300 88 -2564.4531 -2641.3463 343.13584 22.392438 24.145599 + 3400 91 -2564.2323 -2641.0072 343.75483 22.357976 24.184764 + 3500 94 -2563.378 -2635.3819 344.36945 20.968577 24.22365 + 3600 96 -2563.5014 -2637.8324 345.00242 21.646292 24.265399 + 3700 99 -2563.4092 -2638.0479 345.63031 21.73589 24.302306 + 3800 1e+02 -2563.0307 -2637.5397 346.23705 21.698125 24.340069 + 3900 1e+02 -2562.1415 -2637.2704 346.79157 21.878655 24.379583 + 4000 1.1e+02 -2561.9968 -2637.3928 347.2934 21.956417 24.413166 + 4100 1.1e+02 -2560.7688 -2636.0902 347.76126 21.934696 24.449405 + 4200 1.1e+02 -2561.3033 -2638.2325 348.21187 22.402893 24.48165 + 4300 1.2e+02 -2560.9897 -2637.0909 348.67188 22.161792 24.517482 + 4400 1.2e+02 -2561.1676 -2638.5003 349.1221 22.52042 24.551399 + 4500 1.2e+02 -2560.4797 -2637.3716 349.57016 22.392068 24.58389 + 4600 1.2e+02 -2560.5787 -2637.0577 350.03085 22.2718 24.616821 + 4700 1.3e+02 -2560.9645 -2639.5114 350.46283 22.874034 24.648359 + 4800 1.3e+02 -2560.445 -2637.6681 350.93668 22.488484 24.682119 + 4900 1.3e+02 -2559.5243 -2635.9383 351.38797 22.252882 24.713605 + 5000 1.3e+02 -2559.4948 -2637.7238 351.82736 22.781448 24.746433 + 5100 1.4e+02 -2559.6822 -2636.169 352.25581 22.274077 24.77752 + 5200 1.4e+02 -2559.6398 -2637.3169 352.67163 22.620718 24.810244 + 5300 1.4e+02 -2558.6285 -2634.5293 353.06226 22.103426 24.836256 + 5400 1.4e+02 -2558.6394 -2637.9486 353.46662 23.096021 24.869663 + 5500 1.5e+02 -2558.1403 -2636.176 353.85792 22.725147 24.897758 + 5600 1.5e+02 -2558.0703 -2635.1367 354.27521 22.442874 24.929906 + 5700 1.5e+02 -2558.0656 -2636.7197 354.66462 22.905238 24.956168 + 5800 1.6e+02 -2557.3776 -2634.8266 355.06619 22.554271 24.987034 + 5900 1.6e+02 -2557.2526 -2635.9743 355.44501 22.924934 25.016353 + 6000 1.6e+02 -2557.3833 -2637.2292 355.80121 23.252296 25.043949 + 6100 1.6e+02 -2556.0263 -2633.5408 356.13412 22.573353 25.072447 + 6200 1.7e+02 -2555.7442 -2634.4378 356.46167 22.916748 25.100704 + 6300 1.7e+02 -2555.855 -2635.6231 356.75569 23.22965 25.127725 + 6400 1.7e+02 -2555.933 -2634.2031 357.04516 22.793407 25.152406 + 6500 1.7e+02 -2555.6529 -2635.6086 357.33016 23.28426 25.178081 + 6600 1.8e+02 -2554.8702 -2633.8043 357.60713 22.986754 25.203066 + 6700 1.8e+02 -2555.4594 -2637.4198 357.91044 23.868096 25.228913 + 6800 1.8e+02 -2555.1344 -2633.0306 358.23055 22.684511 25.254519 + 6900 1.8e+02 -2555.203 -2635.8935 358.56704 23.498239 25.281995 + 7000 1.9e+02 -2554.4151 -2634.9963 358.89735 23.466408 25.305952 + 7100 1.9e+02 -2555.5652 -2636.9959 359.27174 23.713819 25.334106 + 7200 1.9e+02 -2554.6218 -2632.7376 359.62885 22.748439 25.361455 + 7300 2e+02 -2553.7347 -2633.5173 359.96531 23.233845 25.386903 + 7400 2e+02 -2553.6833 -2632.7482 360.28731 23.024868 25.412373 + 7500 2e+02 -2554.1584 -2634.2224 360.62311 23.31579 25.437173 + 7600 2e+02 -2553.7146 -2636.4165 360.95078 24.084027 25.461273 + 7700 2.1e+02 -2553.0976 -2633.1652 361.2731 23.316874 25.488376 + 7800 2.1e+02 -2553.7234 -2633.641 361.58496 23.273177 25.51462 + 7900 2.1e+02 -2553.1572 -2635.2359 361.88331 23.902505 25.537243 + 8000 2.1e+02 -2553.0069 -2632.9284 362.20064 23.274304 25.562883 + 8100 2.2e+02 -2552.2172 -2632.9342 362.5047 23.505977 25.58597 + 8200 2.2e+02 -2552.6328 -2633.7047 362.84446 23.609337 25.610996 + 8300 2.2e+02 -2553.0514 -2636.536 363.15344 24.311943 25.634632 + 8400 2.3e+02 -2551.9163 -2634.5593 363.4457 24.066867 25.656569 + 8500 2.3e+02 -2551.1621 -2632.5819 363.73408 23.710645 25.680723 + 8600 2.3e+02 -2551.3228 -2631.8791 364.03489 23.459181 25.706041 + 8700 2.3e+02 -2551.3997 -2634.1928 364.32604 24.110586 25.728322 + 8800 2.4e+02 -2551.5524 -2635.9592 364.60259 24.58049 25.751881 + 8900 2.4e+02 -2550.9861 -2634.5125 364.87711 24.324098 25.772874 + 9000 2.4e+02 -2550.3983 -2630.9444 365.15409 23.456228 25.797098 + 9100 2.4e+02 -2550.2259 -2632.4851 365.42126 23.955067 25.819654 + 9200 2.5e+02 -2549.7275 -2633.251 365.67315 24.323271 25.84363 + 9300 2.5e+02 -2549.2312 -2632.0116 365.91463 24.106861 25.865763 + 9400 2.5e+02 -2549.1796 -2631.7916 366.12014 24.057833 25.884164 + 9500 2.5e+02 -2549.3237 -2632.8582 366.34704 24.326456 25.907195 + 9600 2.6e+02 -2548.7761 -2630.2005 366.56572 23.711991 25.926896 + 9700 2.6e+02 -2548.5538 -2631.9243 366.75569 24.278711 25.946464 + 9800 2.6e+02 -2548.3631 -2632.4881 366.94867 24.498431 25.965165 + 9900 2.7e+02 -2548.2213 -2631.2185 367.15325 24.169994 25.986899 + 10000 2.7e+02 -2547.7789 -2631.2241 367.37155 24.30047 26.007162 +Loop time of 267.8 on 1 procs for 10000 steps with 1440 atoms + +Pair time (%) = 107.528 (40.1525) +Neigh time (%) = 46.6868 (17.4335) +Comm time (%) = 0.952441 (0.355655) +Outpt time (%) = 0.106937 (0.0399319) +Other time (%) = 112.525 (42.0184) + +Nlocal: 1440 ave 1440 max 1440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 5320 ave 5320 max 5320 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 419294 ave 419294 max 419294 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 838588 ave 838588 max 838588 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 838588 +Ave neighs/atom = 582.353 +Neighbor list builds = 1000 +Dangerous builds = 0 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/bar1d_flux.log lammps-24Sep09/examples/USER/atc/bar1d_thermal/bar1d_flux.log --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/bar1d_flux.log 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/bar1d_flux.log 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,334 @@ +LAMMPS (7 Jul 2009) +#AtC Thermal Coupling +# This benchmark tests heat conducting into and out of the MD region. The +# temperature is intially 20 everywhere and the left boundary BC is fixed at +# 40.# The result should show heat diffusing through the FEM to the MD and back +# out # to the FEM on the right. Insufficient time is captured to reach the +# linear # steady state, but heat crossing both boundaries should be observed. +#echo both +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, where N=4 for fcc, s = 3.405 A (Wagner) and a = 5.25 A (Ashcroft & Mermin, p. 70) +# NOTE following 3 lines added for restart +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init + orthogonal box = (-27.025 -16.215 -16.215) to (27.025 16.215 16.215) + 1 by 1 by 1 processor grid + 1440 atoms + 1440 velocities +lattice fcc 5.405 origin 0.25 0.25 0.25 +Lattice spacing in x,y,z = 5.405 5.405 5.405 +region simRegion block -12 12 -3 3 -3 3 + +# create atoms, NOTE commented out for restart +#region mdRegion block -5 5 -3 3 -3 3 +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 + +# specify interal/ghost atoms +region mdInternal block -4 4 -3 3 -3 3 +group internal region mdInternal +1152 atoms in group internal +group ghost subtract all internal +288 atoms in group ghost + +# velocities have Vcm = 0, NOTE next four lines commented out for restart +#velocity internal create 40. 87287 mom yes loop geom + +#pair_style lj/cut 13.5 +##pair_coeff 1 1 0.010323166 3.405 13.5 +#pair_coeff 1 1 .238 3.405 13.5 + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +#write_restart tinit.dat + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc thermal Ar_thermal.mat + +# ID part keywords nx ny nz region +#fix_modify AtC fem create mesh 12 2 2 simRegion f p p +fix_modify AtC fem create mesh 12 1 1 simRegion f p p +fix_modify AtC mesh create_faceset ibndy box -4.0 4.0 -12 12 -12 12 in +fix_modify AtC mesh create_faceset obndy box -4.0 4.0 -12 12 -12 12 outward + +# specify atom types +#fix_modify AtC transfer internal type internal +fix_modify AtC transfer boundary type ghost + +# fix a temperature +fix_modify AtC transfer fix temperature all 20. +#fix_modify AtC transfer fix temperature all linear 0 0 0 -0.154 0 0 30. + +# turn on thermostat +fix_modify AtC transfer thermal control rescale 10 + +variable xdof equal 3*count(ghost) +compute_modify thermo_temp extra ${xdof} +compute_modify thermo_temp extra 864 +thermo_style custom step cpu etotal pe f_AtC[1] temp f_AtC[2] +thermo_modify format 1 %6i format 2 %7.2g + +# equilibrate MD field +#fix_modify AtC transfer output bar1dfe_flux_init 100 +timestep 5 +thermo 10 +run 400 +Memory usage per processor = 8.7506 Mbytes +Step CPU TotEng PotEng AtC[1] Temp AtC[2] + 0 0 -2573.6428 -2710.8793 412.06718 39.965279 20 + 10 0.28 -2626.7498 -2695.4276 412.06718 20 20 + 20 0.56 -2600.7022 -2669.38 412.06718 20 20 + 30 0.84 -2570.0142 -2638.6921 412.06718 20 20 + 40 1.1 -2548.1494 -2616.8273 412.06718 20 20 + 50 1.4 -2541.6409 -2610.3188 412.06718 20 20 + 60 1.7 -2539.3355 -2608.0134 412.06718 20 20 + 70 2 -2534.3684 -2603.0463 412.06718 20 20 + 80 2.2 -2530.2415 -2598.9194 412.06718 20 20 + 90 2.5 -2531.3411 -2600.019 412.06718 20 20 + 100 2.8 -2537.6764 -2606.3542 412.06718 20 20 + 110 3.1 -2546.506 -2615.1838 412.06718 20 20 + 120 3.4 -2555.0937 -2623.7716 412.06718 20 20 + 130 3.6 -2562.4178 -2631.0957 412.06718 20 20 + 140 3.9 -2568.7827 -2637.4606 412.06718 20 20 + 150 4.2 -2574.6292 -2643.307 412.06718 20 20 + 160 4.5 -2579.7542 -2648.432 412.06718 20 20 + 170 4.8 -2583.6629 -2652.3408 412.06718 20 20 + 180 5 -2585.9113 -2654.5892 412.06718 20 20 + 190 5.3 -2586.1786 -2654.8565 412.06718 20 20 + 200 5.6 -2584.8754 -2653.5532 412.06718 20 20 + 210 5.9 -2582.8956 -2651.5734 412.06718 20 20 + 220 6.2 -2580.6882 -2649.366 412.06718 20 20 + 230 6.5 -2578.24 -2646.9179 412.06718 20 20 + 240 6.7 -2575.9058 -2644.5836 412.06718 20 20 + 250 7 -2574.2875 -2642.9654 412.06718 20 20 + 260 7.3 -2573.8273 -2642.5052 412.06718 20 20 + 270 7.6 -2574.3017 -2642.9796 412.06718 20 20 + 280 7.8 -2574.7059 -2643.3838 412.06718 20 20 + 290 8.1 -2574.7745 -2643.4524 412.06718 20 20 + 300 8.4 -2575.3126 -2643.9904 412.06718 20 20 + 310 8.7 -2576.5002 -2645.178 412.06718 20 20 + 320 9 -2577.7411 -2646.419 412.06718 20 20 + 330 9.3 -2578.2283 -2646.9061 412.06718 20 20 + 340 9.5 -2577.7485 -2646.4263 412.06718 20 20 + 350 9.8 -2576.9631 -2645.6409 412.06718 20 20 + 360 10 -2576.0309 -2644.7088 412.06718 20 20 + 370 10 -2574.9309 -2643.6088 412.06718 20 20 + 380 11 -2573.7943 -2642.4721 412.06718 20 20 + 390 11 -2573.0353 -2641.7132 412.06718 20 20 + 400 11 -2573.4199 -2642.0977 412.06718 20 20 +Loop time of 11.2102 on 1 procs for 400 steps with 1440 atoms + +Pair time (%) = 4.45575 (39.7474) +Neigh time (%) = 1.86555 (16.6416) +Comm time (%) = 0.0379353 (0.338401) +Outpt time (%) = 0.0610819 (0.54488) +Other time (%) = 4.78984 (42.7277) + +Nlocal: 1440 ave 1440 max 1440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 5320 ave 5320 max 5320 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 419459 ave 419459 max 419459 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 838918 ave 838918 max 838918 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 838918 +Ave neighs/atom = 582.582 +Neighbor list builds = 40 +Dangerous builds = 0 + + +# change thermostat to hoover +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer thermal control flux faceset obndy +fix_modify AtC transfer filter type exponential +fix_modify AtC transfer filter scale 10000.0 +fix_modify AtC transfer filter on + +# add nodesets +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +fix_modify AtC mesh create_nodeset lbc -12.1 -11.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 11.9 12.1 -12 12 -12 12 +fix_modify AtC transfer fix temperature lbc 40. +fix_modify AtC transfer fix temperature rbc 20. + +# initialize filter +run 100 +Memory usage per processor = 8.97948 Mbytes +Step CPU TotEng PotEng AtC[1] Temp AtC[2] + 400 0 -2573.4199 -2642.0977 412.06718 20 20 + 410 0.3 -2573.399 -2643.8456 429.61396 20.515068 21.555366 + 420 0.6 -2573.4225 -2646.1086 430.028 21.16726 21.573916 + 430 0.91 -2573.4498 -2647.2056 430.455 21.478791 21.593046 + 440 1.2 -2573.4565 -2646.2695 430.87731 21.204227 21.611967 + 450 1.5 -2573.4725 -2644.3172 431.27891 20.631017 21.62996 + 460 1.8 -2573.4862 -2643.0051 431.65927 20.244924 21.647001 + 470 2.1 -2573.4906 -2642.6175 432.02801 20.130768 21.663521 + 480 2.4 -2573.5014 -2642.5644 432.3911 20.112138 21.679788 + 490 2.7 -2573.5132 -2642.9216 432.75177 20.212768 21.695947 + 500 3 -2573.5326 -2643.6695 433.11495 20.424906 21.712218 +Loop time of 3.0217 on 1 procs for 100 steps with 1440 atoms + +Pair time (%) = 1.11102 (36.7679) +Neigh time (%) = 0.465189 (15.3949) +Comm time (%) = 0.0091815 (0.303852) +Outpt time (%) = 0.0152943 (0.506148) +Other time (%) = 1.42102 (47.0272) + +Nlocal: 1440 ave 1440 max 1440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 5320 ave 5320 max 5320 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 419046 ave 419046 max 419046 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 838092 ave 838092 max 838092 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 838092 +Ave neighs/atom = 582.008 +Neighbor list builds = 10 +Dangerous builds = 0 + +# set up output, should be before a "run" +fix_modify AtC transfer output bar1d_fluxFE 100 text + +# ouput command +#dump D1 all atom 1000 dump.bar1d +fix_modify AtC transfer atomic_output bar1d_fluxMD 100 + +# run with FE +reset_timestep 0 +thermo 100 +run 10000 +Memory usage per processor = 8.97948 Mbytes +Step CPU TotEng PotEng AtC[1] Temp AtC[2] + 0 0 -2573.5326 -2643.6695 433.11495 20.424906 21.712218 + 100 3 -2573.4996 -2644.68 436.56595 20.728783 21.866831 + 200 6 -2573.6452 -2641.8181 439.65242 19.852963 22.005112 + 300 8.9 -2573.7003 -2646.4622 442.67272 21.189339 22.140428 + 400 12 -2573.8123 -2641.5274 445.34109 19.719609 22.259977 + 500 15 -2573.523 -2644.2791 447.87899 20.605203 22.373681 + 600 18 -2573.5066 -2641.7526 450.30082 19.874234 22.482184 + 700 21 -2573.1755 -2642.9899 452.59197 20.330998 22.584833 + 800 24 -2572.7532 -2642.4538 454.74808 20.297842 22.681431 + 900 27 -2572.4242 -2643.2186 456.80456 20.616377 22.773566 + 1000 30 -2572.1111 -2644.2513 458.77119 21.008267 22.861675 + 1100 33 -2571.8664 -2642.2676 460.69037 20.501859 22.947659 + 1200 36 -2571.6698 -2642.4072 462.52036 20.599778 23.029647 + 1300 39 -2571.1188 -2640.8357 464.26327 20.302568 23.107733 + 1400 42 -2570.6841 -2642.0319 465.90618 20.777507 23.181339 + 1500 45 -2570.3755 -2642.5393 467.64779 21.015167 23.259367 + 1600 48 -2570.1086 -2640.3963 469.24937 20.468802 23.331122 + 1700 51 -2569.7084 -2642.3964 470.76324 21.167807 23.398946 + 1800 53 -2569.2903 -2643.213 472.26485 21.527379 23.466222 + 1900 56 -2568.8699 -2641.4957 473.83022 21.149691 23.536354 + 2000 59 -2568.3377 -2641.3608 475.30209 21.265411 23.602297 + 2100 62 -2567.6236 -2639.3792 476.69625 20.896274 23.664759 + 2200 65 -2566.8936 -2642.0946 478.02908 21.899656 23.724472 + 2300 68 -2566.4627 -2640.2742 479.41262 21.494985 23.786458 + 2400 71 -2566.0253 -2638.6268 480.76007 21.142611 23.846827 + 2500 74 -2565.8021 -2639.6421 482.09822 21.503291 23.906779 + 2600 77 -2565.2093 -2642.2012 483.3378 22.421166 23.962315 + 2700 80 -2564.6901 -2639.8567 484.63598 21.889625 24.020477 + 2800 83 -2564.0658 -2636.9481 485.8689 21.22441 24.075714 + 2900 86 -2563.3168 -2639.3155 487.10404 22.131928 24.131051 + 3000 89 -2562.6825 -2635.5318 488.27527 21.214781 24.183525 + 3100 92 -2562.1212 -2635.4426 489.43761 21.352279 24.2356 + 3200 95 -2561.6126 -2636.3019 490.64892 21.750607 24.28987 + 3300 98 -2561.1335 -2639.0741 491.78462 22.697438 24.340752 + 3400 1e+02 -2560.4828 -2638.3251 492.87662 22.66881 24.389676 + 3500 1e+02 -2559.8843 -2635.4238 493.96107 21.998211 24.438262 + 3600 1.1e+02 -2559.2443 -2634.7161 495.09564 21.97848 24.489093 + 3700 1.1e+02 -2558.5654 -2636.1565 496.14063 22.595663 24.535911 + 3800 1.1e+02 -2558.0214 -2636.7671 497.17918 22.931888 24.58244 + 3900 1.2e+02 -2557.9398 -2634.982 498.30063 22.435836 24.632684 + 4000 1.2e+02 -2557.8749 -2635.5655 499.26966 22.624655 24.676098 + 4100 1.2e+02 -2557.8331 -2635.3677 500.27412 22.579214 24.721101 + 4200 1.2e+02 -2557.6329 -2635.9432 501.25564 22.805115 24.765075 + 4300 1.3e+02 -2557.4707 -2636.512 502.24607 23.017987 24.809448 + 4400 1.3e+02 -2557.3019 -2632.8823 503.29942 22.010137 24.856641 + 4500 1.3e+02 -2556.8882 -2633.5726 504.19269 22.331634 24.896661 + 4600 1.4e+02 -2556.5255 -2637.0121 505.14884 23.438878 24.939499 + 4700 1.4e+02 -2556.1965 -2636.3657 506.12562 23.346446 24.983261 + 4800 1.4e+02 -2555.728 -2636.154 507.0392 23.421248 25.024191 + 4900 1.5e+02 -2555.3573 -2634.8572 507.93584 23.151538 25.064363 + 5000 1.5e+02 -2554.8839 -2635.3615 508.86307 23.436248 25.105905 + 5100 1.5e+02 -2554.5001 -2632.2863 509.79029 22.652461 25.147447 + 5200 1.5e+02 -2554.2786 -2635.3015 510.67821 23.595069 25.187227 + 5300 1.6e+02 -2554.1208 -2633.4672 511.56223 23.106822 25.226833 + 5400 1.6e+02 -2553.8571 -2632.9509 512.411 23.033282 25.26486 + 5500 1.6e+02 -2553.4771 -2633.4831 513.27749 23.29891 25.303681 + 5600 1.7e+02 -2552.995 -2634.0399 514.08357 23.601475 25.339795 + 5700 1.7e+02 -2552.6786 -2632.23 514.99251 23.166531 25.380517 + 5800 1.7e+02 -2552.1989 -2634.2926 515.83523 23.906877 25.418273 + 5900 1.8e+02 -2551.9275 -2633.7331 516.69181 23.822967 25.45665 + 6000 1.8e+02 -2551.5879 -2633.4709 517.50304 23.845533 25.492995 + 6100 1.8e+02 -2551.1096 -2633.3576 518.27013 23.951824 25.527362 + 6200 1.8e+02 -2550.6066 -2634.4431 519.07898 24.414427 25.5636 + 6300 1.9e+02 -2550.1427 -2633.9705 519.85788 24.411888 25.598497 + 6400 1.9e+02 -2549.6148 -2630.7643 520.70201 23.631931 25.636316 + 6500 1.9e+02 -2549.2143 -2629.4555 521.48165 23.3674 25.671246 + 6600 2e+02 -2548.823 -2629.4952 522.21153 23.492935 25.703946 + 6700 2e+02 -2548.6124 -2631.6154 523.03499 24.171693 25.740839 + 6800 2e+02 -2548.314 -2627.4378 523.72811 23.041997 25.771892 + 6900 2e+02 -2548.0996 -2632.112 524.53399 24.465645 25.807997 + 7000 2.1e+02 -2547.8468 -2630.457 525.24887 24.057291 25.840026 + 7100 2.1e+02 -2547.5093 -2630.8501 526.01815 24.27005 25.874491 + 7200 2.1e+02 -2547.1919 -2630.0362 526.75581 24.125462 25.90754 + 7300 2.2e+02 -2546.8056 -2631.0682 527.4846 24.538524 25.940191 + 7400 2.2e+02 -2546.541 -2632.4362 528.24198 25.01394 25.974124 + 7500 2.2e+02 -2546.1286 -2629.6863 528.94188 24.33324 26.005481 + 7600 2.3e+02 -2545.959 -2629.3922 529.57701 24.296979 26.033936 + 7700 2.3e+02 -2546.0743 -2629.693 530.30436 24.351001 26.066523 + 7800 2.3e+02 -2546.1431 -2631.6521 530.98889 24.901471 26.097191 + 7900 2.3e+02 -2546.1056 -2629.3749 531.66127 24.249239 26.127315 + 8000 2.4e+02 -2546.0454 -2630.0836 532.37925 24.473159 26.159482 + 8100 2.4e+02 -2545.9725 -2630.5976 533.05102 24.644071 26.18958 + 8200 2.4e+02 -2545.5772 -2629.4844 533.65121 24.435002 26.216469 + 8300 2.5e+02 -2545.5178 -2631.6842 534.43183 25.092927 26.251443 + 8400 2.5e+02 -2545.3432 -2629.5904 535.02156 24.534025 26.277864 + 8500 2.5e+02 -2545.2097 -2631.2853 535.66213 25.06648 26.306563 + 8600 2.6e+02 -2544.9173 -2629.2314 536.3311 24.553498 26.336535 + 8700 2.6e+02 -2544.5414 -2628.3855 536.99695 24.416625 26.366366 + 8800 2.6e+02 -2543.8563 -2629.5985 537.57029 24.969392 26.392053 + 8900 2.6e+02 -2543.2906 -2628.292 538.33031 24.753655 26.426103 + 9000 2.7e+02 -2542.5357 -2627.1708 538.87931 24.64698 26.4507 + 9100 2.7e+02 -2542.1926 -2627.894 539.53269 24.957511 26.479973 + 9200 2.7e+02 -2542.0567 -2627.6595 540.14474 24.928803 26.507394 + 9300 2.8e+02 -2542.1288 -2626.8786 540.80469 24.680402 26.536961 + 9400 2.8e+02 -2541.8301 -2627.2829 541.36001 24.885088 26.561841 + 9500 2.8e+02 -2541.6773 -2628.1451 541.99633 25.180691 26.590349 + 9600 2.9e+02 -2541.3762 -2629.589 542.51985 25.688852 26.613804 + 9700 2.9e+02 -2541.0314 -2625.3135 543.15786 24.544177 26.642389 + 9800 2.9e+02 -2540.6298 -2625.8733 543.76425 24.824163 26.669556 + 9900 2.9e+02 -2540.2376 -2628.1266 544.31076 25.594543 26.694041 + 10000 3e+02 -2540.0111 -2625.9159 544.89126 25.016719 26.720049 +Loop time of 297.023 on 1 procs for 10000 steps with 1440 atoms + +Pair time (%) = 107.376 (36.1506) +Neigh time (%) = 46.5622 (15.6763) +Comm time (%) = 0.924362 (0.311209) +Outpt time (%) = 0.154094 (0.0518793) +Other time (%) = 142.007 (47.81) + +Nlocal: 1440 ave 1440 max 1440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 5320 ave 5320 max 5320 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 419203 ave 419203 max 419203 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 838406 ave 838406 max 838406 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 838406 +Ave neighs/atom = 582.226 +Neighbor list builds = 1000 +Dangerous builds = 0 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/in.bar1d lammps-24Sep09/examples/USER/atc/bar1d_thermal/in.bar1d --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/in.bar1d 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/in.bar1d 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,100 @@ +#AtC Thermal Coupling +# This benchmark tests heat conducting into and out of the MD region. The +# temperature is intially 20 everywhere and the left boundary BC is fixed at 40. +# The result should show heat diffusing through the FEM to the MD and back out +# to the FEM on the right. Insufficient time is captured to reach the linear +# steady state, but heat crossing both boundaries should be observed. + + +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, where N=4 for fcc, s = 3.405 A (Wagner) and a = 5.25 A (Ashcroft & Mermin, p. 70) +# NOTE following 3 lines added for restart +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init +lattice fcc 5.405 origin 0.25 0.25 0.25 +region simRegion block -12 12 -3 3 -3 3 + +# create atoms, NOTE commented out for restart +#region mdRegion block -5 5 -3 3 -3 3 +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 + +# specify interal/ghost atoms +region mdInternal block -4 4 -3 3 -3 3 +group internal region mdInternal +group ghost subtract all internal + +# velocities have Vcm = 0, NOTE next four lines commented out for restart +#velocity internal create 40. 87287 mom yes loop geom + +#pair_style lj/cut 13.5 +##pair_coeff 1 1 0.010323166 3.405 13.5 +#pair_coeff 1 1 .238 3.405 13.5 + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc thermal Ar_thermal.mat + +# ID part keywords nx ny nz region +#fix_modify AtC fem create mesh 12 2 2 simRegion f p p +fix_modify AtC fem create mesh 12 1 1 simRegion f p p + +# specify atom types +#fix_modify AtC transfer internal type internal +fix_modify AtC transfer boundary type ghost + +# fix a temperature +fix_modify AtC transfer fix temperature all 20. + +# turn on thermostat +fix_modify AtC transfer thermal control rescale 10 + +# equilibrate MD field +#dump D1 all atom 100 dump.bar1d +#fix_modify AtC transfer output bar1dfe 100 +timestep 5 +variable xdof equal 3*count(ghost) +compute_modify thermo_temp extra ${xdof} +thermo_style custom step cpu etotal pe f_AtC[1] temp f_AtC[2] +thermo_modify format 1 %6i format 2 %7.2g +thermo 100 +run 400 + +# change thermostat to hoover +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer thermal control hoover +fix_modify AtC transfer filter type exponential +fix_modify AtC transfer filter scale 10000.0 +fix_modify AtC transfer filter on +fix_modify AtC transfer internal_quadrature off + +# add nodesets +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +fix_modify AtC mesh create_nodeset lbc -12.1 -11.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 11.9 12.1 -12 12 -12 12 +fix_modify AtC transfer fix temperature lbc 40. +fix_modify AtC transfer fix temperature rbc 20. + +# initialize filter +#thermo 1 +run 100 + +# set up output, should be before a "run" +fix_modify AtC transfer output bar1dFE 100 text + +# ouput command +#dump D1 all atom 1000 dump.bar1d +fix_modify AtC transfer atomic_output bar1dMD 100 + +# run with FE +reset_timestep 0 +thermo 100 +run 10000 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_flux lammps-24Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_flux --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_flux 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_flux 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,103 @@ +#AtC Thermal Coupling +# This benchmark tests heat conducting into and out of the MD region. The +# temperature is intially 20 everywhere and the left boundary BC is fixed at +# 40.# The result should show heat diffusing through the FEM to the MD and back +# out # to the FEM on the right. Insufficient time is captured to reach the +# linear # steady state, but heat crossing both boundaries should be observed. +#echo both +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, where N=4 for fcc, s = 3.405 A (Wagner) and a = 5.25 A (Ashcroft & Mermin, p. 70) +# NOTE following 3 lines added for restart +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init +lattice fcc 5.405 origin 0.25 0.25 0.25 +region simRegion block -12 12 -3 3 -3 3 + +# create atoms, NOTE commented out for restart +#region mdRegion block -5 5 -3 3 -3 3 +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 + +# specify interal/ghost atoms +region mdInternal block -4 4 -3 3 -3 3 +group internal region mdInternal +group ghost subtract all internal + +# velocities have Vcm = 0, NOTE next four lines commented out for restart +#velocity internal create 40. 87287 mom yes loop geom + +#pair_style lj/cut 13.5 +##pair_coeff 1 1 0.010323166 3.405 13.5 +#pair_coeff 1 1 .238 3.405 13.5 + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +#write_restart tinit.dat + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc thermal Ar_thermal.mat + +# ID part keywords nx ny nz region +#fix_modify AtC fem create mesh 12 2 2 simRegion f p p +fix_modify AtC fem create mesh 12 1 1 simRegion f p p +fix_modify AtC mesh create_faceset ibndy box -4.0 4.0 -12 12 -12 12 in +fix_modify AtC mesh create_faceset obndy box -4.0 4.0 -12 12 -12 12 outward + +# specify atom types +#fix_modify AtC transfer internal type internal +fix_modify AtC transfer boundary type ghost + +# fix a temperature +fix_modify AtC transfer fix temperature all 20. +#fix_modify AtC transfer fix temperature all linear 0 0 0 -0.154 0 0 30. + +# turn on thermostat +fix_modify AtC transfer thermal control rescale 10 + +variable xdof equal 3*count(ghost) +compute_modify thermo_temp extra ${xdof} +thermo_style custom step cpu etotal pe f_AtC[1] temp f_AtC[2] +thermo_modify format 1 %6i format 2 %7.2g + +# equilibrate MD field +#fix_modify AtC transfer output bar1dfe_flux_init 100 +timestep 5 +thermo 10 +run 400 + + +# change thermostat to hoover +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer thermal control flux faceset obndy +fix_modify AtC transfer filter type exponential +fix_modify AtC transfer filter scale 10000.0 +fix_modify AtC transfer filter on + +# add nodesets +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +fix_modify AtC mesh create_nodeset lbc -12.1 -11.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 11.9 12.1 -12 12 -12 12 +fix_modify AtC transfer fix temperature lbc 40. +fix_modify AtC transfer fix temperature rbc 20. + +# initialize filter +run 100 + +# set up output, should be before a "run" +fix_modify AtC transfer output bar1d_fluxFE 100 text + +# ouput command +#dump D1 all atom 1000 dump.bar1d +fix_modify AtC transfer atomic_output bar1d_fluxMD 100 + +# run with FE +reset_timestep 0 +thermo 100 +run 10000 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_frac_step lammps-24Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_frac_step --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_frac_step 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/in.bar1d_frac_step 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,112 @@ +#AtC Thermal Coupling +# This benchmark tests heat conducting into and out of the MD region. The +# temperature is intially 20 everywhere and the left boundary BC is fixed at +# 40.# The result should show heat diffusing through the FEM to the MD and back +# out # to the FEM on the right. Insufficient time is captured to reach the +# linear # steady state, but heat crossing both boundaries should be observed. + + +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, where N=4 for fcc, s = 3.405 A (Wagner) and a = 5.25 A (Ashcroft & Mermin, p. 70) +# NOTE following 3 lines added for restart +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init +lattice fcc 5.405 origin 0.25 0.25 0.25 +region simRegion block -12 12 -3 3 -3 3 + +# create atoms, NOTE commented out for restart +#region mdRegion block -5 5 -3 3 -3 3 +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 + +# specify interal/ghost atoms +region mdInternal block -4 4 -3 3 -3 3 +group internal region mdInternal +group ghost subtract all internal + +# velocities have Vcm = 0, NOTE next four lines commented out for restart +#velocity internal create 40. 87287 mom yes loop geom + +#pair_style lj/cut 13.5 +##pair_coeff 1 1 0.010323166 3.405 13.5 +#pair_coeff 1 1 .238 3.405 13.5 + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc thermal Ar_thermal.mat + +# ID part keywords nx ny nz region +#fix_modify AtC fem create mesh 12 2 2 simRegion f p p +fix_modify AtC fem create mesh 4 1 1 mdInternal f p p +#fix_modify AtC mesh create_faceset ibndy box -4.0 4.0 -12 12 -12 12 in +#fix_modify AtC mesh create_faceset obndy box -4.0 4.0 -12 12 -12 12 outward + +# specify atom types +#fix_modify AtC transfer internal type internal +#fix_modify AtC transfer boundary type ghost + +# fix a temperature +fix_modify AtC transfer fix temperature all 20. + +# turn on thermostat +fix_modify AtC transfer thermal control rescale 10 + +# equilibrate MD field +#dump D1 all atom 100 dump.bar1d +#fix_modify AtC transfer output bar1dfe 100 +timestep 5 +variable xdof equal 3*count(ghost) +compute_modify thermo_temp extra ${xdof} +thermo_style custom step cpu etotal pe f_AtC[1] temp f_AtC[2] +thermo_modify format 1 %6i format 2 %7.2g +thermo 100 +run 400 + +# add nodesets +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +fix_modify AtC mesh create_nodeset lbc -4.1 -3.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 3.9 4.1 -12 12 -12 12 +fix_modify AtC transfer fix temperature lbc 40. +fix_modify AtC transfer fix temperature rbc 20. + +# initialize filter +#timestep 0.5 +#fix_modify AtC transfer output bar1d_frac_stepFE 1 +#thermo 1 +run 400 + +# change thermostat to hoover +fix_modify AtC transfer pmfc +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer fix temperature lbc 40. +fix_modify AtC transfer fix temperature rbc 20. +# fix_modify AtC transfer thermal control none +#fix_modify AtC transfer thermal control hoover +fix_modify AtC transfer thermal control flux no_boundary +# #fix_modify AtC transfer thermal control flux interpolate +# #fix_modify AtC transfer thermal control flux faceset obndy +fix_modify AtC transfer filter type exponential +fix_modify AtC transfer filter scale 10000.0 +#fix_modify AtC transfer filter on +fix_modify AtC transfer internal_quadrature off +# #fix_modify AtC transfer localized_lambda on + +# set up output, should be before a "run" +fix_modify AtC transfer output bar1d_frac_stepFE 100 text + +# ouput command +#dump D1 all atom 1000 dump.bar1d +fix_modify AtC transfer atomic_output bar1d_frac_stepMD 100 + +# run with FE +reset_timestep 0 +thermo 100 +run 10000 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_thermal/temp.init lammps-24Sep09/examples/USER/atc/bar1d_thermal/temp.init --- lammps-22Sep09/examples/USER/atc/bar1d_thermal/temp.init 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_thermal/temp.init 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,2903 @@ +LAMMPS data file from restart file: timestep = 0, procs = 1 + +1440 atoms + +1 atom types + +-27.025 27.025 xlo xhi +-16.215 16.215 ylo yhi +-16.215 16.215 zlo zhi + +Masses + +1 39.95 + +Pair Coeffs + +1 0.238 3.405 + +Atoms + +1 1 -25.6738 -14.8638 -14.8638 0 0 0 +2 1 -22.9713 -12.1613 -14.8638 0 0 0 +3 1 -22.9713 -14.8638 -12.1613 0 0 0 +4 1 -25.6738 -12.1613 -12.1613 0 0 0 +5 1 -20.2688 -14.8638 -14.8638 0 0 0 +6 1 -17.5663 -12.1613 -14.8638 0 0 0 +7 1 -17.5663 -14.8638 -12.1613 0 0 0 +8 1 -20.2688 -12.1613 -12.1613 0 0 0 +9 1 -14.8638 -14.8638 -14.8638 0 0 0 +10 1 -12.1613 -12.1613 -14.8638 0 0 0 +11 1 -12.1613 -14.8638 -12.1613 0 0 0 +12 1 -14.8638 -12.1613 -12.1613 0 0 0 +13 1 -9.45875 -14.8638 -14.8638 0 0 0 +14 1 -6.75625 -12.1613 -14.8638 0 0 0 +15 1 -6.75625 -14.8638 -12.1613 0 0 0 +16 1 -9.45875 -12.1613 -12.1613 0 0 0 +17 1 -4.05375 -14.8638 -14.8638 0 0 0 +18 1 -1.35125 -12.1613 -14.8638 0 0 0 +19 1 -1.35125 -14.8638 -12.1613 0 0 0 +20 1 -4.05375 -12.1613 -12.1613 0 0 0 +21 1 1.35125 -14.8638 -14.8638 0 0 0 +22 1 4.05375 -12.1613 -14.8638 0 0 0 +23 1 4.05375 -14.8638 -12.1613 0 0 0 +24 1 1.35125 -12.1613 -12.1613 0 0 0 +25 1 6.75625 -14.8638 -14.8638 0 0 0 +26 1 9.45875 -12.1613 -14.8638 0 0 0 +27 1 9.45875 -14.8638 -12.1613 0 0 0 +28 1 6.75625 -12.1613 -12.1613 0 0 0 +29 1 12.1613 -14.8638 -14.8638 0 0 0 +30 1 14.8638 -12.1613 -14.8638 0 0 0 +31 1 14.8638 -14.8638 -12.1613 0 0 0 +32 1 12.1613 -12.1613 -12.1613 0 0 0 +33 1 17.5663 -14.8638 -14.8638 0 0 0 +34 1 20.2688 -12.1613 -14.8638 0 0 0 +35 1 20.2688 -14.8638 -12.1613 0 0 0 +36 1 17.5663 -12.1613 -12.1613 0 0 0 +37 1 22.9713 -14.8638 -14.8638 0 0 0 +38 1 25.6738 -12.1613 -14.8638 0 0 0 +39 1 25.6738 -14.8638 -12.1613 0 0 0 +40 1 22.9713 -12.1613 -12.1613 0 0 0 +41 1 -25.6738 -9.45875 -14.8638 0 0 0 +42 1 -22.9713 -6.75625 -14.8638 0 0 0 +43 1 -22.9713 -9.45875 -12.1613 0 0 0 +44 1 -25.6738 -6.75625 -12.1613 0 0 0 +45 1 -20.2688 -9.45875 -14.8638 0 0 0 +46 1 -17.5663 -6.75625 -14.8638 0 0 0 +47 1 -17.5663 -9.45875 -12.1613 0 0 0 +48 1 -20.2688 -6.75625 -12.1613 0 0 0 +49 1 -14.8638 -9.45875 -14.8638 0 0 0 +50 1 -12.1613 -6.75625 -14.8638 0 0 0 +51 1 -12.1613 -9.45875 -12.1613 0 0 0 +52 1 -14.8638 -6.75625 -12.1613 0 0 0 +53 1 -9.45875 -9.45875 -14.8638 0 0 0 +54 1 -6.75625 -6.75625 -14.8638 0 0 0 +55 1 -6.75625 -9.45875 -12.1613 0 0 0 +56 1 -9.45875 -6.75625 -12.1613 0 0 0 +57 1 -4.05375 -9.45875 -14.8638 0 0 0 +58 1 -1.35125 -6.75625 -14.8638 0 0 0 +59 1 -1.35125 -9.45875 -12.1613 0 0 0 +60 1 -4.05375 -6.75625 -12.1613 0 0 0 +61 1 1.35125 -9.45875 -14.8638 0 0 0 +62 1 4.05375 -6.75625 -14.8638 0 0 0 +63 1 4.05375 -9.45875 -12.1613 0 0 0 +64 1 1.35125 -6.75625 -12.1613 0 0 0 +65 1 6.75625 -9.45875 -14.8638 0 0 0 +66 1 9.45875 -6.75625 -14.8638 0 0 0 +67 1 9.45875 -9.45875 -12.1613 0 0 0 +68 1 6.75625 -6.75625 -12.1613 0 0 0 +69 1 12.1613 -9.45875 -14.8638 0 0 0 +70 1 14.8638 -6.75625 -14.8638 0 0 0 +71 1 14.8638 -9.45875 -12.1613 0 0 0 +72 1 12.1613 -6.75625 -12.1613 0 0 0 +73 1 17.5663 -9.45875 -14.8638 0 0 0 +74 1 20.2688 -6.75625 -14.8638 0 0 0 +75 1 20.2688 -9.45875 -12.1613 0 0 0 +76 1 17.5663 -6.75625 -12.1613 0 0 0 +77 1 22.9713 -9.45875 -14.8638 0 0 0 +78 1 25.6738 -6.75625 -14.8638 0 0 0 +79 1 25.6738 -9.45875 -12.1613 0 0 0 +80 1 22.9713 -6.75625 -12.1613 0 0 0 +81 1 -25.6738 -4.05375 -14.8638 0 0 0 +82 1 -22.9713 -1.35125 -14.8638 0 0 0 +83 1 -22.9713 -4.05375 -12.1613 0 0 0 +84 1 -25.6738 -1.35125 -12.1613 0 0 0 +85 1 -20.2688 -4.05375 -14.8638 0 0 0 +86 1 -17.5663 -1.35125 -14.8638 0 0 0 +87 1 -17.5663 -4.05375 -12.1613 0 0 0 +88 1 -20.2688 -1.35125 -12.1613 0 0 0 +89 1 -14.8638 -4.05375 -14.8638 0 0 0 +90 1 -12.1613 -1.35125 -14.8638 0 0 0 +91 1 -12.1613 -4.05375 -12.1613 0 0 0 +92 1 -14.8638 -1.35125 -12.1613 0 0 0 +93 1 -9.45875 -4.05375 -14.8638 0 0 0 +94 1 -6.75625 -1.35125 -14.8638 0 0 0 +95 1 -6.75625 -4.05375 -12.1613 0 0 0 +96 1 -9.45875 -1.35125 -12.1613 0 0 0 +97 1 -4.05375 -4.05375 -14.8638 0 0 0 +98 1 -1.35125 -1.35125 -14.8638 0 0 0 +99 1 -1.35125 -4.05375 -12.1613 0 0 0 +100 1 -4.05375 -1.35125 -12.1613 0 0 0 +101 1 1.35125 -4.05375 -14.8638 0 0 0 +102 1 4.05375 -1.35125 -14.8638 0 0 0 +103 1 4.05375 -4.05375 -12.1613 0 0 0 +104 1 1.35125 -1.35125 -12.1613 0 0 0 +105 1 6.75625 -4.05375 -14.8638 0 0 0 +106 1 9.45875 -1.35125 -14.8638 0 0 0 +107 1 9.45875 -4.05375 -12.1613 0 0 0 +108 1 6.75625 -1.35125 -12.1613 0 0 0 +109 1 12.1613 -4.05375 -14.8638 0 0 0 +110 1 14.8638 -1.35125 -14.8638 0 0 0 +111 1 14.8638 -4.05375 -12.1613 0 0 0 +112 1 12.1613 -1.35125 -12.1613 0 0 0 +113 1 17.5663 -4.05375 -14.8638 0 0 0 +114 1 20.2688 -1.35125 -14.8638 0 0 0 +115 1 20.2688 -4.05375 -12.1613 0 0 0 +116 1 17.5663 -1.35125 -12.1613 0 0 0 +117 1 22.9713 -4.05375 -14.8638 0 0 0 +118 1 25.6738 -1.35125 -14.8638 0 0 0 +119 1 25.6738 -4.05375 -12.1613 0 0 0 +120 1 22.9713 -1.35125 -12.1613 0 0 0 +121 1 -25.6738 1.35125 -14.8638 0 0 0 +122 1 -22.9713 4.05375 -14.8638 0 0 0 +123 1 -22.9713 1.35125 -12.1613 0 0 0 +124 1 -25.6738 4.05375 -12.1613 0 0 0 +125 1 -20.2688 1.35125 -14.8638 0 0 0 +126 1 -17.5663 4.05375 -14.8638 0 0 0 +127 1 -17.5663 1.35125 -12.1613 0 0 0 +128 1 -20.2688 4.05375 -12.1613 0 0 0 +129 1 -14.8638 1.35125 -14.8638 0 0 0 +130 1 -12.1613 4.05375 -14.8638 0 0 0 +131 1 -12.1613 1.35125 -12.1613 0 0 0 +132 1 -14.8638 4.05375 -12.1613 0 0 0 +133 1 -9.45875 1.35125 -14.8638 0 0 0 +134 1 -6.75625 4.05375 -14.8638 0 0 0 +135 1 -6.75625 1.35125 -12.1613 0 0 0 +136 1 -9.45875 4.05375 -12.1613 0 0 0 +137 1 -4.05375 1.35125 -14.8638 0 0 0 +138 1 -1.35125 4.05375 -14.8638 0 0 0 +139 1 -1.35125 1.35125 -12.1613 0 0 0 +140 1 -4.05375 4.05375 -12.1613 0 0 0 +141 1 1.35125 1.35125 -14.8638 0 0 0 +142 1 4.05375 4.05375 -14.8638 0 0 0 +143 1 4.05375 1.35125 -12.1613 0 0 0 +144 1 1.35125 4.05375 -12.1613 0 0 0 +145 1 6.75625 1.35125 -14.8638 0 0 0 +146 1 9.45875 4.05375 -14.8638 0 0 0 +147 1 9.45875 1.35125 -12.1613 0 0 0 +148 1 6.75625 4.05375 -12.1613 0 0 0 +149 1 12.1613 1.35125 -14.8638 0 0 0 +150 1 14.8638 4.05375 -14.8638 0 0 0 +151 1 14.8638 1.35125 -12.1613 0 0 0 +152 1 12.1613 4.05375 -12.1613 0 0 0 +153 1 17.5663 1.35125 -14.8638 0 0 0 +154 1 20.2688 4.05375 -14.8638 0 0 0 +155 1 20.2688 1.35125 -12.1613 0 0 0 +156 1 17.5663 4.05375 -12.1613 0 0 0 +157 1 22.9713 1.35125 -14.8638 0 0 0 +158 1 25.6738 4.05375 -14.8638 0 0 0 +159 1 25.6738 1.35125 -12.1613 0 0 0 +160 1 22.9713 4.05375 -12.1613 0 0 0 +161 1 -25.6738 6.75625 -14.8638 0 0 0 +162 1 -22.9713 9.45875 -14.8638 0 0 0 +163 1 -22.9713 6.75625 -12.1613 0 0 0 +164 1 -25.6738 9.45875 -12.1613 0 0 0 +165 1 -20.2688 6.75625 -14.8638 0 0 0 +166 1 -17.5663 9.45875 -14.8638 0 0 0 +167 1 -17.5663 6.75625 -12.1613 0 0 0 +168 1 -20.2688 9.45875 -12.1613 0 0 0 +169 1 -14.8638 6.75625 -14.8638 0 0 0 +170 1 -12.1613 9.45875 -14.8638 0 0 0 +171 1 -12.1613 6.75625 -12.1613 0 0 0 +172 1 -14.8638 9.45875 -12.1613 0 0 0 +173 1 -9.45875 6.75625 -14.8638 0 0 0 +174 1 -6.75625 9.45875 -14.8638 0 0 0 +175 1 -6.75625 6.75625 -12.1613 0 0 0 +176 1 -9.45875 9.45875 -12.1613 0 0 0 +177 1 -4.05375 6.75625 -14.8638 0 0 0 +178 1 -1.35125 9.45875 -14.8638 0 0 0 +179 1 -1.35125 6.75625 -12.1613 0 0 0 +180 1 -4.05375 9.45875 -12.1613 0 0 0 +181 1 1.35125 6.75625 -14.8638 0 0 0 +182 1 4.05375 9.45875 -14.8638 0 0 0 +183 1 4.05375 6.75625 -12.1613 0 0 0 +184 1 1.35125 9.45875 -12.1613 0 0 0 +185 1 6.75625 6.75625 -14.8638 0 0 0 +186 1 9.45875 9.45875 -14.8638 0 0 0 +187 1 9.45875 6.75625 -12.1613 0 0 0 +188 1 6.75625 9.45875 -12.1613 0 0 0 +189 1 12.1613 6.75625 -14.8638 0 0 0 +190 1 14.8638 9.45875 -14.8638 0 0 0 +191 1 14.8638 6.75625 -12.1613 0 0 0 +192 1 12.1613 9.45875 -12.1613 0 0 0 +193 1 17.5663 6.75625 -14.8638 0 0 0 +194 1 20.2688 9.45875 -14.8638 0 0 0 +195 1 20.2688 6.75625 -12.1613 0 0 0 +196 1 17.5663 9.45875 -12.1613 0 0 0 +197 1 22.9713 6.75625 -14.8638 0 0 0 +198 1 25.6738 9.45875 -14.8638 0 0 0 +199 1 25.6738 6.75625 -12.1613 0 0 0 +200 1 22.9713 9.45875 -12.1613 0 0 0 +201 1 -25.6738 12.1613 -14.8638 0 0 0 +202 1 -22.9713 14.8638 -14.8638 0 0 0 +203 1 -22.9713 12.1613 -12.1613 0 0 0 +204 1 -25.6738 14.8638 -12.1613 0 0 0 +205 1 -20.2688 12.1613 -14.8638 0 0 0 +206 1 -17.5663 14.8638 -14.8638 0 0 0 +207 1 -17.5663 12.1613 -12.1613 0 0 0 +208 1 -20.2688 14.8638 -12.1613 0 0 0 +209 1 -14.8638 12.1613 -14.8638 0 0 0 +210 1 -12.1613 14.8638 -14.8638 0 0 0 +211 1 -12.1613 12.1613 -12.1613 0 0 0 +212 1 -14.8638 14.8638 -12.1613 0 0 0 +213 1 -9.45875 12.1613 -14.8638 0 0 0 +214 1 -6.75625 14.8638 -14.8638 0 0 0 +215 1 -6.75625 12.1613 -12.1613 0 0 0 +216 1 -9.45875 14.8638 -12.1613 0 0 0 +217 1 -4.05375 12.1613 -14.8638 0 0 0 +218 1 -1.35125 14.8638 -14.8638 0 0 0 +219 1 -1.35125 12.1613 -12.1613 0 0 0 +220 1 -4.05375 14.8638 -12.1613 0 0 0 +221 1 1.35125 12.1613 -14.8638 0 0 0 +222 1 4.05375 14.8638 -14.8638 0 0 0 +223 1 4.05375 12.1613 -12.1613 0 0 0 +224 1 1.35125 14.8638 -12.1613 0 0 0 +225 1 6.75625 12.1613 -14.8638 0 0 0 +226 1 9.45875 14.8638 -14.8638 0 0 0 +227 1 9.45875 12.1613 -12.1613 0 0 0 +228 1 6.75625 14.8638 -12.1613 0 0 0 +229 1 12.1613 12.1613 -14.8638 0 0 0 +230 1 14.8638 14.8638 -14.8638 0 0 0 +231 1 14.8638 12.1613 -12.1613 0 0 0 +232 1 12.1613 14.8638 -12.1613 0 0 0 +233 1 17.5663 12.1613 -14.8638 0 0 0 +234 1 20.2688 14.8638 -14.8638 0 0 0 +235 1 20.2688 12.1613 -12.1613 0 0 0 +236 1 17.5663 14.8638 -12.1613 0 0 0 +237 1 22.9713 12.1613 -14.8638 0 0 0 +238 1 25.6738 14.8638 -14.8638 0 0 0 +239 1 25.6738 12.1613 -12.1613 0 0 0 +240 1 22.9713 14.8638 -12.1613 0 0 0 +241 1 -25.6738 -14.8638 -9.45875 0 0 0 +242 1 -22.9713 -12.1613 -9.45875 0 0 0 +243 1 -22.9713 -14.8638 -6.75625 0 0 0 +244 1 -25.6738 -12.1613 -6.75625 0 0 0 +245 1 -20.2688 -14.8638 -9.45875 0 0 0 +246 1 -17.5663 -12.1613 -9.45875 0 0 0 +247 1 -17.5663 -14.8638 -6.75625 0 0 0 +248 1 -20.2688 -12.1613 -6.75625 0 0 0 +249 1 -14.8638 -14.8638 -9.45875 0 0 0 +250 1 -12.1613 -12.1613 -9.45875 0 0 0 +251 1 -12.1613 -14.8638 -6.75625 0 0 0 +252 1 -14.8638 -12.1613 -6.75625 0 0 0 +253 1 -9.45875 -14.8638 -9.45875 0 0 0 +254 1 -6.75625 -12.1613 -9.45875 0 0 0 +255 1 -6.75625 -14.8638 -6.75625 0 0 0 +256 1 -9.45875 -12.1613 -6.75625 0 0 0 +257 1 -4.05375 -14.8638 -9.45875 0 0 0 +258 1 -1.35125 -12.1613 -9.45875 0 0 0 +259 1 -1.35125 -14.8638 -6.75625 0 0 0 +260 1 -4.05375 -12.1613 -6.75625 0 0 0 +261 1 1.35125 -14.8638 -9.45875 0 0 0 +262 1 4.05375 -12.1613 -9.45875 0 0 0 +263 1 4.05375 -14.8638 -6.75625 0 0 0 +264 1 1.35125 -12.1613 -6.75625 0 0 0 +265 1 6.75625 -14.8638 -9.45875 0 0 0 +266 1 9.45875 -12.1613 -9.45875 0 0 0 +267 1 9.45875 -14.8638 -6.75625 0 0 0 +268 1 6.75625 -12.1613 -6.75625 0 0 0 +269 1 12.1613 -14.8638 -9.45875 0 0 0 +270 1 14.8638 -12.1613 -9.45875 0 0 0 +271 1 14.8638 -14.8638 -6.75625 0 0 0 +272 1 12.1613 -12.1613 -6.75625 0 0 0 +273 1 17.5663 -14.8638 -9.45875 0 0 0 +274 1 20.2688 -12.1613 -9.45875 0 0 0 +275 1 20.2688 -14.8638 -6.75625 0 0 0 +276 1 17.5663 -12.1613 -6.75625 0 0 0 +277 1 22.9713 -14.8638 -9.45875 0 0 0 +278 1 25.6738 -12.1613 -9.45875 0 0 0 +279 1 25.6738 -14.8638 -6.75625 0 0 0 +280 1 22.9713 -12.1613 -6.75625 0 0 0 +281 1 -25.6738 -9.45875 -9.45875 0 0 0 +282 1 -22.9713 -6.75625 -9.45875 0 0 0 +283 1 -22.9713 -9.45875 -6.75625 0 0 0 +284 1 -25.6738 -6.75625 -6.75625 0 0 0 +285 1 -20.2688 -9.45875 -9.45875 0 0 0 +286 1 -17.5663 -6.75625 -9.45875 0 0 0 +287 1 -17.5663 -9.45875 -6.75625 0 0 0 +288 1 -20.2688 -6.75625 -6.75625 0 0 0 +289 1 -14.8638 -9.45875 -9.45875 0 0 0 +290 1 -12.1613 -6.75625 -9.45875 0 0 0 +291 1 -12.1613 -9.45875 -6.75625 0 0 0 +292 1 -14.8638 -6.75625 -6.75625 0 0 0 +293 1 -9.45875 -9.45875 -9.45875 0 0 0 +294 1 -6.75625 -6.75625 -9.45875 0 0 0 +295 1 -6.75625 -9.45875 -6.75625 0 0 0 +296 1 -9.45875 -6.75625 -6.75625 0 0 0 +297 1 -4.05375 -9.45875 -9.45875 0 0 0 +298 1 -1.35125 -6.75625 -9.45875 0 0 0 +299 1 -1.35125 -9.45875 -6.75625 0 0 0 +300 1 -4.05375 -6.75625 -6.75625 0 0 0 +301 1 1.35125 -9.45875 -9.45875 0 0 0 +302 1 4.05375 -6.75625 -9.45875 0 0 0 +303 1 4.05375 -9.45875 -6.75625 0 0 0 +304 1 1.35125 -6.75625 -6.75625 0 0 0 +305 1 6.75625 -9.45875 -9.45875 0 0 0 +306 1 9.45875 -6.75625 -9.45875 0 0 0 +307 1 9.45875 -9.45875 -6.75625 0 0 0 +308 1 6.75625 -6.75625 -6.75625 0 0 0 +309 1 12.1613 -9.45875 -9.45875 0 0 0 +310 1 14.8638 -6.75625 -9.45875 0 0 0 +311 1 14.8638 -9.45875 -6.75625 0 0 0 +312 1 12.1613 -6.75625 -6.75625 0 0 0 +313 1 17.5663 -9.45875 -9.45875 0 0 0 +314 1 20.2688 -6.75625 -9.45875 0 0 0 +315 1 20.2688 -9.45875 -6.75625 0 0 0 +316 1 17.5663 -6.75625 -6.75625 0 0 0 +317 1 22.9713 -9.45875 -9.45875 0 0 0 +318 1 25.6738 -6.75625 -9.45875 0 0 0 +319 1 25.6738 -9.45875 -6.75625 0 0 0 +320 1 22.9713 -6.75625 -6.75625 0 0 0 +321 1 -25.6738 -4.05375 -9.45875 0 0 0 +322 1 -22.9713 -1.35125 -9.45875 0 0 0 +323 1 -22.9713 -4.05375 -6.75625 0 0 0 +324 1 -25.6738 -1.35125 -6.75625 0 0 0 +325 1 -20.2688 -4.05375 -9.45875 0 0 0 +326 1 -17.5663 -1.35125 -9.45875 0 0 0 +327 1 -17.5663 -4.05375 -6.75625 0 0 0 +328 1 -20.2688 -1.35125 -6.75625 0 0 0 +329 1 -14.8638 -4.05375 -9.45875 0 0 0 +330 1 -12.1613 -1.35125 -9.45875 0 0 0 +331 1 -12.1613 -4.05375 -6.75625 0 0 0 +332 1 -14.8638 -1.35125 -6.75625 0 0 0 +333 1 -9.45875 -4.05375 -9.45875 0 0 0 +334 1 -6.75625 -1.35125 -9.45875 0 0 0 +335 1 -6.75625 -4.05375 -6.75625 0 0 0 +336 1 -9.45875 -1.35125 -6.75625 0 0 0 +337 1 -4.05375 -4.05375 -9.45875 0 0 0 +338 1 -1.35125 -1.35125 -9.45875 0 0 0 +339 1 -1.35125 -4.05375 -6.75625 0 0 0 +340 1 -4.05375 -1.35125 -6.75625 0 0 0 +341 1 1.35125 -4.05375 -9.45875 0 0 0 +342 1 4.05375 -1.35125 -9.45875 0 0 0 +343 1 4.05375 -4.05375 -6.75625 0 0 0 +344 1 1.35125 -1.35125 -6.75625 0 0 0 +345 1 6.75625 -4.05375 -9.45875 0 0 0 +346 1 9.45875 -1.35125 -9.45875 0 0 0 +347 1 9.45875 -4.05375 -6.75625 0 0 0 +348 1 6.75625 -1.35125 -6.75625 0 0 0 +349 1 12.1613 -4.05375 -9.45875 0 0 0 +350 1 14.8638 -1.35125 -9.45875 0 0 0 +351 1 14.8638 -4.05375 -6.75625 0 0 0 +352 1 12.1613 -1.35125 -6.75625 0 0 0 +353 1 17.5663 -4.05375 -9.45875 0 0 0 +354 1 20.2688 -1.35125 -9.45875 0 0 0 +355 1 20.2688 -4.05375 -6.75625 0 0 0 +356 1 17.5663 -1.35125 -6.75625 0 0 0 +357 1 22.9713 -4.05375 -9.45875 0 0 0 +358 1 25.6738 -1.35125 -9.45875 0 0 0 +359 1 25.6738 -4.05375 -6.75625 0 0 0 +360 1 22.9713 -1.35125 -6.75625 0 0 0 +361 1 -25.6738 1.35125 -9.45875 0 0 0 +362 1 -22.9713 4.05375 -9.45875 0 0 0 +363 1 -22.9713 1.35125 -6.75625 0 0 0 +364 1 -25.6738 4.05375 -6.75625 0 0 0 +365 1 -20.2688 1.35125 -9.45875 0 0 0 +366 1 -17.5663 4.05375 -9.45875 0 0 0 +367 1 -17.5663 1.35125 -6.75625 0 0 0 +368 1 -20.2688 4.05375 -6.75625 0 0 0 +369 1 -14.8638 1.35125 -9.45875 0 0 0 +370 1 -12.1613 4.05375 -9.45875 0 0 0 +371 1 -12.1613 1.35125 -6.75625 0 0 0 +372 1 -14.8638 4.05375 -6.75625 0 0 0 +373 1 -9.45875 1.35125 -9.45875 0 0 0 +374 1 -6.75625 4.05375 -9.45875 0 0 0 +375 1 -6.75625 1.35125 -6.75625 0 0 0 +376 1 -9.45875 4.05375 -6.75625 0 0 0 +377 1 -4.05375 1.35125 -9.45875 0 0 0 +378 1 -1.35125 4.05375 -9.45875 0 0 0 +379 1 -1.35125 1.35125 -6.75625 0 0 0 +380 1 -4.05375 4.05375 -6.75625 0 0 0 +381 1 1.35125 1.35125 -9.45875 0 0 0 +382 1 4.05375 4.05375 -9.45875 0 0 0 +383 1 4.05375 1.35125 -6.75625 0 0 0 +384 1 1.35125 4.05375 -6.75625 0 0 0 +385 1 6.75625 1.35125 -9.45875 0 0 0 +386 1 9.45875 4.05375 -9.45875 0 0 0 +387 1 9.45875 1.35125 -6.75625 0 0 0 +388 1 6.75625 4.05375 -6.75625 0 0 0 +389 1 12.1613 1.35125 -9.45875 0 0 0 +390 1 14.8638 4.05375 -9.45875 0 0 0 +391 1 14.8638 1.35125 -6.75625 0 0 0 +392 1 12.1613 4.05375 -6.75625 0 0 0 +393 1 17.5663 1.35125 -9.45875 0 0 0 +394 1 20.2688 4.05375 -9.45875 0 0 0 +395 1 20.2688 1.35125 -6.75625 0 0 0 +396 1 17.5663 4.05375 -6.75625 0 0 0 +397 1 22.9713 1.35125 -9.45875 0 0 0 +398 1 25.6738 4.05375 -9.45875 0 0 0 +399 1 25.6738 1.35125 -6.75625 0 0 0 +400 1 22.9713 4.05375 -6.75625 0 0 0 +401 1 -25.6738 6.75625 -9.45875 0 0 0 +402 1 -22.9713 9.45875 -9.45875 0 0 0 +403 1 -22.9713 6.75625 -6.75625 0 0 0 +404 1 -25.6738 9.45875 -6.75625 0 0 0 +405 1 -20.2688 6.75625 -9.45875 0 0 0 +406 1 -17.5663 9.45875 -9.45875 0 0 0 +407 1 -17.5663 6.75625 -6.75625 0 0 0 +408 1 -20.2688 9.45875 -6.75625 0 0 0 +409 1 -14.8638 6.75625 -9.45875 0 0 0 +410 1 -12.1613 9.45875 -9.45875 0 0 0 +411 1 -12.1613 6.75625 -6.75625 0 0 0 +412 1 -14.8638 9.45875 -6.75625 0 0 0 +413 1 -9.45875 6.75625 -9.45875 0 0 0 +414 1 -6.75625 9.45875 -9.45875 0 0 0 +415 1 -6.75625 6.75625 -6.75625 0 0 0 +416 1 -9.45875 9.45875 -6.75625 0 0 0 +417 1 -4.05375 6.75625 -9.45875 0 0 0 +418 1 -1.35125 9.45875 -9.45875 0 0 0 +419 1 -1.35125 6.75625 -6.75625 0 0 0 +420 1 -4.05375 9.45875 -6.75625 0 0 0 +421 1 1.35125 6.75625 -9.45875 0 0 0 +422 1 4.05375 9.45875 -9.45875 0 0 0 +423 1 4.05375 6.75625 -6.75625 0 0 0 +424 1 1.35125 9.45875 -6.75625 0 0 0 +425 1 6.75625 6.75625 -9.45875 0 0 0 +426 1 9.45875 9.45875 -9.45875 0 0 0 +427 1 9.45875 6.75625 -6.75625 0 0 0 +428 1 6.75625 9.45875 -6.75625 0 0 0 +429 1 12.1613 6.75625 -9.45875 0 0 0 +430 1 14.8638 9.45875 -9.45875 0 0 0 +431 1 14.8638 6.75625 -6.75625 0 0 0 +432 1 12.1613 9.45875 -6.75625 0 0 0 +433 1 17.5663 6.75625 -9.45875 0 0 0 +434 1 20.2688 9.45875 -9.45875 0 0 0 +435 1 20.2688 6.75625 -6.75625 0 0 0 +436 1 17.5663 9.45875 -6.75625 0 0 0 +437 1 22.9713 6.75625 -9.45875 0 0 0 +438 1 25.6738 9.45875 -9.45875 0 0 0 +439 1 25.6738 6.75625 -6.75625 0 0 0 +440 1 22.9713 9.45875 -6.75625 0 0 0 +441 1 -25.6738 12.1613 -9.45875 0 0 0 +442 1 -22.9713 14.8638 -9.45875 0 0 0 +443 1 -22.9713 12.1613 -6.75625 0 0 0 +444 1 -25.6738 14.8638 -6.75625 0 0 0 +445 1 -20.2688 12.1613 -9.45875 0 0 0 +446 1 -17.5663 14.8638 -9.45875 0 0 0 +447 1 -17.5663 12.1613 -6.75625 0 0 0 +448 1 -20.2688 14.8638 -6.75625 0 0 0 +449 1 -14.8638 12.1613 -9.45875 0 0 0 +450 1 -12.1613 14.8638 -9.45875 0 0 0 +451 1 -12.1613 12.1613 -6.75625 0 0 0 +452 1 -14.8638 14.8638 -6.75625 0 0 0 +453 1 -9.45875 12.1613 -9.45875 0 0 0 +454 1 -6.75625 14.8638 -9.45875 0 0 0 +455 1 -6.75625 12.1613 -6.75625 0 0 0 +456 1 -9.45875 14.8638 -6.75625 0 0 0 +457 1 -4.05375 12.1613 -9.45875 0 0 0 +458 1 -1.35125 14.8638 -9.45875 0 0 0 +459 1 -1.35125 12.1613 -6.75625 0 0 0 +460 1 -4.05375 14.8638 -6.75625 0 0 0 +461 1 1.35125 12.1613 -9.45875 0 0 0 +462 1 4.05375 14.8638 -9.45875 0 0 0 +463 1 4.05375 12.1613 -6.75625 0 0 0 +464 1 1.35125 14.8638 -6.75625 0 0 0 +465 1 6.75625 12.1613 -9.45875 0 0 0 +466 1 9.45875 14.8638 -9.45875 0 0 0 +467 1 9.45875 12.1613 -6.75625 0 0 0 +468 1 6.75625 14.8638 -6.75625 0 0 0 +469 1 12.1613 12.1613 -9.45875 0 0 0 +470 1 14.8638 14.8638 -9.45875 0 0 0 +471 1 14.8638 12.1613 -6.75625 0 0 0 +472 1 12.1613 14.8638 -6.75625 0 0 0 +473 1 17.5663 12.1613 -9.45875 0 0 0 +474 1 20.2688 14.8638 -9.45875 0 0 0 +475 1 20.2688 12.1613 -6.75625 0 0 0 +476 1 17.5663 14.8638 -6.75625 0 0 0 +477 1 22.9713 12.1613 -9.45875 0 0 0 +478 1 25.6738 14.8638 -9.45875 0 0 0 +479 1 25.6738 12.1613 -6.75625 0 0 0 +480 1 22.9713 14.8638 -6.75625 0 0 0 +481 1 -25.6738 -14.8638 -4.05375 0 0 0 +482 1 -22.9713 -12.1613 -4.05375 0 0 0 +483 1 -22.9713 -14.8638 -1.35125 0 0 0 +484 1 -25.6738 -12.1613 -1.35125 0 0 0 +485 1 -20.2688 -14.8638 -4.05375 0 0 0 +486 1 -17.5663 -12.1613 -4.05375 0 0 0 +487 1 -17.5663 -14.8638 -1.35125 0 0 0 +488 1 -20.2688 -12.1613 -1.35125 0 0 0 +489 1 -14.8638 -14.8638 -4.05375 0 0 0 +490 1 -12.1613 -12.1613 -4.05375 0 0 0 +491 1 -12.1613 -14.8638 -1.35125 0 0 0 +492 1 -14.8638 -12.1613 -1.35125 0 0 0 +493 1 -9.45875 -14.8638 -4.05375 0 0 0 +494 1 -6.75625 -12.1613 -4.05375 0 0 0 +495 1 -6.75625 -14.8638 -1.35125 0 0 0 +496 1 -9.45875 -12.1613 -1.35125 0 0 0 +497 1 -4.05375 -14.8638 -4.05375 0 0 0 +498 1 -1.35125 -12.1613 -4.05375 0 0 0 +499 1 -1.35125 -14.8638 -1.35125 0 0 0 +500 1 -4.05375 -12.1613 -1.35125 0 0 0 +501 1 1.35125 -14.8638 -4.05375 0 0 0 +502 1 4.05375 -12.1613 -4.05375 0 0 0 +503 1 4.05375 -14.8638 -1.35125 0 0 0 +504 1 1.35125 -12.1613 -1.35125 0 0 0 +505 1 6.75625 -14.8638 -4.05375 0 0 0 +506 1 9.45875 -12.1613 -4.05375 0 0 0 +507 1 9.45875 -14.8638 -1.35125 0 0 0 +508 1 6.75625 -12.1613 -1.35125 0 0 0 +509 1 12.1613 -14.8638 -4.05375 0 0 0 +510 1 14.8638 -12.1613 -4.05375 0 0 0 +511 1 14.8638 -14.8638 -1.35125 0 0 0 +512 1 12.1613 -12.1613 -1.35125 0 0 0 +513 1 17.5663 -14.8638 -4.05375 0 0 0 +514 1 20.2688 -12.1613 -4.05375 0 0 0 +515 1 20.2688 -14.8638 -1.35125 0 0 0 +516 1 17.5663 -12.1613 -1.35125 0 0 0 +517 1 22.9713 -14.8638 -4.05375 0 0 0 +518 1 25.6738 -12.1613 -4.05375 0 0 0 +519 1 25.6738 -14.8638 -1.35125 0 0 0 +520 1 22.9713 -12.1613 -1.35125 0 0 0 +521 1 -25.6738 -9.45875 -4.05375 0 0 0 +522 1 -22.9713 -6.75625 -4.05375 0 0 0 +523 1 -22.9713 -9.45875 -1.35125 0 0 0 +524 1 -25.6738 -6.75625 -1.35125 0 0 0 +525 1 -20.2688 -9.45875 -4.05375 0 0 0 +526 1 -17.5663 -6.75625 -4.05375 0 0 0 +527 1 -17.5663 -9.45875 -1.35125 0 0 0 +528 1 -20.2688 -6.75625 -1.35125 0 0 0 +529 1 -14.8638 -9.45875 -4.05375 0 0 0 +530 1 -12.1613 -6.75625 -4.05375 0 0 0 +531 1 -12.1613 -9.45875 -1.35125 0 0 0 +532 1 -14.8638 -6.75625 -1.35125 0 0 0 +533 1 -9.45875 -9.45875 -4.05375 0 0 0 +534 1 -6.75625 -6.75625 -4.05375 0 0 0 +535 1 -6.75625 -9.45875 -1.35125 0 0 0 +536 1 -9.45875 -6.75625 -1.35125 0 0 0 +537 1 -4.05375 -9.45875 -4.05375 0 0 0 +538 1 -1.35125 -6.75625 -4.05375 0 0 0 +539 1 -1.35125 -9.45875 -1.35125 0 0 0 +540 1 -4.05375 -6.75625 -1.35125 0 0 0 +541 1 1.35125 -9.45875 -4.05375 0 0 0 +542 1 4.05375 -6.75625 -4.05375 0 0 0 +543 1 4.05375 -9.45875 -1.35125 0 0 0 +544 1 1.35125 -6.75625 -1.35125 0 0 0 +545 1 6.75625 -9.45875 -4.05375 0 0 0 +546 1 9.45875 -6.75625 -4.05375 0 0 0 +547 1 9.45875 -9.45875 -1.35125 0 0 0 +548 1 6.75625 -6.75625 -1.35125 0 0 0 +549 1 12.1613 -9.45875 -4.05375 0 0 0 +550 1 14.8638 -6.75625 -4.05375 0 0 0 +551 1 14.8638 -9.45875 -1.35125 0 0 0 +552 1 12.1613 -6.75625 -1.35125 0 0 0 +553 1 17.5663 -9.45875 -4.05375 0 0 0 +554 1 20.2688 -6.75625 -4.05375 0 0 0 +555 1 20.2688 -9.45875 -1.35125 0 0 0 +556 1 17.5663 -6.75625 -1.35125 0 0 0 +557 1 22.9713 -9.45875 -4.05375 0 0 0 +558 1 25.6738 -6.75625 -4.05375 0 0 0 +559 1 25.6738 -9.45875 -1.35125 0 0 0 +560 1 22.9713 -6.75625 -1.35125 0 0 0 +561 1 -25.6738 -4.05375 -4.05375 0 0 0 +562 1 -22.9713 -1.35125 -4.05375 0 0 0 +563 1 -22.9713 -4.05375 -1.35125 0 0 0 +564 1 -25.6738 -1.35125 -1.35125 0 0 0 +565 1 -20.2688 -4.05375 -4.05375 0 0 0 +566 1 -17.5663 -1.35125 -4.05375 0 0 0 +567 1 -17.5663 -4.05375 -1.35125 0 0 0 +568 1 -20.2688 -1.35125 -1.35125 0 0 0 +569 1 -14.8638 -4.05375 -4.05375 0 0 0 +570 1 -12.1613 -1.35125 -4.05375 0 0 0 +571 1 -12.1613 -4.05375 -1.35125 0 0 0 +572 1 -14.8638 -1.35125 -1.35125 0 0 0 +573 1 -9.45875 -4.05375 -4.05375 0 0 0 +574 1 -6.75625 -1.35125 -4.05375 0 0 0 +575 1 -6.75625 -4.05375 -1.35125 0 0 0 +576 1 -9.45875 -1.35125 -1.35125 0 0 0 +577 1 -4.05375 -4.05375 -4.05375 0 0 0 +578 1 -1.35125 -1.35125 -4.05375 0 0 0 +579 1 -1.35125 -4.05375 -1.35125 0 0 0 +580 1 -4.05375 -1.35125 -1.35125 0 0 0 +581 1 1.35125 -4.05375 -4.05375 0 0 0 +582 1 4.05375 -1.35125 -4.05375 0 0 0 +583 1 4.05375 -4.05375 -1.35125 0 0 0 +584 1 1.35125 -1.35125 -1.35125 0 0 0 +585 1 6.75625 -4.05375 -4.05375 0 0 0 +586 1 9.45875 -1.35125 -4.05375 0 0 0 +587 1 9.45875 -4.05375 -1.35125 0 0 0 +588 1 6.75625 -1.35125 -1.35125 0 0 0 +589 1 12.1613 -4.05375 -4.05375 0 0 0 +590 1 14.8638 -1.35125 -4.05375 0 0 0 +591 1 14.8638 -4.05375 -1.35125 0 0 0 +592 1 12.1613 -1.35125 -1.35125 0 0 0 +593 1 17.5663 -4.05375 -4.05375 0 0 0 +594 1 20.2688 -1.35125 -4.05375 0 0 0 +595 1 20.2688 -4.05375 -1.35125 0 0 0 +596 1 17.5663 -1.35125 -1.35125 0 0 0 +597 1 22.9713 -4.05375 -4.05375 0 0 0 +598 1 25.6738 -1.35125 -4.05375 0 0 0 +599 1 25.6738 -4.05375 -1.35125 0 0 0 +600 1 22.9713 -1.35125 -1.35125 0 0 0 +601 1 -25.6738 1.35125 -4.05375 0 0 0 +602 1 -22.9713 4.05375 -4.05375 0 0 0 +603 1 -22.9713 1.35125 -1.35125 0 0 0 +604 1 -25.6738 4.05375 -1.35125 0 0 0 +605 1 -20.2688 1.35125 -4.05375 0 0 0 +606 1 -17.5663 4.05375 -4.05375 0 0 0 +607 1 -17.5663 1.35125 -1.35125 0 0 0 +608 1 -20.2688 4.05375 -1.35125 0 0 0 +609 1 -14.8638 1.35125 -4.05375 0 0 0 +610 1 -12.1613 4.05375 -4.05375 0 0 0 +611 1 -12.1613 1.35125 -1.35125 0 0 0 +612 1 -14.8638 4.05375 -1.35125 0 0 0 +613 1 -9.45875 1.35125 -4.05375 0 0 0 +614 1 -6.75625 4.05375 -4.05375 0 0 0 +615 1 -6.75625 1.35125 -1.35125 0 0 0 +616 1 -9.45875 4.05375 -1.35125 0 0 0 +617 1 -4.05375 1.35125 -4.05375 0 0 0 +618 1 -1.35125 4.05375 -4.05375 0 0 0 +619 1 -1.35125 1.35125 -1.35125 0 0 0 +620 1 -4.05375 4.05375 -1.35125 0 0 0 +621 1 1.35125 1.35125 -4.05375 0 0 0 +622 1 4.05375 4.05375 -4.05375 0 0 0 +623 1 4.05375 1.35125 -1.35125 0 0 0 +624 1 1.35125 4.05375 -1.35125 0 0 0 +625 1 6.75625 1.35125 -4.05375 0 0 0 +626 1 9.45875 4.05375 -4.05375 0 0 0 +627 1 9.45875 1.35125 -1.35125 0 0 0 +628 1 6.75625 4.05375 -1.35125 0 0 0 +629 1 12.1613 1.35125 -4.05375 0 0 0 +630 1 14.8638 4.05375 -4.05375 0 0 0 +631 1 14.8638 1.35125 -1.35125 0 0 0 +632 1 12.1613 4.05375 -1.35125 0 0 0 +633 1 17.5663 1.35125 -4.05375 0 0 0 +634 1 20.2688 4.05375 -4.05375 0 0 0 +635 1 20.2688 1.35125 -1.35125 0 0 0 +636 1 17.5663 4.05375 -1.35125 0 0 0 +637 1 22.9713 1.35125 -4.05375 0 0 0 +638 1 25.6738 4.05375 -4.05375 0 0 0 +639 1 25.6738 1.35125 -1.35125 0 0 0 +640 1 22.9713 4.05375 -1.35125 0 0 0 +641 1 -25.6738 6.75625 -4.05375 0 0 0 +642 1 -22.9713 9.45875 -4.05375 0 0 0 +643 1 -22.9713 6.75625 -1.35125 0 0 0 +644 1 -25.6738 9.45875 -1.35125 0 0 0 +645 1 -20.2688 6.75625 -4.05375 0 0 0 +646 1 -17.5663 9.45875 -4.05375 0 0 0 +647 1 -17.5663 6.75625 -1.35125 0 0 0 +648 1 -20.2688 9.45875 -1.35125 0 0 0 +649 1 -14.8638 6.75625 -4.05375 0 0 0 +650 1 -12.1613 9.45875 -4.05375 0 0 0 +651 1 -12.1613 6.75625 -1.35125 0 0 0 +652 1 -14.8638 9.45875 -1.35125 0 0 0 +653 1 -9.45875 6.75625 -4.05375 0 0 0 +654 1 -6.75625 9.45875 -4.05375 0 0 0 +655 1 -6.75625 6.75625 -1.35125 0 0 0 +656 1 -9.45875 9.45875 -1.35125 0 0 0 +657 1 -4.05375 6.75625 -4.05375 0 0 0 +658 1 -1.35125 9.45875 -4.05375 0 0 0 +659 1 -1.35125 6.75625 -1.35125 0 0 0 +660 1 -4.05375 9.45875 -1.35125 0 0 0 +661 1 1.35125 6.75625 -4.05375 0 0 0 +662 1 4.05375 9.45875 -4.05375 0 0 0 +663 1 4.05375 6.75625 -1.35125 0 0 0 +664 1 1.35125 9.45875 -1.35125 0 0 0 +665 1 6.75625 6.75625 -4.05375 0 0 0 +666 1 9.45875 9.45875 -4.05375 0 0 0 +667 1 9.45875 6.75625 -1.35125 0 0 0 +668 1 6.75625 9.45875 -1.35125 0 0 0 +669 1 12.1613 6.75625 -4.05375 0 0 0 +670 1 14.8638 9.45875 -4.05375 0 0 0 +671 1 14.8638 6.75625 -1.35125 0 0 0 +672 1 12.1613 9.45875 -1.35125 0 0 0 +673 1 17.5663 6.75625 -4.05375 0 0 0 +674 1 20.2688 9.45875 -4.05375 0 0 0 +675 1 20.2688 6.75625 -1.35125 0 0 0 +676 1 17.5663 9.45875 -1.35125 0 0 0 +677 1 22.9713 6.75625 -4.05375 0 0 0 +678 1 25.6738 9.45875 -4.05375 0 0 0 +679 1 25.6738 6.75625 -1.35125 0 0 0 +680 1 22.9713 9.45875 -1.35125 0 0 0 +681 1 -25.6738 12.1613 -4.05375 0 0 0 +682 1 -22.9713 14.8638 -4.05375 0 0 0 +683 1 -22.9713 12.1613 -1.35125 0 0 0 +684 1 -25.6738 14.8638 -1.35125 0 0 0 +685 1 -20.2688 12.1613 -4.05375 0 0 0 +686 1 -17.5663 14.8638 -4.05375 0 0 0 +687 1 -17.5663 12.1613 -1.35125 0 0 0 +688 1 -20.2688 14.8638 -1.35125 0 0 0 +689 1 -14.8638 12.1613 -4.05375 0 0 0 +690 1 -12.1613 14.8638 -4.05375 0 0 0 +691 1 -12.1613 12.1613 -1.35125 0 0 0 +692 1 -14.8638 14.8638 -1.35125 0 0 0 +693 1 -9.45875 12.1613 -4.05375 0 0 0 +694 1 -6.75625 14.8638 -4.05375 0 0 0 +695 1 -6.75625 12.1613 -1.35125 0 0 0 +696 1 -9.45875 14.8638 -1.35125 0 0 0 +697 1 -4.05375 12.1613 -4.05375 0 0 0 +698 1 -1.35125 14.8638 -4.05375 0 0 0 +699 1 -1.35125 12.1613 -1.35125 0 0 0 +700 1 -4.05375 14.8638 -1.35125 0 0 0 +701 1 1.35125 12.1613 -4.05375 0 0 0 +702 1 4.05375 14.8638 -4.05375 0 0 0 +703 1 4.05375 12.1613 -1.35125 0 0 0 +704 1 1.35125 14.8638 -1.35125 0 0 0 +705 1 6.75625 12.1613 -4.05375 0 0 0 +706 1 9.45875 14.8638 -4.05375 0 0 0 +707 1 9.45875 12.1613 -1.35125 0 0 0 +708 1 6.75625 14.8638 -1.35125 0 0 0 +709 1 12.1613 12.1613 -4.05375 0 0 0 +710 1 14.8638 14.8638 -4.05375 0 0 0 +711 1 14.8638 12.1613 -1.35125 0 0 0 +712 1 12.1613 14.8638 -1.35125 0 0 0 +713 1 17.5663 12.1613 -4.05375 0 0 0 +714 1 20.2688 14.8638 -4.05375 0 0 0 +715 1 20.2688 12.1613 -1.35125 0 0 0 +716 1 17.5663 14.8638 -1.35125 0 0 0 +717 1 22.9713 12.1613 -4.05375 0 0 0 +718 1 25.6738 14.8638 -4.05375 0 0 0 +719 1 25.6738 12.1613 -1.35125 0 0 0 +720 1 22.9713 14.8638 -1.35125 0 0 0 +721 1 -25.6738 -14.8638 1.35125 0 0 0 +722 1 -22.9713 -12.1613 1.35125 0 0 0 +723 1 -22.9713 -14.8638 4.05375 0 0 0 +724 1 -25.6738 -12.1613 4.05375 0 0 0 +725 1 -20.2688 -14.8638 1.35125 0 0 0 +726 1 -17.5663 -12.1613 1.35125 0 0 0 +727 1 -17.5663 -14.8638 4.05375 0 0 0 +728 1 -20.2688 -12.1613 4.05375 0 0 0 +729 1 -14.8638 -14.8638 1.35125 0 0 0 +730 1 -12.1613 -12.1613 1.35125 0 0 0 +731 1 -12.1613 -14.8638 4.05375 0 0 0 +732 1 -14.8638 -12.1613 4.05375 0 0 0 +733 1 -9.45875 -14.8638 1.35125 0 0 0 +734 1 -6.75625 -12.1613 1.35125 0 0 0 +735 1 -6.75625 -14.8638 4.05375 0 0 0 +736 1 -9.45875 -12.1613 4.05375 0 0 0 +737 1 -4.05375 -14.8638 1.35125 0 0 0 +738 1 -1.35125 -12.1613 1.35125 0 0 0 +739 1 -1.35125 -14.8638 4.05375 0 0 0 +740 1 -4.05375 -12.1613 4.05375 0 0 0 +741 1 1.35125 -14.8638 1.35125 0 0 0 +742 1 4.05375 -12.1613 1.35125 0 0 0 +743 1 4.05375 -14.8638 4.05375 0 0 0 +744 1 1.35125 -12.1613 4.05375 0 0 0 +745 1 6.75625 -14.8638 1.35125 0 0 0 +746 1 9.45875 -12.1613 1.35125 0 0 0 +747 1 9.45875 -14.8638 4.05375 0 0 0 +748 1 6.75625 -12.1613 4.05375 0 0 0 +749 1 12.1613 -14.8638 1.35125 0 0 0 +750 1 14.8638 -12.1613 1.35125 0 0 0 +751 1 14.8638 -14.8638 4.05375 0 0 0 +752 1 12.1613 -12.1613 4.05375 0 0 0 +753 1 17.5663 -14.8638 1.35125 0 0 0 +754 1 20.2688 -12.1613 1.35125 0 0 0 +755 1 20.2688 -14.8638 4.05375 0 0 0 +756 1 17.5663 -12.1613 4.05375 0 0 0 +757 1 22.9713 -14.8638 1.35125 0 0 0 +758 1 25.6738 -12.1613 1.35125 0 0 0 +759 1 25.6738 -14.8638 4.05375 0 0 0 +760 1 22.9713 -12.1613 4.05375 0 0 0 +761 1 -25.6738 -9.45875 1.35125 0 0 0 +762 1 -22.9713 -6.75625 1.35125 0 0 0 +763 1 -22.9713 -9.45875 4.05375 0 0 0 +764 1 -25.6738 -6.75625 4.05375 0 0 0 +765 1 -20.2688 -9.45875 1.35125 0 0 0 +766 1 -17.5663 -6.75625 1.35125 0 0 0 +767 1 -17.5663 -9.45875 4.05375 0 0 0 +768 1 -20.2688 -6.75625 4.05375 0 0 0 +769 1 -14.8638 -9.45875 1.35125 0 0 0 +770 1 -12.1613 -6.75625 1.35125 0 0 0 +771 1 -12.1613 -9.45875 4.05375 0 0 0 +772 1 -14.8638 -6.75625 4.05375 0 0 0 +773 1 -9.45875 -9.45875 1.35125 0 0 0 +774 1 -6.75625 -6.75625 1.35125 0 0 0 +775 1 -6.75625 -9.45875 4.05375 0 0 0 +776 1 -9.45875 -6.75625 4.05375 0 0 0 +777 1 -4.05375 -9.45875 1.35125 0 0 0 +778 1 -1.35125 -6.75625 1.35125 0 0 0 +779 1 -1.35125 -9.45875 4.05375 0 0 0 +780 1 -4.05375 -6.75625 4.05375 0 0 0 +781 1 1.35125 -9.45875 1.35125 0 0 0 +782 1 4.05375 -6.75625 1.35125 0 0 0 +783 1 4.05375 -9.45875 4.05375 0 0 0 +784 1 1.35125 -6.75625 4.05375 0 0 0 +785 1 6.75625 -9.45875 1.35125 0 0 0 +786 1 9.45875 -6.75625 1.35125 0 0 0 +787 1 9.45875 -9.45875 4.05375 0 0 0 +788 1 6.75625 -6.75625 4.05375 0 0 0 +789 1 12.1613 -9.45875 1.35125 0 0 0 +790 1 14.8638 -6.75625 1.35125 0 0 0 +791 1 14.8638 -9.45875 4.05375 0 0 0 +792 1 12.1613 -6.75625 4.05375 0 0 0 +793 1 17.5663 -9.45875 1.35125 0 0 0 +794 1 20.2688 -6.75625 1.35125 0 0 0 +795 1 20.2688 -9.45875 4.05375 0 0 0 +796 1 17.5663 -6.75625 4.05375 0 0 0 +797 1 22.9713 -9.45875 1.35125 0 0 0 +798 1 25.6738 -6.75625 1.35125 0 0 0 +799 1 25.6738 -9.45875 4.05375 0 0 0 +800 1 22.9713 -6.75625 4.05375 0 0 0 +801 1 -25.6738 -4.05375 1.35125 0 0 0 +802 1 -22.9713 -1.35125 1.35125 0 0 0 +803 1 -22.9713 -4.05375 4.05375 0 0 0 +804 1 -25.6738 -1.35125 4.05375 0 0 0 +805 1 -20.2688 -4.05375 1.35125 0 0 0 +806 1 -17.5663 -1.35125 1.35125 0 0 0 +807 1 -17.5663 -4.05375 4.05375 0 0 0 +808 1 -20.2688 -1.35125 4.05375 0 0 0 +809 1 -14.8638 -4.05375 1.35125 0 0 0 +810 1 -12.1613 -1.35125 1.35125 0 0 0 +811 1 -12.1613 -4.05375 4.05375 0 0 0 +812 1 -14.8638 -1.35125 4.05375 0 0 0 +813 1 -9.45875 -4.05375 1.35125 0 0 0 +814 1 -6.75625 -1.35125 1.35125 0 0 0 +815 1 -6.75625 -4.05375 4.05375 0 0 0 +816 1 -9.45875 -1.35125 4.05375 0 0 0 +817 1 -4.05375 -4.05375 1.35125 0 0 0 +818 1 -1.35125 -1.35125 1.35125 0 0 0 +819 1 -1.35125 -4.05375 4.05375 0 0 0 +820 1 -4.05375 -1.35125 4.05375 0 0 0 +821 1 1.35125 -4.05375 1.35125 0 0 0 +822 1 4.05375 -1.35125 1.35125 0 0 0 +823 1 4.05375 -4.05375 4.05375 0 0 0 +824 1 1.35125 -1.35125 4.05375 0 0 0 +825 1 6.75625 -4.05375 1.35125 0 0 0 +826 1 9.45875 -1.35125 1.35125 0 0 0 +827 1 9.45875 -4.05375 4.05375 0 0 0 +828 1 6.75625 -1.35125 4.05375 0 0 0 +829 1 12.1613 -4.05375 1.35125 0 0 0 +830 1 14.8638 -1.35125 1.35125 0 0 0 +831 1 14.8638 -4.05375 4.05375 0 0 0 +832 1 12.1613 -1.35125 4.05375 0 0 0 +833 1 17.5663 -4.05375 1.35125 0 0 0 +834 1 20.2688 -1.35125 1.35125 0 0 0 +835 1 20.2688 -4.05375 4.05375 0 0 0 +836 1 17.5663 -1.35125 4.05375 0 0 0 +837 1 22.9713 -4.05375 1.35125 0 0 0 +838 1 25.6738 -1.35125 1.35125 0 0 0 +839 1 25.6738 -4.05375 4.05375 0 0 0 +840 1 22.9713 -1.35125 4.05375 0 0 0 +841 1 -25.6738 1.35125 1.35125 0 0 0 +842 1 -22.9713 4.05375 1.35125 0 0 0 +843 1 -22.9713 1.35125 4.05375 0 0 0 +844 1 -25.6738 4.05375 4.05375 0 0 0 +845 1 -20.2688 1.35125 1.35125 0 0 0 +846 1 -17.5663 4.05375 1.35125 0 0 0 +847 1 -17.5663 1.35125 4.05375 0 0 0 +848 1 -20.2688 4.05375 4.05375 0 0 0 +849 1 -14.8638 1.35125 1.35125 0 0 0 +850 1 -12.1613 4.05375 1.35125 0 0 0 +851 1 -12.1613 1.35125 4.05375 0 0 0 +852 1 -14.8638 4.05375 4.05375 0 0 0 +853 1 -9.45875 1.35125 1.35125 0 0 0 +854 1 -6.75625 4.05375 1.35125 0 0 0 +855 1 -6.75625 1.35125 4.05375 0 0 0 +856 1 -9.45875 4.05375 4.05375 0 0 0 +857 1 -4.05375 1.35125 1.35125 0 0 0 +858 1 -1.35125 4.05375 1.35125 0 0 0 +859 1 -1.35125 1.35125 4.05375 0 0 0 +860 1 -4.05375 4.05375 4.05375 0 0 0 +861 1 1.35125 1.35125 1.35125 0 0 0 +862 1 4.05375 4.05375 1.35125 0 0 0 +863 1 4.05375 1.35125 4.05375 0 0 0 +864 1 1.35125 4.05375 4.05375 0 0 0 +865 1 6.75625 1.35125 1.35125 0 0 0 +866 1 9.45875 4.05375 1.35125 0 0 0 +867 1 9.45875 1.35125 4.05375 0 0 0 +868 1 6.75625 4.05375 4.05375 0 0 0 +869 1 12.1613 1.35125 1.35125 0 0 0 +870 1 14.8638 4.05375 1.35125 0 0 0 +871 1 14.8638 1.35125 4.05375 0 0 0 +872 1 12.1613 4.05375 4.05375 0 0 0 +873 1 17.5663 1.35125 1.35125 0 0 0 +874 1 20.2688 4.05375 1.35125 0 0 0 +875 1 20.2688 1.35125 4.05375 0 0 0 +876 1 17.5663 4.05375 4.05375 0 0 0 +877 1 22.9713 1.35125 1.35125 0 0 0 +878 1 25.6738 4.05375 1.35125 0 0 0 +879 1 25.6738 1.35125 4.05375 0 0 0 +880 1 22.9713 4.05375 4.05375 0 0 0 +881 1 -25.6738 6.75625 1.35125 0 0 0 +882 1 -22.9713 9.45875 1.35125 0 0 0 +883 1 -22.9713 6.75625 4.05375 0 0 0 +884 1 -25.6738 9.45875 4.05375 0 0 0 +885 1 -20.2688 6.75625 1.35125 0 0 0 +886 1 -17.5663 9.45875 1.35125 0 0 0 +887 1 -17.5663 6.75625 4.05375 0 0 0 +888 1 -20.2688 9.45875 4.05375 0 0 0 +889 1 -14.8638 6.75625 1.35125 0 0 0 +890 1 -12.1613 9.45875 1.35125 0 0 0 +891 1 -12.1613 6.75625 4.05375 0 0 0 +892 1 -14.8638 9.45875 4.05375 0 0 0 +893 1 -9.45875 6.75625 1.35125 0 0 0 +894 1 -6.75625 9.45875 1.35125 0 0 0 +895 1 -6.75625 6.75625 4.05375 0 0 0 +896 1 -9.45875 9.45875 4.05375 0 0 0 +897 1 -4.05375 6.75625 1.35125 0 0 0 +898 1 -1.35125 9.45875 1.35125 0 0 0 +899 1 -1.35125 6.75625 4.05375 0 0 0 +900 1 -4.05375 9.45875 4.05375 0 0 0 +901 1 1.35125 6.75625 1.35125 0 0 0 +902 1 4.05375 9.45875 1.35125 0 0 0 +903 1 4.05375 6.75625 4.05375 0 0 0 +904 1 1.35125 9.45875 4.05375 0 0 0 +905 1 6.75625 6.75625 1.35125 0 0 0 +906 1 9.45875 9.45875 1.35125 0 0 0 +907 1 9.45875 6.75625 4.05375 0 0 0 +908 1 6.75625 9.45875 4.05375 0 0 0 +909 1 12.1613 6.75625 1.35125 0 0 0 +910 1 14.8638 9.45875 1.35125 0 0 0 +911 1 14.8638 6.75625 4.05375 0 0 0 +912 1 12.1613 9.45875 4.05375 0 0 0 +913 1 17.5663 6.75625 1.35125 0 0 0 +914 1 20.2688 9.45875 1.35125 0 0 0 +915 1 20.2688 6.75625 4.05375 0 0 0 +916 1 17.5663 9.45875 4.05375 0 0 0 +917 1 22.9713 6.75625 1.35125 0 0 0 +918 1 25.6738 9.45875 1.35125 0 0 0 +919 1 25.6738 6.75625 4.05375 0 0 0 +920 1 22.9713 9.45875 4.05375 0 0 0 +921 1 -25.6738 12.1613 1.35125 0 0 0 +922 1 -22.9713 14.8638 1.35125 0 0 0 +923 1 -22.9713 12.1613 4.05375 0 0 0 +924 1 -25.6738 14.8638 4.05375 0 0 0 +925 1 -20.2688 12.1613 1.35125 0 0 0 +926 1 -17.5663 14.8638 1.35125 0 0 0 +927 1 -17.5663 12.1613 4.05375 0 0 0 +928 1 -20.2688 14.8638 4.05375 0 0 0 +929 1 -14.8638 12.1613 1.35125 0 0 0 +930 1 -12.1613 14.8638 1.35125 0 0 0 +931 1 -12.1613 12.1613 4.05375 0 0 0 +932 1 -14.8638 14.8638 4.05375 0 0 0 +933 1 -9.45875 12.1613 1.35125 0 0 0 +934 1 -6.75625 14.8638 1.35125 0 0 0 +935 1 -6.75625 12.1613 4.05375 0 0 0 +936 1 -9.45875 14.8638 4.05375 0 0 0 +937 1 -4.05375 12.1613 1.35125 0 0 0 +938 1 -1.35125 14.8638 1.35125 0 0 0 +939 1 -1.35125 12.1613 4.05375 0 0 0 +940 1 -4.05375 14.8638 4.05375 0 0 0 +941 1 1.35125 12.1613 1.35125 0 0 0 +942 1 4.05375 14.8638 1.35125 0 0 0 +943 1 4.05375 12.1613 4.05375 0 0 0 +944 1 1.35125 14.8638 4.05375 0 0 0 +945 1 6.75625 12.1613 1.35125 0 0 0 +946 1 9.45875 14.8638 1.35125 0 0 0 +947 1 9.45875 12.1613 4.05375 0 0 0 +948 1 6.75625 14.8638 4.05375 0 0 0 +949 1 12.1613 12.1613 1.35125 0 0 0 +950 1 14.8638 14.8638 1.35125 0 0 0 +951 1 14.8638 12.1613 4.05375 0 0 0 +952 1 12.1613 14.8638 4.05375 0 0 0 +953 1 17.5663 12.1613 1.35125 0 0 0 +954 1 20.2688 14.8638 1.35125 0 0 0 +955 1 20.2688 12.1613 4.05375 0 0 0 +956 1 17.5663 14.8638 4.05375 0 0 0 +957 1 22.9713 12.1613 1.35125 0 0 0 +958 1 25.6738 14.8638 1.35125 0 0 0 +959 1 25.6738 12.1613 4.05375 0 0 0 +960 1 22.9713 14.8638 4.05375 0 0 0 +961 1 -25.6738 -14.8638 6.75625 0 0 0 +962 1 -22.9713 -12.1613 6.75625 0 0 0 +963 1 -22.9713 -14.8638 9.45875 0 0 0 +964 1 -25.6738 -12.1613 9.45875 0 0 0 +965 1 -20.2688 -14.8638 6.75625 0 0 0 +966 1 -17.5663 -12.1613 6.75625 0 0 0 +967 1 -17.5663 -14.8638 9.45875 0 0 0 +968 1 -20.2688 -12.1613 9.45875 0 0 0 +969 1 -14.8638 -14.8638 6.75625 0 0 0 +970 1 -12.1613 -12.1613 6.75625 0 0 0 +971 1 -12.1613 -14.8638 9.45875 0 0 0 +972 1 -14.8638 -12.1613 9.45875 0 0 0 +973 1 -9.45875 -14.8638 6.75625 0 0 0 +974 1 -6.75625 -12.1613 6.75625 0 0 0 +975 1 -6.75625 -14.8638 9.45875 0 0 0 +976 1 -9.45875 -12.1613 9.45875 0 0 0 +977 1 -4.05375 -14.8638 6.75625 0 0 0 +978 1 -1.35125 -12.1613 6.75625 0 0 0 +979 1 -1.35125 -14.8638 9.45875 0 0 0 +980 1 -4.05375 -12.1613 9.45875 0 0 0 +981 1 1.35125 -14.8638 6.75625 0 0 0 +982 1 4.05375 -12.1613 6.75625 0 0 0 +983 1 4.05375 -14.8638 9.45875 0 0 0 +984 1 1.35125 -12.1613 9.45875 0 0 0 +985 1 6.75625 -14.8638 6.75625 0 0 0 +986 1 9.45875 -12.1613 6.75625 0 0 0 +987 1 9.45875 -14.8638 9.45875 0 0 0 +988 1 6.75625 -12.1613 9.45875 0 0 0 +989 1 12.1613 -14.8638 6.75625 0 0 0 +990 1 14.8638 -12.1613 6.75625 0 0 0 +991 1 14.8638 -14.8638 9.45875 0 0 0 +992 1 12.1613 -12.1613 9.45875 0 0 0 +993 1 17.5663 -14.8638 6.75625 0 0 0 +994 1 20.2688 -12.1613 6.75625 0 0 0 +995 1 20.2688 -14.8638 9.45875 0 0 0 +996 1 17.5663 -12.1613 9.45875 0 0 0 +997 1 22.9713 -14.8638 6.75625 0 0 0 +998 1 25.6738 -12.1613 6.75625 0 0 0 +999 1 25.6738 -14.8638 9.45875 0 0 0 +1000 1 22.9713 -12.1613 9.45875 0 0 0 +1001 1 -25.6738 -9.45875 6.75625 0 0 0 +1002 1 -22.9713 -6.75625 6.75625 0 0 0 +1003 1 -22.9713 -9.45875 9.45875 0 0 0 +1004 1 -25.6738 -6.75625 9.45875 0 0 0 +1005 1 -20.2688 -9.45875 6.75625 0 0 0 +1006 1 -17.5663 -6.75625 6.75625 0 0 0 +1007 1 -17.5663 -9.45875 9.45875 0 0 0 +1008 1 -20.2688 -6.75625 9.45875 0 0 0 +1009 1 -14.8638 -9.45875 6.75625 0 0 0 +1010 1 -12.1613 -6.75625 6.75625 0 0 0 +1011 1 -12.1613 -9.45875 9.45875 0 0 0 +1012 1 -14.8638 -6.75625 9.45875 0 0 0 +1013 1 -9.45875 -9.45875 6.75625 0 0 0 +1014 1 -6.75625 -6.75625 6.75625 0 0 0 +1015 1 -6.75625 -9.45875 9.45875 0 0 0 +1016 1 -9.45875 -6.75625 9.45875 0 0 0 +1017 1 -4.05375 -9.45875 6.75625 0 0 0 +1018 1 -1.35125 -6.75625 6.75625 0 0 0 +1019 1 -1.35125 -9.45875 9.45875 0 0 0 +1020 1 -4.05375 -6.75625 9.45875 0 0 0 +1021 1 1.35125 -9.45875 6.75625 0 0 0 +1022 1 4.05375 -6.75625 6.75625 0 0 0 +1023 1 4.05375 -9.45875 9.45875 0 0 0 +1024 1 1.35125 -6.75625 9.45875 0 0 0 +1025 1 6.75625 -9.45875 6.75625 0 0 0 +1026 1 9.45875 -6.75625 6.75625 0 0 0 +1027 1 9.45875 -9.45875 9.45875 0 0 0 +1028 1 6.75625 -6.75625 9.45875 0 0 0 +1029 1 12.1613 -9.45875 6.75625 0 0 0 +1030 1 14.8638 -6.75625 6.75625 0 0 0 +1031 1 14.8638 -9.45875 9.45875 0 0 0 +1032 1 12.1613 -6.75625 9.45875 0 0 0 +1033 1 17.5663 -9.45875 6.75625 0 0 0 +1034 1 20.2688 -6.75625 6.75625 0 0 0 +1035 1 20.2688 -9.45875 9.45875 0 0 0 +1036 1 17.5663 -6.75625 9.45875 0 0 0 +1037 1 22.9713 -9.45875 6.75625 0 0 0 +1038 1 25.6738 -6.75625 6.75625 0 0 0 +1039 1 25.6738 -9.45875 9.45875 0 0 0 +1040 1 22.9713 -6.75625 9.45875 0 0 0 +1041 1 -25.6738 -4.05375 6.75625 0 0 0 +1042 1 -22.9713 -1.35125 6.75625 0 0 0 +1043 1 -22.9713 -4.05375 9.45875 0 0 0 +1044 1 -25.6738 -1.35125 9.45875 0 0 0 +1045 1 -20.2688 -4.05375 6.75625 0 0 0 +1046 1 -17.5663 -1.35125 6.75625 0 0 0 +1047 1 -17.5663 -4.05375 9.45875 0 0 0 +1048 1 -20.2688 -1.35125 9.45875 0 0 0 +1049 1 -14.8638 -4.05375 6.75625 0 0 0 +1050 1 -12.1613 -1.35125 6.75625 0 0 0 +1051 1 -12.1613 -4.05375 9.45875 0 0 0 +1052 1 -14.8638 -1.35125 9.45875 0 0 0 +1053 1 -9.45875 -4.05375 6.75625 0 0 0 +1054 1 -6.75625 -1.35125 6.75625 0 0 0 +1055 1 -6.75625 -4.05375 9.45875 0 0 0 +1056 1 -9.45875 -1.35125 9.45875 0 0 0 +1057 1 -4.05375 -4.05375 6.75625 0 0 0 +1058 1 -1.35125 -1.35125 6.75625 0 0 0 +1059 1 -1.35125 -4.05375 9.45875 0 0 0 +1060 1 -4.05375 -1.35125 9.45875 0 0 0 +1061 1 1.35125 -4.05375 6.75625 0 0 0 +1062 1 4.05375 -1.35125 6.75625 0 0 0 +1063 1 4.05375 -4.05375 9.45875 0 0 0 +1064 1 1.35125 -1.35125 9.45875 0 0 0 +1065 1 6.75625 -4.05375 6.75625 0 0 0 +1066 1 9.45875 -1.35125 6.75625 0 0 0 +1067 1 9.45875 -4.05375 9.45875 0 0 0 +1068 1 6.75625 -1.35125 9.45875 0 0 0 +1069 1 12.1613 -4.05375 6.75625 0 0 0 +1070 1 14.8638 -1.35125 6.75625 0 0 0 +1071 1 14.8638 -4.05375 9.45875 0 0 0 +1072 1 12.1613 -1.35125 9.45875 0 0 0 +1073 1 17.5663 -4.05375 6.75625 0 0 0 +1074 1 20.2688 -1.35125 6.75625 0 0 0 +1075 1 20.2688 -4.05375 9.45875 0 0 0 +1076 1 17.5663 -1.35125 9.45875 0 0 0 +1077 1 22.9713 -4.05375 6.75625 0 0 0 +1078 1 25.6738 -1.35125 6.75625 0 0 0 +1079 1 25.6738 -4.05375 9.45875 0 0 0 +1080 1 22.9713 -1.35125 9.45875 0 0 0 +1081 1 -25.6738 1.35125 6.75625 0 0 0 +1082 1 -22.9713 4.05375 6.75625 0 0 0 +1083 1 -22.9713 1.35125 9.45875 0 0 0 +1084 1 -25.6738 4.05375 9.45875 0 0 0 +1085 1 -20.2688 1.35125 6.75625 0 0 0 +1086 1 -17.5663 4.05375 6.75625 0 0 0 +1087 1 -17.5663 1.35125 9.45875 0 0 0 +1088 1 -20.2688 4.05375 9.45875 0 0 0 +1089 1 -14.8638 1.35125 6.75625 0 0 0 +1090 1 -12.1613 4.05375 6.75625 0 0 0 +1091 1 -12.1613 1.35125 9.45875 0 0 0 +1092 1 -14.8638 4.05375 9.45875 0 0 0 +1093 1 -9.45875 1.35125 6.75625 0 0 0 +1094 1 -6.75625 4.05375 6.75625 0 0 0 +1095 1 -6.75625 1.35125 9.45875 0 0 0 +1096 1 -9.45875 4.05375 9.45875 0 0 0 +1097 1 -4.05375 1.35125 6.75625 0 0 0 +1098 1 -1.35125 4.05375 6.75625 0 0 0 +1099 1 -1.35125 1.35125 9.45875 0 0 0 +1100 1 -4.05375 4.05375 9.45875 0 0 0 +1101 1 1.35125 1.35125 6.75625 0 0 0 +1102 1 4.05375 4.05375 6.75625 0 0 0 +1103 1 4.05375 1.35125 9.45875 0 0 0 +1104 1 1.35125 4.05375 9.45875 0 0 0 +1105 1 6.75625 1.35125 6.75625 0 0 0 +1106 1 9.45875 4.05375 6.75625 0 0 0 +1107 1 9.45875 1.35125 9.45875 0 0 0 +1108 1 6.75625 4.05375 9.45875 0 0 0 +1109 1 12.1613 1.35125 6.75625 0 0 0 +1110 1 14.8638 4.05375 6.75625 0 0 0 +1111 1 14.8638 1.35125 9.45875 0 0 0 +1112 1 12.1613 4.05375 9.45875 0 0 0 +1113 1 17.5663 1.35125 6.75625 0 0 0 +1114 1 20.2688 4.05375 6.75625 0 0 0 +1115 1 20.2688 1.35125 9.45875 0 0 0 +1116 1 17.5663 4.05375 9.45875 0 0 0 +1117 1 22.9713 1.35125 6.75625 0 0 0 +1118 1 25.6738 4.05375 6.75625 0 0 0 +1119 1 25.6738 1.35125 9.45875 0 0 0 +1120 1 22.9713 4.05375 9.45875 0 0 0 +1121 1 -25.6738 6.75625 6.75625 0 0 0 +1122 1 -22.9713 9.45875 6.75625 0 0 0 +1123 1 -22.9713 6.75625 9.45875 0 0 0 +1124 1 -25.6738 9.45875 9.45875 0 0 0 +1125 1 -20.2688 6.75625 6.75625 0 0 0 +1126 1 -17.5663 9.45875 6.75625 0 0 0 +1127 1 -17.5663 6.75625 9.45875 0 0 0 +1128 1 -20.2688 9.45875 9.45875 0 0 0 +1129 1 -14.8638 6.75625 6.75625 0 0 0 +1130 1 -12.1613 9.45875 6.75625 0 0 0 +1131 1 -12.1613 6.75625 9.45875 0 0 0 +1132 1 -14.8638 9.45875 9.45875 0 0 0 +1133 1 -9.45875 6.75625 6.75625 0 0 0 +1134 1 -6.75625 9.45875 6.75625 0 0 0 +1135 1 -6.75625 6.75625 9.45875 0 0 0 +1136 1 -9.45875 9.45875 9.45875 0 0 0 +1137 1 -4.05375 6.75625 6.75625 0 0 0 +1138 1 -1.35125 9.45875 6.75625 0 0 0 +1139 1 -1.35125 6.75625 9.45875 0 0 0 +1140 1 -4.05375 9.45875 9.45875 0 0 0 +1141 1 1.35125 6.75625 6.75625 0 0 0 +1142 1 4.05375 9.45875 6.75625 0 0 0 +1143 1 4.05375 6.75625 9.45875 0 0 0 +1144 1 1.35125 9.45875 9.45875 0 0 0 +1145 1 6.75625 6.75625 6.75625 0 0 0 +1146 1 9.45875 9.45875 6.75625 0 0 0 +1147 1 9.45875 6.75625 9.45875 0 0 0 +1148 1 6.75625 9.45875 9.45875 0 0 0 +1149 1 12.1613 6.75625 6.75625 0 0 0 +1150 1 14.8638 9.45875 6.75625 0 0 0 +1151 1 14.8638 6.75625 9.45875 0 0 0 +1152 1 12.1613 9.45875 9.45875 0 0 0 +1153 1 17.5663 6.75625 6.75625 0 0 0 +1154 1 20.2688 9.45875 6.75625 0 0 0 +1155 1 20.2688 6.75625 9.45875 0 0 0 +1156 1 17.5663 9.45875 9.45875 0 0 0 +1157 1 22.9713 6.75625 6.75625 0 0 0 +1158 1 25.6738 9.45875 6.75625 0 0 0 +1159 1 25.6738 6.75625 9.45875 0 0 0 +1160 1 22.9713 9.45875 9.45875 0 0 0 +1161 1 -25.6738 12.1613 6.75625 0 0 0 +1162 1 -22.9713 14.8638 6.75625 0 0 0 +1163 1 -22.9713 12.1613 9.45875 0 0 0 +1164 1 -25.6738 14.8638 9.45875 0 0 0 +1165 1 -20.2688 12.1613 6.75625 0 0 0 +1166 1 -17.5663 14.8638 6.75625 0 0 0 +1167 1 -17.5663 12.1613 9.45875 0 0 0 +1168 1 -20.2688 14.8638 9.45875 0 0 0 +1169 1 -14.8638 12.1613 6.75625 0 0 0 +1170 1 -12.1613 14.8638 6.75625 0 0 0 +1171 1 -12.1613 12.1613 9.45875 0 0 0 +1172 1 -14.8638 14.8638 9.45875 0 0 0 +1173 1 -9.45875 12.1613 6.75625 0 0 0 +1174 1 -6.75625 14.8638 6.75625 0 0 0 +1175 1 -6.75625 12.1613 9.45875 0 0 0 +1176 1 -9.45875 14.8638 9.45875 0 0 0 +1177 1 -4.05375 12.1613 6.75625 0 0 0 +1178 1 -1.35125 14.8638 6.75625 0 0 0 +1179 1 -1.35125 12.1613 9.45875 0 0 0 +1180 1 -4.05375 14.8638 9.45875 0 0 0 +1181 1 1.35125 12.1613 6.75625 0 0 0 +1182 1 4.05375 14.8638 6.75625 0 0 0 +1183 1 4.05375 12.1613 9.45875 0 0 0 +1184 1 1.35125 14.8638 9.45875 0 0 0 +1185 1 6.75625 12.1613 6.75625 0 0 0 +1186 1 9.45875 14.8638 6.75625 0 0 0 +1187 1 9.45875 12.1613 9.45875 0 0 0 +1188 1 6.75625 14.8638 9.45875 0 0 0 +1189 1 12.1613 12.1613 6.75625 0 0 0 +1190 1 14.8638 14.8638 6.75625 0 0 0 +1191 1 14.8638 12.1613 9.45875 0 0 0 +1192 1 12.1613 14.8638 9.45875 0 0 0 +1193 1 17.5663 12.1613 6.75625 0 0 0 +1194 1 20.2688 14.8638 6.75625 0 0 0 +1195 1 20.2688 12.1613 9.45875 0 0 0 +1196 1 17.5663 14.8638 9.45875 0 0 0 +1197 1 22.9713 12.1613 6.75625 0 0 0 +1198 1 25.6738 14.8638 6.75625 0 0 0 +1199 1 25.6738 12.1613 9.45875 0 0 0 +1200 1 22.9713 14.8638 9.45875 0 0 0 +1201 1 -25.6738 -14.8638 12.1613 0 0 0 +1202 1 -22.9713 -12.1613 12.1613 0 0 0 +1203 1 -22.9713 -14.8638 14.8638 0 0 0 +1204 1 -25.6738 -12.1613 14.8638 0 0 0 +1205 1 -20.2688 -14.8638 12.1613 0 0 0 +1206 1 -17.5663 -12.1613 12.1613 0 0 0 +1207 1 -17.5663 -14.8638 14.8638 0 0 0 +1208 1 -20.2688 -12.1613 14.8638 0 0 0 +1209 1 -14.8638 -14.8638 12.1613 0 0 0 +1210 1 -12.1613 -12.1613 12.1613 0 0 0 +1211 1 -12.1613 -14.8638 14.8638 0 0 0 +1212 1 -14.8638 -12.1613 14.8638 0 0 0 +1213 1 -9.45875 -14.8638 12.1613 0 0 0 +1214 1 -6.75625 -12.1613 12.1613 0 0 0 +1215 1 -6.75625 -14.8638 14.8638 0 0 0 +1216 1 -9.45875 -12.1613 14.8638 0 0 0 +1217 1 -4.05375 -14.8638 12.1613 0 0 0 +1218 1 -1.35125 -12.1613 12.1613 0 0 0 +1219 1 -1.35125 -14.8638 14.8638 0 0 0 +1220 1 -4.05375 -12.1613 14.8638 0 0 0 +1221 1 1.35125 -14.8638 12.1613 0 0 0 +1222 1 4.05375 -12.1613 12.1613 0 0 0 +1223 1 4.05375 -14.8638 14.8638 0 0 0 +1224 1 1.35125 -12.1613 14.8638 0 0 0 +1225 1 6.75625 -14.8638 12.1613 0 0 0 +1226 1 9.45875 -12.1613 12.1613 0 0 0 +1227 1 9.45875 -14.8638 14.8638 0 0 0 +1228 1 6.75625 -12.1613 14.8638 0 0 0 +1229 1 12.1613 -14.8638 12.1613 0 0 0 +1230 1 14.8638 -12.1613 12.1613 0 0 0 +1231 1 14.8638 -14.8638 14.8638 0 0 0 +1232 1 12.1613 -12.1613 14.8638 0 0 0 +1233 1 17.5663 -14.8638 12.1613 0 0 0 +1234 1 20.2688 -12.1613 12.1613 0 0 0 +1235 1 20.2688 -14.8638 14.8638 0 0 0 +1236 1 17.5663 -12.1613 14.8638 0 0 0 +1237 1 22.9713 -14.8638 12.1613 0 0 0 +1238 1 25.6738 -12.1613 12.1613 0 0 0 +1239 1 25.6738 -14.8638 14.8638 0 0 0 +1240 1 22.9713 -12.1613 14.8638 0 0 0 +1241 1 -25.6738 -9.45875 12.1613 0 0 0 +1242 1 -22.9713 -6.75625 12.1613 0 0 0 +1243 1 -22.9713 -9.45875 14.8638 0 0 0 +1244 1 -25.6738 -6.75625 14.8638 0 0 0 +1245 1 -20.2688 -9.45875 12.1613 0 0 0 +1246 1 -17.5663 -6.75625 12.1613 0 0 0 +1247 1 -17.5663 -9.45875 14.8638 0 0 0 +1248 1 -20.2688 -6.75625 14.8638 0 0 0 +1249 1 -14.8638 -9.45875 12.1613 0 0 0 +1250 1 -12.1613 -6.75625 12.1613 0 0 0 +1251 1 -12.1613 -9.45875 14.8638 0 0 0 +1252 1 -14.8638 -6.75625 14.8638 0 0 0 +1253 1 -9.45875 -9.45875 12.1613 0 0 0 +1254 1 -6.75625 -6.75625 12.1613 0 0 0 +1255 1 -6.75625 -9.45875 14.8638 0 0 0 +1256 1 -9.45875 -6.75625 14.8638 0 0 0 +1257 1 -4.05375 -9.45875 12.1613 0 0 0 +1258 1 -1.35125 -6.75625 12.1613 0 0 0 +1259 1 -1.35125 -9.45875 14.8638 0 0 0 +1260 1 -4.05375 -6.75625 14.8638 0 0 0 +1261 1 1.35125 -9.45875 12.1613 0 0 0 +1262 1 4.05375 -6.75625 12.1613 0 0 0 +1263 1 4.05375 -9.45875 14.8638 0 0 0 +1264 1 1.35125 -6.75625 14.8638 0 0 0 +1265 1 6.75625 -9.45875 12.1613 0 0 0 +1266 1 9.45875 -6.75625 12.1613 0 0 0 +1267 1 9.45875 -9.45875 14.8638 0 0 0 +1268 1 6.75625 -6.75625 14.8638 0 0 0 +1269 1 12.1613 -9.45875 12.1613 0 0 0 +1270 1 14.8638 -6.75625 12.1613 0 0 0 +1271 1 14.8638 -9.45875 14.8638 0 0 0 +1272 1 12.1613 -6.75625 14.8638 0 0 0 +1273 1 17.5663 -9.45875 12.1613 0 0 0 +1274 1 20.2688 -6.75625 12.1613 0 0 0 +1275 1 20.2688 -9.45875 14.8638 0 0 0 +1276 1 17.5663 -6.75625 14.8638 0 0 0 +1277 1 22.9713 -9.45875 12.1613 0 0 0 +1278 1 25.6738 -6.75625 12.1613 0 0 0 +1279 1 25.6738 -9.45875 14.8638 0 0 0 +1280 1 22.9713 -6.75625 14.8638 0 0 0 +1281 1 -25.6738 -4.05375 12.1613 0 0 0 +1282 1 -22.9713 -1.35125 12.1613 0 0 0 +1283 1 -22.9713 -4.05375 14.8638 0 0 0 +1284 1 -25.6738 -1.35125 14.8638 0 0 0 +1285 1 -20.2688 -4.05375 12.1613 0 0 0 +1286 1 -17.5663 -1.35125 12.1613 0 0 0 +1287 1 -17.5663 -4.05375 14.8638 0 0 0 +1288 1 -20.2688 -1.35125 14.8638 0 0 0 +1289 1 -14.8638 -4.05375 12.1613 0 0 0 +1290 1 -12.1613 -1.35125 12.1613 0 0 0 +1291 1 -12.1613 -4.05375 14.8638 0 0 0 +1292 1 -14.8638 -1.35125 14.8638 0 0 0 +1293 1 -9.45875 -4.05375 12.1613 0 0 0 +1294 1 -6.75625 -1.35125 12.1613 0 0 0 +1295 1 -6.75625 -4.05375 14.8638 0 0 0 +1296 1 -9.45875 -1.35125 14.8638 0 0 0 +1297 1 -4.05375 -4.05375 12.1613 0 0 0 +1298 1 -1.35125 -1.35125 12.1613 0 0 0 +1299 1 -1.35125 -4.05375 14.8638 0 0 0 +1300 1 -4.05375 -1.35125 14.8638 0 0 0 +1301 1 1.35125 -4.05375 12.1613 0 0 0 +1302 1 4.05375 -1.35125 12.1613 0 0 0 +1303 1 4.05375 -4.05375 14.8638 0 0 0 +1304 1 1.35125 -1.35125 14.8638 0 0 0 +1305 1 6.75625 -4.05375 12.1613 0 0 0 +1306 1 9.45875 -1.35125 12.1613 0 0 0 +1307 1 9.45875 -4.05375 14.8638 0 0 0 +1308 1 6.75625 -1.35125 14.8638 0 0 0 +1309 1 12.1613 -4.05375 12.1613 0 0 0 +1310 1 14.8638 -1.35125 12.1613 0 0 0 +1311 1 14.8638 -4.05375 14.8638 0 0 0 +1312 1 12.1613 -1.35125 14.8638 0 0 0 +1313 1 17.5663 -4.05375 12.1613 0 0 0 +1314 1 20.2688 -1.35125 12.1613 0 0 0 +1315 1 20.2688 -4.05375 14.8638 0 0 0 +1316 1 17.5663 -1.35125 14.8638 0 0 0 +1317 1 22.9713 -4.05375 12.1613 0 0 0 +1318 1 25.6738 -1.35125 12.1613 0 0 0 +1319 1 25.6738 -4.05375 14.8638 0 0 0 +1320 1 22.9713 -1.35125 14.8638 0 0 0 +1321 1 -25.6738 1.35125 12.1613 0 0 0 +1322 1 -22.9713 4.05375 12.1613 0 0 0 +1323 1 -22.9713 1.35125 14.8638 0 0 0 +1324 1 -25.6738 4.05375 14.8638 0 0 0 +1325 1 -20.2688 1.35125 12.1613 0 0 0 +1326 1 -17.5663 4.05375 12.1613 0 0 0 +1327 1 -17.5663 1.35125 14.8638 0 0 0 +1328 1 -20.2688 4.05375 14.8638 0 0 0 +1329 1 -14.8638 1.35125 12.1613 0 0 0 +1330 1 -12.1613 4.05375 12.1613 0 0 0 +1331 1 -12.1613 1.35125 14.8638 0 0 0 +1332 1 -14.8638 4.05375 14.8638 0 0 0 +1333 1 -9.45875 1.35125 12.1613 0 0 0 +1334 1 -6.75625 4.05375 12.1613 0 0 0 +1335 1 -6.75625 1.35125 14.8638 0 0 0 +1336 1 -9.45875 4.05375 14.8638 0 0 0 +1337 1 -4.05375 1.35125 12.1613 0 0 0 +1338 1 -1.35125 4.05375 12.1613 0 0 0 +1339 1 -1.35125 1.35125 14.8638 0 0 0 +1340 1 -4.05375 4.05375 14.8638 0 0 0 +1341 1 1.35125 1.35125 12.1613 0 0 0 +1342 1 4.05375 4.05375 12.1613 0 0 0 +1343 1 4.05375 1.35125 14.8638 0 0 0 +1344 1 1.35125 4.05375 14.8638 0 0 0 +1345 1 6.75625 1.35125 12.1613 0 0 0 +1346 1 9.45875 4.05375 12.1613 0 0 0 +1347 1 9.45875 1.35125 14.8638 0 0 0 +1348 1 6.75625 4.05375 14.8638 0 0 0 +1349 1 12.1613 1.35125 12.1613 0 0 0 +1350 1 14.8638 4.05375 12.1613 0 0 0 +1351 1 14.8638 1.35125 14.8638 0 0 0 +1352 1 12.1613 4.05375 14.8638 0 0 0 +1353 1 17.5663 1.35125 12.1613 0 0 0 +1354 1 20.2688 4.05375 12.1613 0 0 0 +1355 1 20.2688 1.35125 14.8638 0 0 0 +1356 1 17.5663 4.05375 14.8638 0 0 0 +1357 1 22.9713 1.35125 12.1613 0 0 0 +1358 1 25.6738 4.05375 12.1613 0 0 0 +1359 1 25.6738 1.35125 14.8638 0 0 0 +1360 1 22.9713 4.05375 14.8638 0 0 0 +1361 1 -25.6738 6.75625 12.1613 0 0 0 +1362 1 -22.9713 9.45875 12.1613 0 0 0 +1363 1 -22.9713 6.75625 14.8638 0 0 0 +1364 1 -25.6738 9.45875 14.8638 0 0 0 +1365 1 -20.2688 6.75625 12.1613 0 0 0 +1366 1 -17.5663 9.45875 12.1613 0 0 0 +1367 1 -17.5663 6.75625 14.8638 0 0 0 +1368 1 -20.2688 9.45875 14.8638 0 0 0 +1369 1 -14.8638 6.75625 12.1613 0 0 0 +1370 1 -12.1613 9.45875 12.1613 0 0 0 +1371 1 -12.1613 6.75625 14.8638 0 0 0 +1372 1 -14.8638 9.45875 14.8638 0 0 0 +1373 1 -9.45875 6.75625 12.1613 0 0 0 +1374 1 -6.75625 9.45875 12.1613 0 0 0 +1375 1 -6.75625 6.75625 14.8638 0 0 0 +1376 1 -9.45875 9.45875 14.8638 0 0 0 +1377 1 -4.05375 6.75625 12.1613 0 0 0 +1378 1 -1.35125 9.45875 12.1613 0 0 0 +1379 1 -1.35125 6.75625 14.8638 0 0 0 +1380 1 -4.05375 9.45875 14.8638 0 0 0 +1381 1 1.35125 6.75625 12.1613 0 0 0 +1382 1 4.05375 9.45875 12.1613 0 0 0 +1383 1 4.05375 6.75625 14.8638 0 0 0 +1384 1 1.35125 9.45875 14.8638 0 0 0 +1385 1 6.75625 6.75625 12.1613 0 0 0 +1386 1 9.45875 9.45875 12.1613 0 0 0 +1387 1 9.45875 6.75625 14.8638 0 0 0 +1388 1 6.75625 9.45875 14.8638 0 0 0 +1389 1 12.1613 6.75625 12.1613 0 0 0 +1390 1 14.8638 9.45875 12.1613 0 0 0 +1391 1 14.8638 6.75625 14.8638 0 0 0 +1392 1 12.1613 9.45875 14.8638 0 0 0 +1393 1 17.5663 6.75625 12.1613 0 0 0 +1394 1 20.2688 9.45875 12.1613 0 0 0 +1395 1 20.2688 6.75625 14.8638 0 0 0 +1396 1 17.5663 9.45875 14.8638 0 0 0 +1397 1 22.9713 6.75625 12.1613 0 0 0 +1398 1 25.6738 9.45875 12.1613 0 0 0 +1399 1 25.6738 6.75625 14.8638 0 0 0 +1400 1 22.9713 9.45875 14.8638 0 0 0 +1401 1 -25.6738 12.1613 12.1613 0 0 0 +1402 1 -22.9713 14.8638 12.1613 0 0 0 +1403 1 -22.9713 12.1613 14.8638 0 0 0 +1404 1 -25.6738 14.8638 14.8638 0 0 0 +1405 1 -20.2688 12.1613 12.1613 0 0 0 +1406 1 -17.5663 14.8638 12.1613 0 0 0 +1407 1 -17.5663 12.1613 14.8638 0 0 0 +1408 1 -20.2688 14.8638 14.8638 0 0 0 +1409 1 -14.8638 12.1613 12.1613 0 0 0 +1410 1 -12.1613 14.8638 12.1613 0 0 0 +1411 1 -12.1613 12.1613 14.8638 0 0 0 +1412 1 -14.8638 14.8638 14.8638 0 0 0 +1413 1 -9.45875 12.1613 12.1613 0 0 0 +1414 1 -6.75625 14.8638 12.1613 0 0 0 +1415 1 -6.75625 12.1613 14.8638 0 0 0 +1416 1 -9.45875 14.8638 14.8638 0 0 0 +1417 1 -4.05375 12.1613 12.1613 0 0 0 +1418 1 -1.35125 14.8638 12.1613 0 0 0 +1419 1 -1.35125 12.1613 14.8638 0 0 0 +1420 1 -4.05375 14.8638 14.8638 0 0 0 +1421 1 1.35125 12.1613 12.1613 0 0 0 +1422 1 4.05375 14.8638 12.1613 0 0 0 +1423 1 4.05375 12.1613 14.8638 0 0 0 +1424 1 1.35125 14.8638 14.8638 0 0 0 +1425 1 6.75625 12.1613 12.1613 0 0 0 +1426 1 9.45875 14.8638 12.1613 0 0 0 +1427 1 9.45875 12.1613 14.8638 0 0 0 +1428 1 6.75625 14.8638 14.8638 0 0 0 +1429 1 12.1613 12.1613 12.1613 0 0 0 +1430 1 14.8638 14.8638 12.1613 0 0 0 +1431 1 14.8638 12.1613 14.8638 0 0 0 +1432 1 12.1613 14.8638 14.8638 0 0 0 +1433 1 17.5663 12.1613 12.1613 0 0 0 +1434 1 20.2688 14.8638 12.1613 0 0 0 +1435 1 20.2688 12.1613 14.8638 0 0 0 +1436 1 17.5663 14.8638 14.8638 0 0 0 +1437 1 22.9713 12.1613 12.1613 0 0 0 +1438 1 25.6738 14.8638 12.1613 0 0 0 +1439 1 25.6738 12.1613 14.8638 0 0 0 +1440 1 22.9713 14.8638 14.8638 0 0 0 + +Velocities + +1 0 0 0 +2 0 0 0 +3 0 0 0 +4 0 0 0 +5 0.00140531 0.00136547 -0.000774762 +6 -0.0013584 0.00112231 -0.00153087 +7 0.000667836 0.000355774 0.000398352 +8 0.000891869 0.000956849 -0.000625177 +9 -0.00158243 0.000521234 -0.000507341 +10 -0.00119575 0.000278072 -0.00126345 +11 6.05493e-05 0.000956464 -0.000806194 +12 0.00105452 0.000112612 -0.000357756 +13 -0.00117575 -0.000779011 0.000542234 +14 -0.00078907 -0.00102217 -0.000213874 +15 0.000467228 -0.000343781 0.000243382 +16 0.0014612 -0.00118763 0.000691819 +17 0.00136735 -0.000178321 -0.000662312 +18 0.0012172 -0.000334637 -0.000437109 +19 -0.000676897 0.000343755 2.01468e-05 +20 0.000853913 -0.000586943 -0.000512727 +21 -0.00137636 -0.00147857 0.000387264 +22 -0.00152652 0.00151551 0.000612466 +23 -0.000270218 -0.00095649 0.00106972 +24 0.00126059 0.0012632 0.000536849 +25 0.000629904 -0.00079103 0.000164029 +26 0.00101659 -0.00103419 -0.00059208 +27 -0.000877504 -0.0003558 -0.000134823 +28 0.000116467 -0.00119965 0.000313614 +29 0.00103658 0.00105912 0.0012136 +30 0.00142327 0.000815955 0.000457496 +31 -0.000470826 0.00149435 0.000914752 +32 0.000523146 0.000650495 0.00136319 +33 0.00119923 0.000214879 0.00148102 +34 -0.00156447 -2.82822e-05 0.000724916 +35 -0.000308174 0.000650109 0.00118217 +36 0.000685798 -0.000193742 -0.00151978 +37 0 0 0 +38 0 0 0 +39 0 0 0 +40 0 0 0 +41 0 0 0 +42 0 0 0 +43 0 0 0 +44 0 0 0 +45 0.000866629 -0.00108846 0.000933319 +46 0.0014107 0.000625543 0.00100519 +47 0.00012916 0.00105223 -0.00104396 +48 -0.000259363 -0.00124538 0.000438921 +49 0.00102928 0.00121769 0.00120074 +50 0.000803411 0.00122623 -0.000199352 +51 -0.000478127 -0.00149747 0.000901887 +52 -9.6711e-05 0.00106077 0.000706341 +53 0.00143596 -8.25506e-05 -0.000900076 +54 0.00121009 -7.40114e-05 0.000850223 +55 -7.1448e-05 0.000352679 -0.00119893 +56 0.000309968 -0.000239472 -0.00139448 +57 0.000828674 0.00051814 0.00104577 +58 6.59648e-05 0.000613524 0.000626988 +59 -0.00121557 0.00104022 -0.00142216 +60 -0.000297319 0.000361219 0.000551371 +61 0.00123535 -0.000782105 -0.00105505 +62 0.000472644 -0.000686721 -0.00147383 +63 -0.000808894 -0.00026003 -0.000372588 +64 0.00010936 -0.000939026 -0.00154945 +65 9.12278e-05 -9.45696e-05 -0.00127828 +66 -0.000134643 -8.60304e-05 0.000472018 +67 -0.000646242 -0.00110427 -0.000105168 +68 -0.00103476 -0.000251491 0.00137771 +69 0.000497906 -0.00139481 -0.000228706 +70 0.000272036 -0.00138628 0.00152159 +71 -0.000239563 0.000745879 0.000944408 +72 -0.000628086 -0.00155174 -0.000723105 +73 0.000660559 0.00091134 3.87143e-05 +74 0.000434688 0.000919879 -0.00136138 +75 -0.00084685 0.00134657 -0.000260138 +76 -0.000465434 0.000754419 -0.000455685 +77 0 0 0 +78 0 0 0 +79 0 0 0 +80 0 0 0 +81 0 0 0 +82 0 0 0 +83 0 0 0 +84 0 0 0 +85 0.00102217 0.00147832 -0.000662319 +86 0.000872021 0.001322 -0.000437117 +87 -0.000485234 -0.00123684 -0.000961172 +88 -0.000798039 -0.00054892 -0.00100339 +89 0.00118483 0.000634082 -0.000394899 +90 0.000264735 -0.0012277 0.00150873 +91 -0.000322582 0.00106931 -0.000693751 +92 -0.000635387 -0.00139316 -0.000735969 +93 -0.00155889 -0.000666162 0.000654676 +94 0.000671413 0.000622449 -0.000592087 +95 8.40968e-05 -0.000230932 0.000355824 +96 -0.000228708 0.000456989 0.000313606 +97 0.000984218 -6.54722e-05 -0.000549869 +98 -0.000472711 0.00130998 -0.000815322 +99 -0.00106003 0.000456603 0.000132589 +100 -0.000835995 0.00105768 -0.00089094 +101 0.0013909 -0.00136572 0.000499706 +102 -6.60325e-05 9.73993e-06 0.000234253 +103 -0.000653349 -0.000843642 0.00118216 +104 -0.000429316 -0.000242566 0.000158636 +105 0.000246773 -0.000678181 0.000276471 +106 -0.000673319 0.00061043 -0.000970293 +107 -0.00126064 -0.000242951 -2.23812e-05 +108 -0.00157344 0.00044497 -6.45992e-05 +109 0.000653451 0.00117197 0.00132605 +110 0.000503298 0.00101565 0.00155125 +111 -0.000853957 -0.0015432 0.00102719 +112 -0.00116676 -0.000855275 0.000984976 +113 0.000816103 0.000327728 -0.00155692 +114 -0.000103988 -0.00153405 0.000346703 +115 -0.000691305 0.000762958 0.00129461 +116 -0.00100411 0.00145088 0.0012524 +117 0 0 0 +118 0 0 0 +119 0 0 0 +120 0 0 0 +121 0 0 0 +122 0 0 0 +123 0 0 0 +124 0 0 0 +125 0.000483498 -0.000975611 0.00104576 +126 0.000257627 -0.000967072 -0.000354331 +127 -0.00102391 -0.000540381 0.000746909 +128 -0.000642494 -0.00113253 0.000551363 +129 0.00064615 0.00133054 0.00131318 +130 0.000420279 0.00133908 -8.69102e-05 +131 -0.000861258 -0.00138462 0.00101433 +132 -0.00124978 -0.000531842 -0.000653183 +133 0.00105283 3.02981e-05 -0.000787634 +134 0.000826958 3.88373e-05 0.000962665 +135 -0.000454579 0.000465528 -0.00108649 +136 -7.31635e-05 -0.000126623 -0.00128203 +137 0.000445542 0.000630988 0.00115821 +138 -0.000317166 0.000726373 0.00073943 +139 -0.0015987 0.00115306 -0.00130972 +140 -0.00068045 0.000474067 0.000663813 +141 0.000852221 -0.000669257 -0.000942604 +142 8.95123e-05 -0.000573872 -0.00136139 +143 -0.00119203 -0.000147181 -0.000260146 +144 -0.000273772 -0.000826178 -0.001437 +145 -0.000291903 1.82791e-05 -0.00116584 +146 -0.000517774 2.68183e-05 0.00058446 +147 0.00135108 0.000453509 -0.00146469 +148 -0.0014179 -0.000138642 0.00149015 +149 0.000114775 -0.00128197 -0.000116264 +150 -0.000111096 -0.00127343 -0.00151636 +151 -0.00139263 -0.000846736 -0.000415116 +152 -0.00101122 -0.00143889 -0.000610663 +153 0.000277427 0.00102419 0.000151157 +154 5.15565e-05 0.00103273 -0.00124894 +155 -0.00122998 0.00145942 -0.000147696 +156 0.00153189 -0.000838197 0.00133518 +157 0 0 0 +158 0 0 0 +159 0 0 0 +160 0 0 0 +161 0 0 0 +162 0 0 0 +163 0 0 0 +164 0 0 0 +165 -5.51779e-05 -0.000279151 -0.000396549 +166 -0.000281049 -0.000270611 0.00135375 +167 -0.00156259 0.000156079 -0.000695401 +168 -0.00118117 -0.000436072 -0.000890947 +169 0.000107474 -0.00112339 -0.000129128 +170 -0.000118397 -0.00111485 -0.00152922 +171 -0.00139993 -0.000688158 -0.000427981 +172 -0.00101852 -0.00128031 -0.000623527 +173 0.000514153 0.000726759 0.000920447 +174 0.000288282 0.000735298 -0.000479645 +175 -0.000993255 0.00116199 0.000621595 +176 -0.00061184 0.000569838 0.000426048 +177 -9.31337e-05 0.00132745 -0.000284099 +178 -0.000855842 0.00142283 -0.00070288 +179 0.00101301 -0.00130087 0.00039836 +180 -0.00121913 0.00117053 -0.000778497 +181 0.000313545 2.72039e-05 0.000765477 +182 -0.000449164 0.000122589 0.000346695 +183 0.00141969 0.000549279 0.00144794 +184 -0.000812448 -0.000129717 0.000271078 +185 -0.000830579 0.00071474 0.000542242 +186 -0.00105645 0.000723279 -0.00085785 +187 0.000812403 0.00114997 0.00024339 +188 0.00119382 0.000557819 4.7843e-05 +189 -0.000423901 -0.000585505 -0.00155857 +190 -0.000649772 -0.000576966 0.000191725 +191 0.00121908 -0.000150275 0.00129296 +192 -0.00154989 -0.000742426 0.00109742 +193 -0.000261249 -0.00142974 -0.00129115 +194 -0.00048712 -0.0014212 0.000459145 +195 0.00138173 -0.000994512 0.00156039 +196 0.000993211 -0.000141736 -0.000107127 +197 0 0 0 +198 0 0 0 +199 0 0 0 +200 0 0 0 +201 0 0 0 +202 0 0 0 +203 0 0 0 +204 0 0 0 +205 -0.00120641 0.00066901 0.000667549 +206 -0.000819725 0.000425849 -8.85598e-05 +207 0.00120651 -0.000340687 -0.00130973 +208 0.00143054 0.000260389 0.000817134 +209 -0.00104376 -0.000175227 0.000934969 +210 -0.000657073 -0.000418388 0.000178861 +211 0.000599225 0.000260003 0.000636117 +212 -0.00155719 -0.000583848 0.00108455 +213 -0.000637079 -0.00147547 -0.00116585 +214 -0.000250394 0.00143176 0.00122844 +215 0.0010059 -0.00104024 -0.0014647 +216 -0.00115052 0.0012663 -0.00101626 +217 -0.00124437 -0.000874781 0.000779999 +218 -0.00139452 -0.0010311 0.0010052 +219 -0.00013822 -0.000352706 0.00146246 +220 0.00139259 -0.0012834 0.000929584 +221 -0.000837687 0.000975365 -0.00132082 +222 -0.00098784 0.000819049 -0.00109561 +223 0.000268458 0.00149744 -0.000638359 +224 -0.00135112 0.000566743 -0.00117123 +225 0.00116858 -0.00148749 -0.00154405 +226 -0.00159513 0.00141974 0.000850231 +227 -0.000338828 -0.00105226 0.00130749 +228 0.000655143 0.00125428 -0.00139447 +229 -0.00157513 0.000362656 -0.000494477 +230 -0.00118845 0.000119494 -0.00125059 +231 6.78502e-05 0.000797886 -0.000793329 +232 0.00106182 -4.59657e-05 -0.000344892 +233 -0.00141248 -0.000481581 -0.000227057 +234 -0.0010258 -0.000724743 -0.000983165 +235 0.000230502 -4.63514e-05 -0.000525909 +236 0.00122447 -0.000890203 -7.74715e-05 +237 0 0 0 +238 0 0 0 +239 0 0 0 +240 0 0 0 +241 0 0 0 +242 0 0 0 +243 0 0 0 +244 0 0 0 +245 -0.00100222 -0.00151515 -0.000167921 +246 -0.00061554 0.00139208 -0.000924029 +247 0.0014107 0.000625543 0.00100519 +248 -0.00151566 0.00122662 -1.83355e-05 +249 -0.000839572 0.000791003 9.94998e-05 +250 -0.000452887 0.000547842 -0.000656609 +251 0.000803411 0.00122623 -0.000199352 +252 -0.00135301 0.000382382 0.000249085 +253 -0.000432894 -0.000509241 0.00114908 +254 -4.62087e-05 -0.000752403 0.000392967 +255 0.00121009 -7.40114e-05 0.000850223 +256 -0.00094633 -0.000917863 0.00129866 +257 -0.00104018 9.14488e-05 -5.54705e-05 +258 -0.00119033 -6.48671e-05 0.000169732 +259 6.59648e-05 0.000613524 0.000626988 +260 -0.00155362 -0.000317173 9.41145e-05 +261 -0.000633502 -0.0012088 0.000994105 +262 -0.000783654 -0.00136511 0.00121931 +263 0.000472644 -0.000686721 -0.00147383 +264 -0.00114694 0.00153297 0.00114369 +265 0.00137277 -0.00052126 0.00077087 +266 -0.00139094 -0.000764422 1.47616e-05 +267 -0.000134643 -8.60304e-05 0.000472018 +268 0.000859328 -0.000929882 0.000920455 +269 -0.00137095 0.00132889 -0.00132995 +270 -0.000984262 0.00108572 0.00106434 +271 0.000272036 -0.00138628 0.00152159 +272 0.00126601 0.000920264 -0.00118036 +273 -0.0012083 0.000484649 -0.00106253 +274 -0.00082161 0.000241487 0.00133176 +275 0.000434688 0.000919879 -0.00136138 +276 0.00142866 7.60273e-05 -0.000912941 +277 0 0 0 +278 0 0 0 +279 0 0 0 +280 0 0 0 +281 0 0 0 +282 0 0 0 +283 0 0 0 +284 0 0 0 +285 -0.0015409 -0.00081869 0.00154016 +286 0.00138362 -0.000810151 0.000140068 +287 0.000872021 0.001322 -0.000437117 +288 0.000483498 -0.000975611 0.00104576 +289 -0.00137825 0.00148746 -0.00134281 +290 0.00154627 0.001496 0.000407489 +291 0.000264735 -0.0012277 0.00150873 +292 0.00064615 0.00133054 0.00131318 +293 -0.00097157 0.000187219 -0.000293235 +294 -0.00119744 0.000195758 0.00145706 +295 0.000671413 0.000622449 -0.000592087 +296 0.00105283 3.02981e-05 -0.000787634 +297 -0.00157886 0.000787909 -0.00149778 +298 0.000808826 0.000883294 0.00123383 +299 -0.000472711 0.00130998 -0.000815322 +300 0.000445542 0.000630988 0.00115821 +301 -0.00117218 -0.000512336 -0.000448205 +302 0.0012155 -0.000416951 -0.000866987 +303 -6.60325e-05 9.73993e-06 0.000234253 +304 0.000852221 -0.000669257 -0.000942604 +305 0.000834089 0.0001752 -0.00067144 +306 0.000608218 0.000183739 0.00107886 +307 -0.000673319 0.00061043 -0.000970293 +308 -0.000291903 1.82791e-05 -0.00116584 +309 0.00124077 -0.00112504 0.000378135 +310 0.0010149 -0.00111651 -0.00102196 +311 0.000503298 0.00101565 0.00155125 +312 0.000114775 -0.00128197 -0.000116264 +313 0.00140342 0.00118111 0.000645555 +314 0.00117755 0.00118965 -0.000754537 +315 -0.000103988 -0.00153405 0.000346703 +316 0.000277427 0.00102419 0.000151157 +317 0 0 0 +318 0 0 0 +319 0 0 0 +320 0 0 0 +321 0 0 0 +322 0 0 0 +323 0 0 0 +324 0 0 0 +325 -0.00138536 -0.0014023 -5.54783e-05 +326 -0.00153551 -0.00155862 0.000169724 +327 0.000257627 -0.000967072 -0.000354331 +328 -5.51779e-05 -0.000279151 -0.000396549 +329 -0.0012227 0.000903852 0.000211942 +330 0.0010076 -0.000957928 -0.00103482 +331 0.000420279 0.00133908 -8.69102e-05 +332 0.000107474 -0.00112339 -0.000129128 +333 -0.000816025 -0.000396393 0.00126152 +334 0.00141427 0.000892219 1.47537e-05 +335 0.000826958 3.88373e-05 0.000962665 +336 0.000514153 0.000726759 0.000920447 +337 -0.00142331 0.000204297 5.69718e-05 +338 0.00027015 0.00157975 -0.000208481 +339 -0.000317166 0.000726373 0.00073943 +340 -9.31337e-05 0.00132745 -0.000284099 +341 -0.00101663 -0.00109595 0.00110655 +342 0.000676829 0.00027951 0.000841094 +343 8.95123e-05 -0.000573872 -0.00136139 +344 0.000313545 2.72039e-05 0.000765477 +345 0.000989634 -0.000408412 0.000883312 +346 6.95421e-05 0.0008802 -0.000363452 +347 -0.000517774 2.68183e-05 0.00058446 +348 -0.000830579 0.00071474 0.000542242 +349 0.00139631 0.00144173 -0.0012175 +350 0.000476221 -0.000420045 0.000686124 +351 -0.000111096 -0.00127343 -0.00151636 +352 -0.000423901 -0.000585505 -0.00155857 +353 0.000789026 -0.00110797 0.000728342 +354 0.000638873 -0.00126428 0.000953544 +355 5.15565e-05 0.00103273 -0.00124894 +356 -0.000261249 -0.00142974 -0.00129115 +357 0 0 0 +358 0 0 0 +359 0 0 0 +360 0 0 0 +361 0 0 0 +362 0 0 0 +363 0 0 0 +364 0 0 0 +365 0.00122636 -0.000705841 -0.00149779 +366 0.00100049 -0.000697302 0.00025251 +367 -0.000281049 -0.000270611 0.00135375 +368 0.000100367 -0.000862762 0.0011582 +369 0.00138901 -0.00155008 -0.00123037 +370 0.00116314 -0.00154154 0.000519931 +371 -0.000118397 -0.00111485 -0.00152922 +372 -0.00050692 -0.000262072 -4.63418e-05 +373 -0.0013547 0.000300068 -0.000180793 +374 -0.00158057 0.000308607 -0.00158089 +375 0.000288282 0.000735298 -0.000479645 +376 -0.000100241 -0.00156232 0.00100323 +377 0.0011884 0.000900758 -0.00138534 +378 0.000425695 0.000996143 0.00134627 +379 -0.000855842 0.00142283 -0.00070288 +380 6.24111e-05 0.000743837 0.00127065 +381 -0.00155531 -0.000399487 -0.000335763 +382 0.000832374 -0.000304102 -0.000754545 +383 -0.000449164 0.000122589 0.000346695 +384 0.00046909 -0.000556408 -0.000830162 +385 0.000450958 0.000288049 -0.000558998 +386 0.000225087 0.000296588 0.0011913 +387 -0.00105645 0.000723279 -0.00085785 +388 -0.000675035 0.000131128 -0.0010534 +389 0.000857637 -0.0010122 0.000490577 +390 0.000631766 -0.00100366 -0.000909515 +391 -0.000649772 -0.000576966 0.000191725 +392 -0.000268356 -0.00116912 -3.82157e-06 +393 0.00102029 0.00129396 0.000757998 +394 0.000794418 0.0013025 -0.000642095 +395 -0.00048712 -0.0014212 0.000459145 +396 -0.000875643 -0.000568427 -0.00120837 +397 0 0 0 +398 0 0 0 +399 0 0 0 +400 0 0 0 +401 0 0 0 +402 0 0 0 +403 0 0 0 +404 0 0 0 +405 0.000687683 -9.3809e-06 0.000210292 +406 0.000461812 -8.41725e-07 -0.0011898 +407 -0.000819725 0.000425849 -8.85598e-05 +408 -0.000438309 -0.000166302 -0.000284106 +409 0.000850336 -0.000853618 0.000477713 +410 0.000624465 -0.000845079 -0.000922379 +411 -0.000657073 -0.000418388 0.000178861 +412 -0.000275657 -0.00101054 -1.6686e-05 +413 0.00125701 0.000996528 0.00152729 +414 0.00103114 0.00100507 0.000127196 +415 -0.000250394 0.00143176 0.00122844 +416 0.000131022 0.000839607 0.00103289 +417 0.000649728 -0.00155317 0.000322743 +418 -0.000112981 -0.00145779 -9.6039e-05 +419 -0.00139452 -0.0010311 0.0010052 +420 -0.000476265 0.0014403 -0.000171656 +421 0.00105641 0.000296974 0.00137232 +422 0.000293698 0.000392358 0.000953536 +423 -0.00098784 0.000819049 -0.00109561 +424 -6.95862e-05 0.000140053 0.000877919 +425 -8.77182e-05 0.000984509 0.00114908 +426 -0.000313589 0.000993049 -0.000251009 +427 -0.00159513 0.00141974 0.000850231 +428 -0.00121371 0.000827588 0.000654684 +429 0.000318961 -0.000315735 -0.000951733 +430 9.30896e-05 -0.000307196 0.000798566 +431 -0.00118845 0.000119494 -0.00125059 +432 -0.000807032 -0.000472657 -0.00144613 +433 0.000481613 -0.00115997 -0.000684313 +434 0.000255742 -0.00115143 0.00106599 +435 -0.0010258 -0.000724743 -0.000983165 +436 -0.00141432 0.000128034 0.000499714 +437 0 0 0 +438 0 0 0 +439 0 0 0 +440 0 0 0 +441 0 0 0 +442 0 0 0 +443 0 0 0 +444 0 0 0 +445 -0.000463548 0.00093878 0.00127439 +446 -7.68635e-05 0.000695619 0.000518281 +447 0.00117943 0.00137401 0.000975537 +448 -0.000976985 0.000530159 0.00142397 +449 -0.000300896 9.4543e-05 0.00154181 +450 8.57887e-05 -0.000148618 0.000785702 +451 0.00134209 0.000529773 0.00124296 +452 -0.000814333 -0.000314079 -0.001459 +453 0.000105782 -0.0012057 -0.000559006 +454 0.000492467 -0.00144886 -0.00131511 +455 -0.00140163 -0.000770472 -0.000857858 +456 -0.000407654 0.00153607 -0.000409421 +457 -0.000501504 -0.000605012 0.00138684 +458 -0.000651657 -0.000761328 -0.00153835 +459 0.000604641 -8.29362e-05 -0.00108109 +460 -0.00101494 -0.00101363 0.00153642 +461 -9.48256e-05 0.00124513 -0.000713976 +462 -0.000244978 0.00108882 -0.000488774 +463 0.00101132 -0.00138318 -3.15178e-05 +464 -0.000608262 0.000836513 -0.000564391 +465 -0.00123895 -0.00121772 -0.000937211 +466 -0.000852265 -0.00146088 0.00145707 +467 0.000404033 -0.000782491 -0.00123606 +468 0.001398 0.00152405 -0.000787626 +469 -0.000832271 0.000632426 0.000112364 +470 -0.000445586 0.000389264 -0.000643744 +471 0.000810712 0.00106766 -0.000186488 +472 -0.00134571 0.000223804 0.000261949 +473 -0.000669619 -0.000211812 0.000379785 +474 -0.000282934 -0.000454973 -0.000376324 +475 0.000973364 0.000223418 8.09323e-05 +476 0.0011974 0.000824494 -0.000942596 +477 0 0 0 +478 0 0 0 +479 0 0 0 +480 0 0 0 +481 0 0 0 +482 0 0 0 +483 0 0 0 +484 0 0 0 +485 0.000432025 0.000279987 -0.000581823 +486 0.00081871 3.68259e-05 -0.00133793 +487 0.00138362 -0.000810151 0.000140068 +488 -0.0007728 0.00149639 0.000588506 +489 -0.000175261 0.000880677 0.00136402 +490 0.000211424 0.000637516 0.000607914 +491 0.00154627 0.001496 0.000407489 +492 -0.000610148 0.000652152 0.000855926 +493 0.000231417 -0.000419567 -0.000736794 +494 0.00138804 0.00104274 -2.09359e-05 +495 -0.00119744 0.000195758 0.00145706 +496 -0.000203469 -0.000648093 -0.00124489 +497 0.00039407 -0.0012638 -0.000469373 +498 -0.000526022 2.48069e-05 0.00143425 +499 0.000808826 0.000883294 0.00123383 +500 -0.000810756 -4.74031e-05 0.000700956 +501 0.000800748 0.000586342 0.000580202 +502 -0.000119343 -0.00127544 -0.000666562 +503 0.0012155 -0.000416951 -0.000866987 +504 -0.000404077 -0.00134765 -0.00139986 +505 -0.000343376 0.00127388 0.000356967 +506 4.33088e-05 0.00103072 -0.000399141 +507 0.000608218 0.000183739 0.00107886 +508 -0.0015482 -0.000660112 0.0015273 +509 6.33025e-05 -2.63672e-05 0.00140654 +510 0.000449987 -0.000269529 0.000650434 +511 0.0010149 -0.00111651 -0.00102196 +512 -0.00114152 0.00119003 -0.00057352 +513 -0.000543984 0.000574323 0.000201997 +514 -0.000157299 0.000331162 -0.000554111 +515 0.00117755 0.00118965 -0.000754537 +516 -0.000978871 0.000345797 -0.0003061 +517 0 0 0 +518 0 0 0 +519 0 0 0 +520 0 0 0 +521 0 0 0 +522 0 0 0 +523 0 0 0 +524 0 0 0 +525 -0.000106651 0.000976448 0.00112626 +526 -0.000332522 0.000984987 -0.000273835 +527 -0.00153551 -0.00155862 0.000169724 +528 0.00122636 -0.000705841 -0.00149779 +529 -0.000713937 0.00157714 -7.8288e-05 +530 -0.000169869 0.00014075 -6.41415e-06 +531 0.0010076 -0.000957928 -0.00103482 +532 0.00138901 -0.00155008 -0.00123037 +533 -0.000307259 0.000276893 0.000971287 +534 0.000236809 -0.0011595 0.00104316 +535 0.00141427 0.000892219 1.47537e-05 +536 -0.0013547 0.000300068 -0.000180793 +537 -0.000144606 -0.000567344 0.00123871 +538 0.00147314 0.000972968 -0.00065204 +539 0.00027015 0.00157975 -0.000208481 +540 0.0011884 0.000900758 -0.00138534 +541 0.000262072 0.0012828 -0.000862108 +542 -0.00127058 -0.000327277 0.000397536 +543 0.000676829 0.00027951 0.000841094 +544 -0.00155531 -0.000399487 -0.000335763 +545 -0.000882052 -0.00118005 -0.00108534 +546 -0.00110792 -0.00117151 0.000664956 +547 6.95421e-05 0.0008802 -0.000363452 +548 0.000450958 0.000288049 -0.000558998 +549 -0.000475374 0.000670093 -3.57677e-05 +550 -0.000701244 0.000678632 -0.00143586 +551 0.000476221 -0.000420045 0.000686124 +552 0.000857637 -0.0010122 0.000490577 +553 -0.00108266 0.00127078 -0.00124031 +554 -0.00130853 0.00127932 0.000509986 +555 0.000638873 -0.00126428 0.000953544 +556 0.00102029 0.00129396 0.000757998 +557 0 0 0 +558 0 0 0 +559 0 0 0 +560 0 0 0 +561 0 0 0 +562 0 0 0 +563 0 0 0 +564 0 0 0 +565 4.88942e-05 0.000392836 -0.000469381 +566 -0.000871198 -0.00146894 0.00143425 +567 0.00100049 -0.000697302 0.00025251 +568 0.000687683 -9.3809e-06 0.000210292 +569 -0.000558392 0.000993526 0.00147646 +570 -0.000708545 0.00083721 -0.00144872 +571 0.00116314 -0.00154154 0.000519931 +572 0.000850336 -0.000853618 0.000477713 +573 -0.000151714 -0.000306719 -0.000624351 +574 -0.000301867 -0.000463035 -0.000399149 +575 -0.00158057 0.000308607 -0.00158089 +576 0.00125701 0.000996528 0.00152729 +577 1.09384e-05 -0.00115096 -0.000356931 +578 0.000934461 -0.00148096 0.00105604 +579 0.000425695 0.000996143 0.00134627 +580 0.000649728 -0.00155317 0.000322743 +581 0.000417617 0.000699191 0.000692644 +582 0.00134114 0.000369184 -0.00104477 +583 0.000832374 -0.000304102 -0.000754545 +584 0.00105641 0.000296974 0.00137232 +585 -0.000726507 0.00138673 0.000469409 +586 0.00150379 -0.000475054 -0.000777354 +587 0.000225087 0.000296588 0.0011913 +588 -8.77182e-05 0.000984509 0.00114908 +589 -0.000319829 8.64815e-05 0.00151898 +590 -0.00123992 0.00137509 0.000272221 +591 0.000631766 -0.00100366 -0.000909515 +592 0.000318961 -0.000315735 -0.000951733 +593 -0.000927115 0.000687172 0.000314439 +594 0.00130318 -0.00117461 -0.000932325 +595 0.000794418 0.0013025 -0.000642095 +596 0.000481613 -0.00115997 -0.000684313 +597 0 0 0 +598 0 0 0 +599 0 0 0 +600 0 0 0 +601 0 0 0 +602 0 0 0 +603 0 0 0 +604 0 0 0 +605 -0.000489782 0.0010893 0.0012387 +606 -0.000715653 0.00109784 -0.000161392 +607 0.000461812 -8.41725e-07 -0.0011898 +608 0.000843228 -0.000592993 -0.00138535 +609 -0.00109707 -0.0014604 3.41543e-05 +610 -0.00132294 -0.00145187 -0.00136594 +611 0.000624465 -0.000845079 -0.000922379 +612 0.000235942 7.69745e-06 0.000560499 +613 -0.00069039 0.000389742 0.00108373 +614 -0.000916261 0.000398281 -0.000316363 +615 0.00103114 0.00100507 0.000127196 +616 0.00064262 -0.00129255 -0.00154032 +617 -0.000527738 -0.000454495 0.00135115 +618 0.00109001 0.00108582 -0.000539598 +619 -0.000112981 -0.00145779 -9.6039e-05 +620 0.000805272 0.00101361 -0.0012729 +621 -0.000121059 0.00139565 -0.000749666 +622 0.00149668 -0.000214428 0.000509978 +623 0.000293698 0.000392358 0.000953536 +624 0.00121195 -0.000286638 -0.000223321 +625 -0.00126518 -0.0010672 -0.000972901 +626 -0.00149105 -0.00105867 0.000777398 +627 -0.000313589 0.000993049 -0.000251009 +628 6.78266e-05 0.000400898 -0.000446556 +629 -0.000858505 0.000782942 7.66745e-05 +630 -0.00108438 0.000791481 -0.00132342 +631 9.30896e-05 -0.000307196 0.000798566 +632 0.000474505 -0.000899347 0.00060302 +633 -0.00146579 0.00138363 -0.00112787 +634 0.00145873 0.00139217 0.000622428 +635 0.000255742 -0.00115143 0.00106599 +636 -0.000132781 -0.000298657 -0.000601526 +637 0 0 0 +638 0 0 0 +639 0 0 0 +640 0 0 0 +641 0 0 0 +642 0 0 0 +643 0 0 0 +644 0 0 0 +645 -0.00102846 -0.00136463 -0.00020361 +646 -0.00125433 -0.0013561 0.00154669 +647 -7.68635e-05 0.000695619 0.000518281 +648 0.000304552 0.000103468 0.000322735 +649 0.00151465 -0.000763944 -0.00140816 +650 0.00128878 -0.000755405 0.000342143 +651 8.57887e-05 -0.000148618 0.000785702 +652 -0.000302734 0.000704158 -0.000881811 +653 -0.00122907 0.0010862 -0.000358581 +654 -0.00145494 0.00109474 0.00139172 +655 0.000492467 -0.00144886 -0.00131511 +656 0.000103944 -0.000596087 0.000167764 +657 -0.00106641 0.000241965 -9.11602e-05 +658 0.00055133 -0.00136811 0.00116848 +659 -0.000651657 -0.000761328 -0.00153835 +660 0.000266596 -0.00144032 0.000435185 +661 -0.000659735 -0.00105828 0.000958415 +662 0.000958009 0.000482032 -0.000932332 +663 -0.000244978 0.00108882 -0.000488774 +664 0.000673275 0.000409822 0.00148476 +665 0.00134653 -0.000370744 0.00073518 +666 0.00112066 -0.000362205 -0.000664912 +667 -0.000852265 -0.00146088 0.00145707 +668 -0.000470849 0.00109736 0.00126153 +669 -0.00139718 0.0014794 -0.00136564 +670 0.00152734 0.00148794 0.000384663 +671 -0.000445586 0.000389264 -0.000643744 +672 -6.41707e-05 -0.000202887 -0.000839291 +673 0.00114592 -0.0010703 0.00058021 +674 0.000920053 -0.00106176 -0.000819882 +675 -0.000282934 -0.000454973 -0.000376324 +676 -0.000671457 0.000397803 0.00110655 +677 0 0 0 +678 0 0 0 +679 0 0 0 +680 0 0 0 +681 0 0 0 +682 0 0 0 +683 0 0 0 +684 0 0 0 +685 0.000970701 -0.000416473 0.000860487 +686 0.00135739 -0.000659635 0.000104379 +687 -0.0012281 -0.00150661 -0.00156801 +688 -0.000234124 0.000799928 -0.00111958 +689 0.000363415 0.000184217 -0.000344059 +690 0.0007501 -5.89444e-05 -0.00110017 +691 -0.00106544 0.000799543 -0.00130059 +692 -7.14716e-05 -4.43089e-05 -0.000852155 +693 0.000770093 -0.00111603 0.000705517 +694 0.00115678 -0.00135919 -5.05917e-05 +695 -0.000658765 -0.000500702 -0.000251017 +696 0.000335207 -0.00134455 0.00019742 +697 0.000932746 0.00119013 0.000972937 +698 1.26539e-05 -0.000671654 -0.000273827 +699 0.0013475 0.000186833 -0.000474252 +700 -0.00027208 -0.000743864 -0.00100713 +701 0.00133942 -0.000110119 -0.00112788 +702 0.000419333 0.00117849 0.000775749 +703 -0.00139621 -0.00111341 0.000575323 +704 0.000134599 0.00110628 4.245e-05 +705 0.0001953 0.000577417 -0.00135111 +706 0.000581985 0.000334256 0.00104317 +707 0.00114689 -0.000512721 -0.000629222 +708 -0.00100953 -0.00135657 -0.000180785 +709 0.000601979 -0.000722828 -0.000301539 +710 0.000988663 -0.000965989 -0.00105765 +711 -0.00159682 0.00133743 0.000420353 +712 -0.000602847 0.000493574 0.00086879 +713 -5.30813e-06 -0.000122138 -0.00150608 +714 0.000381377 -0.000365299 0.000888199 +715 -0.00143417 0.000493188 0.000687773 +716 -0.00121013 0.00109426 -0.000335755 +717 0 0 0 +718 0 0 0 +719 0 0 0 +720 0 0 0 +721 0 0 0 +722 0 0 0 +723 0 0 0 +724 0 0 0 +725 0.000483498 -0.000975611 0.00104576 +726 0.000870183 -0.00121877 0.000289653 +727 -0.000332522 0.000984987 -0.000273835 +728 0.00066145 0.000141135 0.000174603 +729 0.00064615 0.00133054 0.00131318 +730 0.00103284 0.00108738 0.000557074 +731 -0.000169869 0.00014075 -6.41415e-06 +732 5.41634e-05 0.000741826 -0.00102994 +733 0.00105283 3.02981e-05 -0.000787634 +734 0.00143951 -0.000212863 -0.00154374 +735 0.000236809 -0.0011595 0.00104316 +736 0.000460842 -0.000558419 1.96325e-05 +737 0.000445542 0.000630988 0.00115821 +738 0.000295389 0.000474672 0.00138341 +739 0.00147314 0.000972968 -0.00065204 +740 0.000623494 -0.00140266 0.000287053 +741 0.000852221 -0.000669257 -0.000942604 +742 0.000702068 -0.000825572 -0.000717402 +743 -0.00127058 -0.000327277 0.000397536 +744 0.00103017 0.00044749 0.00133663 +745 -0.000291903 1.82791e-05 -0.00116584 +746 9.47815e-05 -0.000224882 0.00122844 +747 -0.00110792 -0.00117151 0.000664956 +748 -0.000113952 0.00113503 0.00111339 +749 0.000114775 -0.00128197 -0.000116264 +750 0.00050146 -0.00152513 -0.000872372 +751 -0.000701244 0.000678632 -0.00143586 +752 0.000292727 -0.000165219 -0.000987423 +753 0.000277427 0.00102419 0.000151157 +754 0.000664112 0.000781027 -0.000604952 +755 -0.00130853 0.00127932 0.000509986 +756 -0.00031456 0.000435471 0.000958423 +757 0 0 0 +758 0 0 0 +759 0 0 0 +760 0 0 0 +761 0 0 0 +762 0 0 0 +763 0 0 0 +764 0 0 0 +765 -5.51779e-05 -0.000279151 -0.000396549 +766 -0.000281049 -0.000270611 0.00135375 +767 -0.000871198 -0.00146894 0.00143425 +768 -0.000489782 0.0010893 0.0012387 +769 0.000107474 -0.00112339 -0.000129128 +770 -0.000118397 -0.00111485 -0.00152922 +771 -0.000708545 0.00083721 -0.00144872 +772 -0.00109707 -0.0014604 3.41543e-05 +773 0.000514153 0.000726759 0.000920447 +774 0.000288282 0.000735298 -0.000479645 +775 -0.000301867 -0.000463035 -0.000399149 +776 -0.00069039 0.000389742 0.00108373 +777 -9.31337e-05 0.00132745 -0.000284099 +778 -0.000855842 0.00142283 -0.00070288 +779 0.000934461 -0.00148096 0.00105604 +780 -0.000527738 -0.000454495 0.00135115 +781 0.000313545 2.72039e-05 0.000765477 +782 -0.000449164 0.000122589 0.000346695 +783 0.00134114 0.000369184 -0.00104477 +784 -0.000121059 0.00139565 -0.000749666 +785 -0.000830579 0.00071474 0.000542242 +786 -0.00105645 0.000723279 -0.00085785 +787 0.00150379 -0.000475054 -0.000777354 +788 -0.00126518 -0.0010672 -0.000972901 +789 -0.000423901 -0.000585505 -0.00155857 +790 -0.000649772 -0.000576966 0.000191725 +791 -0.00123992 0.00137509 0.000272221 +792 -0.000858505 0.000782942 7.66745e-05 +793 -0.000261249 -0.00142974 -0.00129115 +794 -0.00048712 -0.0014212 0.000459145 +795 0.00130318 -0.00117461 -0.000932325 +796 -0.00146579 0.00138363 -0.00112787 +797 0 0 0 +798 0 0 0 +799 0 0 0 +800 0 0 0 +801 0 0 0 +802 0 0 0 +803 0 0 0 +804 0 0 0 +805 0.000100367 -0.000862762 0.0011582 +806 -0.000819725 0.000425849 -8.85598e-05 +807 -0.000715653 0.00109784 -0.000161392 +808 -0.00102846 -0.00136463 -0.00020361 +809 -0.00050692 -0.000262072 -4.63418e-05 +810 -0.000657073 -0.000418388 0.000178861 +811 -0.00132294 -0.00145187 -0.00136594 +812 0.00151465 -0.000763944 -0.00140816 +813 -0.000100241 -0.00156232 0.00100323 +814 -0.000250394 0.00143176 0.00122844 +815 -0.000916261 0.000398281 -0.000316363 +816 -0.00122907 0.0010862 -0.000358581 +817 6.24111e-05 0.000743837 0.00127065 +818 -0.00139452 -0.0010311 0.0010052 +819 0.00109001 0.00108582 -0.000539598 +820 -0.00106641 0.000241965 -9.11602e-05 +821 0.00046909 -0.000556408 -0.000830162 +822 -0.00098784 0.000819049 -0.00109561 +823 0.00149668 -0.000214428 0.000509978 +824 -0.000659735 -0.00105828 0.000958415 +825 -0.000675035 0.000131128 -0.0010534 +826 -0.00159513 0.00141974 0.000850231 +827 -0.00149105 -0.00105867 0.000777398 +828 0.00134653 -0.000370744 0.00073518 +829 -0.000268356 -0.00116912 -3.82157e-06 +830 -0.00118845 0.000119494 -0.00125059 +831 -0.00108438 0.000791481 -0.00132342 +832 -0.00139718 0.0014794 -0.00136564 +833 -0.000875643 -0.000568427 -0.00120837 +834 -0.0010258 -0.000724743 -0.000983165 +835 0.00145873 0.00139217 0.000622428 +836 0.00114592 -0.0010703 0.00058021 +837 0 0 0 +838 0 0 0 +839 0 0 0 +840 0 0 0 +841 0 0 0 +842 0 0 0 +843 0 0 0 +844 0 0 0 +845 -0.000438309 -0.000166302 -0.000284106 +846 -0.00066418 -0.000157763 0.00146619 +847 -0.00125433 -0.0013561 0.00154669 +848 0.00150754 -0.000503319 -0.000120824 +849 -0.000275657 -0.00101054 -1.6686e-05 +850 -0.000501528 -0.001002 -0.00141678 +851 0.00128878 -0.000755405 0.000342143 +852 -0.0014802 -0.00134756 0.000146597 +853 0.000131022 0.000839607 0.00103289 +854 -9.48492e-05 0.000848146 -0.000367203 +855 -0.00145494 0.00109474 0.00139172 +856 -0.00107352 0.000502591 0.00119617 +857 -0.000476265 0.0014403 -0.000171656 +858 0.00114148 -0.000169782 0.00108799 +859 0.00055133 -0.00136811 0.00116848 +860 0.00146958 0.00110328 -8.37372e-06 +861 -6.95862e-05 0.000140053 0.000877919 +862 -0.000832295 0.000235437 0.000459138 +863 0.000958009 0.000482032 -0.000932332 +864 -0.00050419 0.0015085 -0.000637224 +865 -0.00121371 0.000827588 0.000654684 +866 -0.00143958 0.000836127 -0.000745408 +867 0.00112066 -0.000362205 -0.000664912 +868 0.000732138 0.000490572 0.000817967 +869 -0.000807032 -0.000472657 -0.00144613 +870 -0.0010329 -0.000464117 0.000304167 +871 0.00152734 0.00148794 0.000384663 +872 0.00113882 -0.000809673 -0.00128285 +873 -0.00141432 0.000128034 0.000499714 +874 -0.000870251 -0.00130835 0.000571588 +875 0.000920053 -0.00106176 -0.000819882 +876 0.00130147 0.00149648 -0.00101543 +877 0 0 0 +878 0 0 0 +879 0 0 0 +880 0 0 0 +881 0 0 0 +882 0 0 0 +883 0 0 0 +884 0 0 0 +885 -0.000976985 0.000530159 0.00142397 +886 -0.00120286 0.000538698 2.38825e-05 +887 0.00135739 -0.000659635 0.000104379 +888 -0.00141159 -0.00125179 -9.1168e-05 +889 -0.000814333 -0.000314079 -0.001459 +890 -0.0010402 -0.000305539 0.000291303 +891 0.0007501 -5.89444e-05 -0.00110017 +892 0.00113152 -0.000651095 -0.00129571 +893 -0.000407654 0.00153607 -0.000409421 +894 -0.000633525 0.00154461 0.00134088 +895 0.00115678 -0.00135919 -5.05917e-05 +896 0.00153819 0.00119905 -0.000246138 +897 -0.00101494 -0.00101363 0.00153642 +898 0.00137274 -0.000918249 0.00111764 +899 1.26539e-05 -0.000671654 -0.000273827 +900 -0.00144954 0.000354814 2.12821e-05 +901 -0.000608262 0.000836513 -0.000564391 +902 -0.00137097 0.000931898 -0.000983173 +903 0.000419333 0.00117849 0.000775749 +904 -0.00104287 -0.000945431 0.00107086 +905 0.001398 0.00152405 -0.000787626 +906 0.00117213 0.00153259 0.000962673 +907 0.000581985 0.000334256 0.00104317 +908 0.000193462 0.00118703 -0.000624344 +909 -0.00134571 0.000223804 0.000261949 +910 -0.00157158 0.000232343 -0.00113814 +911 0.000988663 -0.000965989 -0.00105765 +912 0.00060014 -0.000113213 0.000425232 +913 0.0011974 0.000824494 -0.000942596 +914 -0.00140893 -0.000611894 -0.000870723 +915 0.000381377 -0.000365299 0.000888199 +916 0.000762793 -0.00095745 0.000692652 +917 0 0 0 +918 0 0 0 +919 0 0 0 +920 0 0 0 +921 0 0 0 +922 0 0 0 +923 0 0 0 +924 0 0 0 +925 0.00102217 0.00147832 -0.000662319 +926 0.00140886 0.00123516 -0.00141843 +927 0.000206154 0.000288527 0.00116848 +928 0.00120013 -0.000555325 -0.00153348 +929 0.00118483 0.000634082 -0.000394899 +930 -0.00157888 0.000390921 -0.00115101 +931 -0.000401132 0.000889217 -3.60699e-05 +932 0.000592839 4.53651e-05 0.000412367 +933 -0.00155889 -0.000666162 0.000654676 +934 -0.0011722 -0.000909324 -0.000101432 +935 5.54651e-06 -0.000411028 0.00101351 +936 0.000999518 -0.00125488 0.00146194 +937 0.000984218 -6.54722e-05 -0.000549869 +938 0.000834065 -0.000221788 -0.000324667 +939 -0.00113858 0.000276508 0.00079027 +940 0.00116217 0.00105127 -0.00142103 +941 0.0013909 -0.00136572 0.000499706 +942 0.00124074 -0.00152203 0.000724908 +943 -0.000731899 -0.00102374 -0.00131055 +944 -0.00158154 -0.00024897 -0.000371453 +945 0.000246773 -0.000678181 0.000276471 +946 0.000633458 -0.000921343 -0.000479637 +947 -0.000569247 0.00128242 -0.00104313 +948 -0.000345214 -0.0012669 0.00108374 +949 0.000653451 0.00117197 0.00132605 +950 0.00104014 0.000928804 0.000569938 +951 -0.000162568 -1.78281e-05 6.45027e-06 +952 0.000831403 -0.00086168 0.000454888 +953 0.000816103 0.000327728 -0.00155692 +954 0.00120279 8.45664e-05 0.000837358 +955 -0.000769855 0.000582862 -0.0011981 +956 0.000224117 -0.000260989 -0.000749658 +957 0 0 0 +958 0 0 0 +959 0 0 0 +960 0 0 0 +961 0 0 0 +962 0 0 0 +963 0 0 0 +964 0 0 0 +965 -0.00123264 0.000819527 0.000631859 +966 -0.000845958 0.000576365 -0.000124249 +967 -0.000817887 -0.000183766 -0.00081533 +968 -0.000593854 0.00041731 0.00131153 +969 0.00131046 0.00142022 -0.000572687 +970 -0.00145324 0.00117706 -0.0013288 +971 -0.00142517 0.000416924 0.00113052 +972 -0.000431202 -0.000426927 -0.00157144 +973 -0.00143325 0.000119972 0.000476889 +974 -0.00104657 -0.000123189 -0.00027922 +975 -0.00101849 -0.000883321 -0.0009703 +976 -2.4523e-05 0.00142322 -0.000521863 +977 -0.0012706 -0.000724265 0.000744309 +978 0.000959701 0.000564346 -0.000502455 +979 0.000987772 -0.000195785 -0.00119354 +980 -0.00063181 -0.00112648 0.00142398 +981 -0.00086392 0.00112588 -0.00135651 +982 0.00136638 -0.000735898 0.000547121 +983 0.00139445 -0.00149603 -0.00014396 +984 -0.000225131 0.000723664 -0.000676833 +985 0.00114235 -0.00133697 -0.00157974 +986 0.00152903 0.00157026 0.000814541 +987 -0.00159329 0.000810124 0.00012346 +988 -0.00136926 0.0014112 -0.000900068 +989 0.00154903 0.000513172 -0.000530167 +990 -0.00121468 0.000270011 -0.00128627 +991 -0.00118661 -0.000490121 0.00117304 +992 -0.000962577 0.000110955 0.000149507 +993 0.000941738 0.00111386 0.00141568 +994 0.00132842 0.000870701 0.000659571 +995 0.00135649 0.00011057 -3.151e-05 +996 -0.000799925 -0.000733282 0.000416927 +997 0 0 0 +998 0 0 0 +999 0 0 0 +1000 0 0 0 +1001 0 0 0 +1002 0 0 0 +1003 0 0 0 +1004 0 0 0 +1005 0.00137907 0.00151599 -0.000810451 +1006 0.0011532 0.00152453 0.000939848 +1007 -0.00135656 0.000512695 0.000892751 +1008 0.00140531 0.00136547 -0.000774762 +1009 0.000771785 -0.00103371 0.00113539 +1010 0.000545914 -0.00102517 -0.000264698 +1011 0.00118654 0.00111338 -0.000311795 +1012 -0.00158243 0.000521234 -0.000507341 +1013 0.00117846 0.000816433 -0.000965422 +1014 0.000952593 0.000824972 0.000784877 +1015 -0.00155717 -0.00018686 0.000737781 +1016 -0.00117575 -0.000779011 0.000542234 +1017 0.00134112 -2.78046e-05 -0.000698001 +1018 -0.000191531 0.00151251 0.000561642 +1019 0.000449096 0.000500676 0.000514546 +1020 0.00136735 -0.000178321 -0.000662312 +1021 -0.0014026 -0.00132805 0.000351574 +1022 0.000215147 0.000212263 -0.00153917 +1023 0.000855775 -0.000799569 0.00156412 +1024 -0.00137636 -0.00147857 0.000387264 +1025 0.00060367 -0.000640514 0.000128339 +1026 0.000377799 -0.000631975 -0.00127175 +1027 0.00101843 0.00150658 -0.00131885 +1028 0.000629904 -0.00079103 0.000164029 +1029 0.00101035 0.00120963 0.00117791 +1030 0.000784478 0.00121817 -0.000222178 +1031 0.00142511 0.00020634 -0.000269275 +1032 0.00103658 0.00105912 0.0012136 +1033 0.000403062 -0.00134007 -2.66312e-05 +1034 0.000177192 -0.00133153 -0.00142672 +1035 0.000817819 0.00080703 -0.00147382 +1036 0.00119923 0.000214879 0.00148102 +1037 0 0 0 +1038 0 0 0 +1039 0 0 0 +1040 0 0 0 +1041 0 0 0 +1042 0 0 0 +1043 0 0 0 +1044 0 0 0 +1045 0.00153462 0.000932375 0.000744301 +1046 0.000614525 -0.000929404 -0.000502463 +1047 0.00117943 0.00137401 0.000975537 +1048 0.000866629 -0.00108846 0.000933319 +1049 0.00092733 0.00153307 -0.000460245 +1050 7.23841e-06 -0.000328714 0.00144338 +1051 0.00134209 0.000529773 0.00124296 +1052 0.00102928 0.00121769 0.00120074 +1053 0.00133401 0.000232821 0.000589331 +1054 0.00118386 7.65049e-05 0.000814533 +1055 -0.00140163 -0.000770472 -0.000857858 +1056 0.00143596 -8.25506e-05 -0.000900076 +1057 0.00149666 -0.000611416 0.000856751 +1058 -0.000730207 -0.000941423 -0.000880668 +1059 0.000604641 -8.29362e-05 -0.00108109 +1060 0.000828674 0.00051814 0.00104577 +1061 -0.00124705 0.00123873 -0.00124406 +1062 -0.000323529 0.000908723 0.000168908 +1063 0.00101132 -0.00138318 -3.15178e-05 +1064 0.00123535 -0.000782105 -0.00105505 +1065 -1.07236e-05 0.000220802 0.000211126 +1066 -0.000160877 6.4486e-05 0.000436328 +1067 0.000404033 -0.000782491 -0.00123606 +1068 9.12278e-05 -9.45696e-05 -0.00127828 +1069 0.000395955 -0.00107944 0.0012607 +1070 0.000245802 -0.00123576 0.0014859 +1071 0.000810712 0.00106766 -0.000186488 +1072 0.000497906 -0.00139481 -0.000228706 +1073 0.000558607 0.00122671 0.00152812 +1074 -0.000361484 -0.000635069 0.000281358 +1075 0.000973364 0.000223418 8.09323e-05 +1076 0.000660559 0.00091134 3.87143e-05 +1077 0 0 0 +1078 0 0 0 +1079 0 0 0 +1080 0 0 0 +1081 0 0 0 +1082 0 0 0 +1083 0 0 0 +1084 0 0 0 +1085 0.000995941 -0.00152156 -0.000698009 +1086 0.00077007 -0.00151302 0.00105229 +1087 0.0014107 0.000625543 0.00100519 +1088 0.00102217 0.00147832 -0.000662319 +1089 0.000388654 -0.000920865 0.00124784 +1090 0.000162783 -0.000912326 -0.000152256 +1091 0.000803411 0.00122623 -0.000199352 +1092 0.00118483 0.000634082 -0.000394899 +1093 0.000795333 0.000929281 -0.000852979 +1094 0.000569462 0.000937821 0.00089732 +1095 0.00121009 -7.40114e-05 0.000850223 +1096 -0.00155889 -0.000666162 0.000654676 +1097 0.000957985 8.50441e-05 -0.000585559 +1098 -0.000574663 -0.00152504 0.000674085 +1099 6.59648e-05 0.000613524 0.000626988 +1100 0.000984218 -6.54722e-05 -0.000549869 +1101 0.00136466 -0.0012152 0.000464016 +1102 -0.000167984 0.000325111 -0.00142673 +1103 0.000472644 -0.000686721 -0.00147383 +1104 0.0013909 -0.00136572 0.000499706 +1105 -0.0005494 0.000917262 -0.00123118 +1106 -5.33175e-06 -0.000519126 -0.00115931 +1107 -0.000134643 -8.60304e-05 0.000472018 +1108 0.000246773 -0.000678181 0.000276471 +1109 0.000627218 0.00132248 0.00129036 +1110 0.000401347 0.00133102 -0.000109735 +1111 0.000272036 -0.00138628 0.00152159 +1112 0.000653451 0.00117197 0.00132605 +1113 1.99312e-05 -0.00122722 8.58111e-05 +1114 -0.00020594 -0.00121868 -0.00131428 +1115 0.000434688 0.000919879 -0.00136138 +1116 0.000816103 0.000327728 -0.00155692 +1117 0 0 0 +1118 0 0 0 +1119 0 0 0 +1120 0 0 0 +1121 0 0 0 +1122 0 0 0 +1123 0 0 0 +1124 0 0 0 +1125 0.000457265 -0.000825095 0.00101007 +1126 0.000231394 -0.000816556 -0.00039002 +1127 0.000872021 0.001322 -0.000437117 +1128 0.000483498 -0.000975611 0.00104576 +1129 -0.000150022 -0.000224405 -0.000194474 +1130 -0.000375893 -0.000215865 0.00155583 +1131 0.000264735 -0.0012277 0.00150873 +1132 0.00064615 0.00133054 0.00131318 +1133 0.000256657 -0.00152465 0.000855102 +1134 3.07859e-05 -0.00151611 -0.000544991 +1135 0.000671413 0.000622449 -0.000592087 +1136 0.00105283 3.02981e-05 -0.000787634 +1137 0.000419309 0.000781505 0.00112252 +1138 -0.00111334 -0.000828575 -0.000768226 +1139 -0.000472711 0.00130998 -0.000815322 +1140 0.000445542 0.000630988 0.00115821 +1141 0.000825988 -0.00051874 -0.000978294 +1142 -0.00070666 0.00102157 0.00028135 +1143 -6.60325e-05 9.73993e-06 0.000234253 +1144 0.000852221 -0.000669257 -0.000942604 +1145 -0.000318137 0.000168795 -0.00120153 +1146 -0.000544008 0.000177335 0.00054877 +1147 -0.000673319 0.00061043 -0.000970293 +1148 -0.000291903 1.82791e-05 -0.00116584 +1149 8.85419e-05 -0.00113145 -0.000151954 +1150 -0.000137329 -0.00112291 -0.00155205 +1151 0.000503298 0.00101565 0.00155125 +1152 0.000114775 -0.00128197 -0.000116264 +1153 -0.000518745 -0.000530759 -0.0013565 +1154 -0.000744616 -0.00052222 0.0003938 +1155 -0.000103988 -0.00153405 0.000346703 +1156 0.000277427 0.00102419 0.000151157 +1157 0 0 0 +1158 0 0 0 +1159 0 0 0 +1160 0 0 0 +1161 0 0 0 +1162 0 0 0 +1163 0 0 0 +1164 0 0 0 +1165 -0.000693967 0.000123066 -0.00107622 +1166 -0.000307282 -0.000120095 0.00131806 +1167 -0.000279211 -0.000880226 0.00062698 +1168 -5.51779e-05 -0.000279151 -0.000396549 +1169 -0.00130125 0.000723756 0.000869623 +1170 -0.000914569 0.000480595 0.000113515 +1171 -0.000886497 -0.000279536 -0.000577566 +1172 0.000107474 -0.00112339 -0.000129128 +1173 -0.000894575 -0.000576488 -0.00123119 +1174 -0.00050789 -0.00081965 0.00116309 +1175 -0.000479819 0.00157061 0.00047201 +1176 0.000514153 0.000726759 0.000920447 +1177 -0.000731923 -0.00142073 -0.000963772 +1178 0.00149838 -0.000132114 0.000939855 +1179 0.00152645 -0.000892245 0.000248775 +1180 -9.31337e-05 0.00132745 -0.000284099 +1181 -0.000325244 0.000429421 8.58033e-05 +1182 -0.00124534 -0.00143236 -0.00116096 +1183 -0.00121726 0.000957901 0.00129835 +1184 0.000313545 2.72039e-05 0.000765477 +1185 -0.00146937 0.00111696 -0.000137432 +1186 -0.00108268 0.000873795 -0.00089354 +1187 0.00132584 0.00155859 9.38045e-05 +1188 -0.000830579 0.00071474 0.000542242 +1189 -0.00106269 -0.000183288 0.000912144 +1190 -0.000676005 -0.00042645 0.000156035 +1191 -0.000647934 -0.00118658 -0.000535045 +1192 -0.000423901 -0.000585505 -0.00155857 +1193 0.00148041 0.000417402 -0.000292402 +1194 -0.00128329 0.00017424 -0.00104851 +1195 -0.00125522 -0.000585891 0.0014108 +1196 -0.000261249 -0.00142974 -0.00129115 +1197 0 0 0 +1198 0 0 0 +1199 0 0 0 +1200 0 0 0 +1201 0 0 0 +1202 0 0 0 +1203 0 0 0 +1204 0 0 0 +1205 -0.000489782 0.0010893 0.0012387 +1206 -0.000103097 0.000846135 0.000482592 +1207 -0.000153576 -9.40919e-05 0.000449192 +1208 0.000840396 -0.000937943 0.00089763 +1209 -0.00109707 -0.0014604 3.41543e-05 +1210 -0.000710384 0.00144683 -0.000721954 +1211 9.07659e-06 -0.000938329 0.000716613 +1212 0.000233109 -0.000337253 -0.000306916 +1213 -0.00069039 0.000389742 0.00108373 +1214 -0.000303705 0.00014658 0.000327621 +1215 0.000415755 0.000911817 -0.0013842 +1216 0.000639788 0.00151289 0.000742659 +1217 -0.000527738 -0.000454495 0.00135115 +1218 -0.00144783 0.000834116 0.000104386 +1219 -0.000728369 -0.00155104 0.00154295 +1220 0.00080244 0.000668656 0.00101008 +1221 -0.000121059 0.00139565 -0.000749666 +1222 -0.00104115 -0.000466129 0.00115396 +1223 -0.000321691 0.000299108 -0.000557863 +1224 0.00120912 -0.000631589 -0.00109074 +1225 -0.00126518 -0.0010672 -0.000972901 +1226 -0.000878498 -0.00131037 0.00142138 +1227 -0.000928977 0.000899798 0.00138798 +1228 6.49944e-05 5.59468e-05 -0.00131397 +1229 -0.000858505 0.000782942 7.66745e-05 +1230 -0.00047182 0.000539781 -0.000679434 +1231 -0.000522299 -0.000400446 -0.000712833 +1232 0.000471673 -0.0012443 -0.000264396 +1233 -0.00146579 0.00138363 -0.00112787 +1234 -0.00107911 0.00114047 0.00126641 +1235 -0.000359646 -0.00124468 -0.000445413 +1236 -0.000135614 -0.000643608 -0.00146894 +1237 0 0 0 +1238 0 0 0 +1239 0 0 0 +1240 0 0 0 +1241 0 0 0 +1242 0 0 0 +1243 0 0 0 +1244 0 0 0 +1245 -0.00102846 -0.00136463 -0.00020361 +1246 -0.00125433 -0.0013561 0.00154669 +1247 -0.000692252 0.000602369 -0.000993118 +1248 -0.000310836 1.02176e-05 -0.00118866 +1249 0.00151465 -0.000763944 -0.00140816 +1250 0.00128878 -0.000755405 0.000342143 +1251 -0.000529599 -0.000241869 -0.000725698 +1252 -0.000918123 0.000610908 0.000757181 +1253 -0.00122907 0.0010862 -0.000358581 +1254 -0.00145494 0.00109474 0.00139172 +1255 -0.000122921 -0.00154211 0.000323878 +1256 -0.000511444 -0.000689337 -0.00134363 +1257 -0.00106641 0.000241965 -9.11602e-05 +1258 0.00055133 -0.00136811 0.00116848 +1259 -0.00126705 -0.000854578 0.000100643 +1260 -0.000348792 -0.00153357 -0.00107621 +1261 -0.000659735 -0.00105828 0.000958415 +1262 0.000958009 0.000482032 -0.000932332 +1263 -0.000860367 0.000995569 0.00115022 +1264 5.7887e-05 0.000316572 -2.6639e-05 +1265 0.00134653 -0.000370744 0.00073518 +1266 0.00112066 -0.000362205 -0.000664912 +1267 -0.00146765 -0.00155413 -5.43274e-05 +1268 -0.00108624 0.00100411 -0.000249874 +1269 -0.00139718 0.0014794 -0.00136564 +1270 0.00152734 0.00148794 0.000384663 +1271 -0.00106097 0.000296014 0.000995248 +1272 -0.000679559 -0.000296137 0.000799701 +1273 0.00114592 -0.0010703 0.00058021 +1274 0.000920053 -0.00106176 -0.000819882 +1275 -0.000898322 -0.000548223 0.00126267 +1276 -0.00128685 0.000304553 -0.000404844 +1277 0 0 0 +1278 0 0 0 +1279 0 0 0 +1280 0 0 0 +1281 0 0 0 +1282 0 0 0 +1283 0 0 0 +1284 0 0 0 +1285 0.00150754 -0.000503319 -0.000120824 +1286 0.00135739 -0.000659635 0.000104379 +1287 -0.000536707 1.87568e-05 0.000561635 +1288 -0.000849512 0.000706678 0.000519417 +1289 -0.0014802 -0.00134756 0.000146597 +1290 0.0007501 -5.89444e-05 -0.00110017 +1291 -0.00114399 0.000619447 -0.000642911 +1292 -0.0014568 0.00130737 -0.000685129 +1293 -0.00107352 0.000502591 0.00119617 +1294 0.00115678 -0.00135919 -5.05917e-05 +1295 3.2624e-05 0.00102467 -0.00127176 +1296 -0.000280181 -0.0014378 -0.00131398 +1297 0.00146958 0.00110328 -8.37372e-06 +1298 1.26539e-05 -0.000671654 -0.000273827 +1299 0.00126895 6.73779e-06 0.000183429 +1300 -0.000887468 -0.000837114 0.000631867 +1301 -0.00050419 0.0015085 -0.000637224 +1302 0.000419333 0.00117849 0.000775749 +1303 -0.00147476 -0.00129351 0.001233 +1304 -0.000480789 0.00101303 -0.00146895 +1305 0.000732138 0.000490572 0.000817967 +1306 0.000581985 0.000334256 0.00104317 +1307 -0.00131211 0.00101265 0.00150043 +1308 0.00152548 -0.00144982 0.00145821 +1309 0.00113882 -0.000809673 -0.00128285 +1310 0.000988663 -0.000965989 -0.00105765 +1311 -0.00090543 -0.000287598 -0.000600391 +1312 -0.00121823 0.000400324 -0.000642609 +1313 0.00130147 0.00149648 -0.00101543 +1314 0.000381377 -0.000365299 0.000888199 +1315 -0.00151272 0.000313092 0.00134545 +1316 0.00132487 0.00100101 0.00130324 +1317 0 0 0 +1318 0 0 0 +1319 0 0 0 +1320 0 0 0 +1321 0 0 0 +1322 0 0 0 +1323 0 0 0 +1324 0 0 0 +1325 -0.00141159 -0.00125179 -9.1168e-05 +1326 0.00151293 -0.00124325 -0.00149126 +1327 -0.00107538 0.000715217 -0.000880676 +1328 -0.000693967 0.000123066 -0.00107622 +1329 0.00113152 -0.000651095 -0.00129571 +1330 0.000905645 -0.000642556 0.000454585 +1331 -0.000912731 -0.00012902 -0.000613255 +1332 -0.00130125 0.000723756 0.000869623 +1333 0.00153819 0.00119905 -0.000246138 +1334 0.00131232 0.00120759 0.00150416 +1335 -0.000506052 -0.00142926 0.00043632 +1336 -0.000894575 -0.000576488 -0.00123119 +1337 -0.00144954 0.000354814 2.12821e-05 +1338 0.000168199 -0.00125527 0.00128093 +1339 0.000730276 0.000703198 -0.00125888 +1340 -0.000731923 -0.00142073 -0.000963772 +1341 -0.00104287 -0.000945431 0.00107086 +1342 0.000574877 0.000594881 -0.00081989 +1343 0.00113695 -0.000597047 -0.000209306 +1344 -0.000325244 0.000429421 8.58033e-05 +1345 0.000193462 0.00118703 -0.000624344 +1346 0.00073753 -0.000249356 -0.00055247 +1347 0.00129961 -0.00144128 5.81149e-05 +1348 -0.00146937 0.00111696 -0.000137432 +1349 0.00060014 -0.000113213 0.000425232 +1350 0.00114421 -0.0015496 0.000497106 +1351 -0.00144411 0.000408863 0.00110769 +1352 -0.00106269 -0.000183288 0.000912144 +1353 0.000762793 -0.00095745 0.000692652 +1354 0.000536922 -0.000948911 -0.00070744 +1355 0.001099 0.00100955 -9.68554e-05 +1356 0.00148041 0.000417402 -0.000292402 +1357 0 0 0 +1358 0 0 0 +1359 0 0 0 +1360 0 0 0 +1361 0 0 0 +1362 0 0 0 +1363 0 0 0 +1364 0 0 0 +1365 0.00120013 -0.000555325 -0.00153348 +1366 0.000974255 -0.000546786 0.000216821 +1367 0.00153633 0.00141168 0.000827405 +1368 -0.00123264 0.000819527 0.000631859 +1369 0.000592839 4.53651e-05 0.000412367 +1370 0.000366968 5.39043e-05 -0.000987725 +1371 -0.00145141 0.000567441 0.00109483 +1372 0.00131046 0.00142022 -0.000572687 +1373 0.000999518 -0.00125488 0.00146194 +1374 0.000773647 -0.00124634 6.18505e-05 +1375 -0.00104473 -0.000732804 -0.00100599 +1376 -0.00143325 0.000119972 0.000476889 +1377 0.00116217 0.00105127 -0.00142103 +1378 -0.000370477 -0.000558805 -0.000161384 +1379 0.0001916 0.00139966 0.0004492 +1380 -0.0012706 -0.000724265 0.000744309 +1381 -0.00158154 -0.00024897 -0.000371453 +1382 3.62014e-05 0.00129134 0.000888191 +1383 0.00136822 -0.00134551 -0.00017965 +1384 -0.00086392 0.00112588 -0.00135651 +1385 -0.000345214 -0.0012669 0.00108374 +1386 0.000198854 0.000447104 0.00115561 +1387 0.000760931 -0.000744823 -0.0013842 +1388 0.00114235 -0.00133697 -0.00157974 +1389 0.000831403 -0.00086168 0.000454888 +1390 0.000605532 -0.00085314 -0.000945205 +1391 0.00116761 0.00110532 -0.00033462 +1392 0.00154903 0.000513172 -0.000530167 +1393 0.000224117 -0.000260989 -0.000749658 +1394 -1.75442e-06 -0.00025245 0.00100064 +1395 0.00133026 0.000261086 -6.71996e-05 +1396 0.000941738 0.00111386 0.00141568 +1397 0 0 0 +1398 0 0 0 +1399 0 0 0 +1400 0 0 0 +1401 0 0 0 +1402 0 0 0 +1403 0 0 0 +1404 0 0 0 +1405 4.88942e-05 0.000392836 -0.000469381 +1406 0.000435579 0.000149675 -0.00122549 +1407 0.0003851 -0.000790552 -0.00125889 +1408 0.00137907 0.00151599 -0.000810451 +1409 -0.000558392 0.000993526 0.00147646 +1410 -0.000171708 0.000750365 0.000720356 +1411 0.000547753 0.0015156 -0.000991468 +1412 0.000771785 -0.00103371 0.00113539 +1413 -0.000151714 -0.000306719 -0.000624351 +1414 0.000234971 -0.00054988 -0.00138046 +1415 0.000954431 0.000215357 5.8107e-05 +1416 0.00117846 0.000816433 -0.000965422 +1417 1.09384e-05 -0.00115096 -0.000356931 +1418 -0.000909153 0.000137656 0.0015467 +1419 -0.000189693 0.000902892 -0.000165128 +1420 0.00134112 -2.78046e-05 -0.000698001 +1421 0.000417617 0.000699191 0.000692644 +1422 -0.000502475 -0.00116259 -0.000554119 +1423 0.000216985 -0.000397352 0.000884447 +1424 -0.0014026 -0.00132805 0.000351574 +1425 -0.000726507 0.00138673 0.000469409 +1426 -0.000339822 0.00114356 -0.000286699 +1427 -0.000390301 0.000203338 -0.000320098 +1428 0.00060367 -0.000640514 0.000128339 +1429 -0.000319829 8.64815e-05 0.00151898 +1430 6.68562e-05 -0.00015668 0.000762876 +1431 1.63775e-05 -0.00109691 0.000729477 +1432 0.00101035 0.00120963 0.00117791 +1433 -0.000927115 0.000687172 0.000314439 +1434 -0.00054043 0.00044401 -0.000441669 +1435 0.00017903 0.00120925 0.000996897 +1436 0.000403062 -0.00134007 -2.66312e-05 +1437 0 0 0 +1438 0 0 0 +1439 0 0 0 +1440 0 0 0 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/Ar_ttm.mat lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/Ar_ttm.mat --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/Ar_ttm.mat 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/Ar_ttm.mat 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,35 @@ +material Ar +heat_capacity constant +capacity 0.000000063363 +end +electron_heat_capacity constant +capacity 0.000000063363 +end +heat_flux linear +conductivity 0.0000000030111 +end +electron_heat_flux linear +conductivity 0.0000000030111 +end +electron_phonon_exchange linear +coefficient 0.00000000001 +end +end + +material Null +heat_capacity constant +capacity 1.0 +end +electron_heat_capacity constant +capacity 1.0 +end +heat_flux linear +conductivity 0.0 +end +electron_heat_flux linear +conductivity 0.0 +end +electron_phonon_exchange linear +coefficient 0.0 +end +end diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/Cu_ttm.mat lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/Cu_ttm.mat --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/Cu_ttm.mat 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/Cu_ttm.mat 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,17 @@ +material Cu +heat_capacity constant +capacity 0.211977459280654 +end +heat_flux linear +conductivity 67.4479848 +end +electron_heat_flux linear +conductivity 441.362750535 +end +electron_heat_capacity constant +capacity 0.005817388689 +end +electron_phonon_exchange linear +coefficient 0.0156575679 +end +end diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/bar1d_ttm.log lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/bar1d_ttm.log --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/bar1d_ttm.log 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/bar1d_ttm.log 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,537 @@ +LAMMPS (7 Jul 2009) +# in this example the electron temperature on the left is ramped up in time +# and held fixed on the right. the phonon temperature is free on the left +# and fixed and consistent with the electron temperature on the right. +# this mimics some simplified pumped system +# also a volume source is added to mimic Joule heating + +#echo both + +# units +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, +# where N = 4 for fcc, +# s = 3.405 A (Wagner) +# a = 5.25 A (Ashcroft & Mermin, p. 70) +#if {restart} +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init + orthogonal box = (-64.86 -16.215 -16.215) to (64.86 16.215 16.215) + 1 by 1 by 1 processor grid + 3456 atoms + 3456 velocities +#endif + +lattice fcc 5.405 origin 0.25 0.25 0.25 +Lattice spacing in x,y,z = 5.405 5.405 5.405 +region feRegion block -14 14 -3 3 -3 3 +region mdRegion block -12 12 -3 3 -3 3 +region mdInternal block -10 10 -3 3 -3 3 + +# NOTE: don't define ghosts if they are outside the feRegion +group internal region mdInternal +2880 atoms in group internal +group ghost subtract all internal +576 atoms in group ghost + +# create atoms +#if !{restart} +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 +#pair_style lj/cut 13.5 +#pair_coeff 1 1 .238 3.405 13.5 +#velocity internal create 40 87287 mom yes loop geom +#endif + +# timestep & neighboring +timestep 5.0 +thermo 10 +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc two_temperature Ar_ttm.mat + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 14 1 1 feRegion f p p + +# specify atom types for the atc fix +#fix_modify AtC transfer internal type internal +fix_modify AtC transfer boundary type ghost + +# fix initial temperatures +#if !{restart} +#velocity internal create 40 87287 mom yes loop geom +#endif +fix_modify AtC transfer initial temperature all 20 +fix_modify AtC transfer fix temperature all 20 +fix_modify AtC transfer initial electron_temperature all 20 +fix_modify AtC transfer fix electron_temperature all 20 + +# equilibrate MD field with rescale +fix_modify AtC extrinsic exchange off +fix_modify AtC transfer thermal control rescale 10 +#if !{restart} +#run 1000 +#endif + +# change thermostat +fix_modify AtC extrinsic exchange on +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer unfix electron_temperature all +# note does not handle "inf"s +#fix_modify AtC mesh create_faceset bndy -8 8 inf inf inf inf +fix_modify AtC mesh create_faceset bndy box -10 10 -10 10 -10 10 +fix_modify AtC transfer thermal control flux faceset bndy +# .. this controls the time filtering .... +#fix_modify AtC transfer filter scale 500.0 + +# add nodesets & boundary temperature controls +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +# NOTE create_nodeset doesn't handle "inf" +fix_modify AtC mesh create_nodeset lbc -14.1 -13.9 -6 6 -6 6 +fix_modify AtC mesh create_nodeset rbc 13.9 14.1 -6 6 -6 6 +fix_modify AtC transfer fix electron_temperature lbc 40. +fix_modify AtC transfer fix electron_temperature rbc 20. +fix_modify AtC transfer fix temperature rbc 20. +#fix_modify AtC transfer source electron_temperature all 0.0015 +fix_modify AtC transfer source electron_temperature all 9.50445e-11 + + +# output filename frequency [text output] +fix_modify AtC transfer output bar1d_ttmFE 100 text + +# run transient to steady state +thermo 10 +reset_timestep 0 +run 4000 +Memory usage per processor = 20.4457 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 16.671491 -6505.7593 0 -6334.0647 -1236.2423 + 10 16.651705 -6505.5537 0 -6334.0628 -1236.063 + 20 16.530158 -6504.2726 0 -6334.0335 -1232.9374 + 30 16.484745 -6503.7602 0 -6333.9888 -1231.0691 + 40 16.543953 -6504.3215 0 -6333.9403 -1231.4891 + 50 16.594988 -6504.7418 0 -6333.835 -1231.8556 + 60 16.569044 -6504.3689 0 -6333.7293 -1230.7731 + 70 16.505629 -6503.6163 0 -6333.6298 -1229.1909 + 80 16.499955 -6503.4447 0 -6333.5166 -1229.1002 + 90 16.523227 -6503.6042 0 -6333.4365 -1229.6937 + 100 16.508157 -6503.3717 0 -6333.3591 -1229.2842 + 110 16.515733 -6503.374 0 -6333.2834 -1229.1993 + 120 16.568236 -6503.8632 0 -6333.2319 -1230.0834 + 130 16.554884 -6503.675 0 -6333.1812 -1229.6144 + 140 16.473429 -6502.736 0 -6333.0811 -1227.7486 + 150 16.469794 -6502.5514 0 -6332.934 -1227.607 + 160 16.579831 -6503.5343 0 -6332.7836 -1229.6567 + 170 16.624378 -6503.8396 0 -6332.6301 -1229.6114 + 180 16.501732 -6502.377 0 -6332.4306 -1225.3556 + 190 16.388366 -6500.9672 0 -6332.1884 -1221.4971 + 200 16.484582 -6501.7504 0 -6331.9806 -1223.1577 + 210 16.699214 -6503.7792 0 -6331.799 -1228.2052 + 220 16.791874 -6504.548 0 -6331.6136 -1230.5561 + 230 16.748075 -6503.9202 0 -6331.4368 -1229.213 + 240 16.665833 -6502.8491 0 -6331.2127 -1226.4072 + 250 16.621232 -6502.1717 0 -6330.9946 -1224.5041 + 260 16.658091 -6502.3535 0 -6330.7969 -1224.89 + 270 16.739152 -6502.9658 0 -6330.5744 -1226.6051 + 280 16.804835 -6503.4492 0 -6330.3813 -1227.9296 + 290 16.798717 -6503.126 0 -6330.121 -1227.0917 + 300 16.696278 -6501.8014 0 -6329.8514 -1223.5739 + 310 16.591095 -6500.3987 0 -6329.532 -1219.6969 + 320 16.562079 -6499.7687 0 -6329.2009 -1217.6605 + 330 16.629333 -6500.1646 0 -6328.9041 -1218.1376 + 340 16.735568 -6500.9667 0 -6328.6121 -1219.8673 + 350 16.848974 -6501.8919 0 -6328.3694 -1222.1931 + 360 16.98713 -6503.0922 0 -6328.1469 -1225.3572 + 370 17.06977 -6503.7257 0 -6327.9293 -1227.2193 + 380 16.971691 -6502.4327 0 -6327.6463 -1224.4904 + 390 16.743361 -6499.7176 0 -6327.2828 -1218.0682 + 400 16.574649 -6497.518 0 -6326.8207 -1212.3628 + 410 16.56711 -6496.9847 0 -6326.3651 -1210.1976 + 420 16.671542 -6497.6307 0 -6325.9355 -1210.9062 + 430 16.808348 -6498.617 0 -6325.5129 -1212.8599 + 440 16.918663 -6499.3855 0 -6325.1453 -1214.7492 + 450 16.998348 -6499.8258 0 -6324.7649 -1216.1894 + 460 17.101907 -6500.4972 0 -6324.3698 -1217.98 + 470 17.199306 -6501.0962 0 -6323.9657 -1219.0689 + 480 17.133501 -6500.0357 0 -6323.5829 -1216.0406 + 490 16.939851 -6497.6902 0 -6323.2317 -1210.2749 + 500 16.919105 -6497.0735 0 -6322.8287 -1209.1143 + 510 17.178498 -6499.3244 0 -6322.4083 -1215.1868 + 520 17.48021 -6502.0287 0 -6322.0053 -1222.3728 + 530 17.559531 -6502.438 0 -6321.5977 -1223.4739 + 540 17.38932 -6500.2923 0 -6321.2049 -1217.4934 + 550 17.142234 -6497.3094 0 -6320.7667 -1209.0997 + 560 17.01647 -6495.5092 0 -6320.2617 -1204.0898 + 570 17.150938 -6496.3914 0 -6319.7591 -1206.2366 + 580 17.393162 -6498.4183 0 -6319.2914 -1211.65 + 590 17.504817 -6499.1265 0 -6318.8497 -1213.8141 + 600 17.500349 -6498.6418 0 -6318.411 -1212.1111 + 610 17.406024 -6497.2206 0 -6317.9612 -1207.3661 + 620 17.220843 -6494.8037 0 -6317.4514 -1200.5909 + 630 17.102363 -6493.032 0 -6316.8999 -1196.203 + 640 17.148333 -6492.9097 0 -6316.3042 -1196.5894 + 650 17.311596 -6493.9994 0 -6315.7125 -1200.1099 + 660 17.48294 -6495.2118 0 -6315.1602 -1203.3122 + 670 17.519633 -6495.0681 0 -6314.6387 -1202.4983 + 680 17.457125 -6493.9797 0 -6314.194 -1198.8656 + 690 17.470863 -6493.6507 0 -6313.7235 -1197.0165 + 700 17.576148 -6494.2454 0 -6313.2339 -1197.8281 + 710 17.697902 -6495.025 0 -6312.7596 -1199.4344 + 720 17.743065 -6494.9543 0 -6312.2238 -1199.2455 + 730 17.699788 -6493.9456 0 -6311.6608 -1196.7949 + 740 17.627877 -6492.6298 0 -6311.0856 -1193.4101 + 750 17.550154 -6491.244 0 -6310.5002 -1189.7954 + 760 17.539095 -6490.5769 0 -6309.947 -1187.8995 + 770 17.673363 -6491.4351 0 -6309.4225 -1189.7523 + 780 17.882147 -6493.062 0 -6308.8991 -1193.7188 + 790 18.00966 -6493.8707 0 -6308.3947 -1195.8005 + 800 17.980583 -6493.0714 0 -6307.8948 -1193.6851 + 810 17.825824 -6490.9588 0 -6307.376 -1188.1017 + 820 17.692317 -6489.0401 0 -6306.8322 -1183.0295 + 830 17.710419 -6488.6573 0 -6306.2631 -1181.9387 + 840 17.808262 -6489.0855 0 -6305.6836 -1183.0468 + 850 17.829578 -6488.7143 0 -6305.0928 -1182.1899 + 860 17.771342 -6487.5008 0 -6304.4791 -1179.1217 + 870 17.820295 -6487.3695 0 -6303.8436 -1178.575 + 880 18.063537 -6489.2637 0 -6303.2327 -1183.0663 + 890 18.369284 -6491.8496 0 -6302.6699 -1189.4275 + 900 18.525872 -6492.9961 0 -6302.2037 -1192.342 + 910 18.472235 -6492.0343 0 -6301.7943 -1190.0811 + 920 18.372321 -6490.5617 0 -6301.3507 -1186.1654 + 930 18.288123 -6489.2163 0 -6300.8724 -1181.9829 + 940 18.096622 -6486.6631 0 -6300.2914 -1174.8569 + 950 17.882153 -6483.7861 0 -6299.6232 -1167.0973 + 960 17.867323 -6482.9268 0 -6298.9166 -1164.4853 + 970 18.09915 -6484.6345 0 -6298.2368 -1168.6545 + 980 18.443545 -6487.5728 0 -6297.6283 -1176.2602 + 990 18.703733 -6489.7042 0 -6297.0801 -1181.8804 + 1000 18.753218 -6489.6818 0 -6296.548 -1181.8673 + 1010 18.610779 -6487.6703 0 -6296.0035 -1176.534 + 1020 18.39336 -6484.8445 0 -6295.4168 -1168.9352 + 1030 18.247821 -6482.6945 0 -6294.7657 -1162.956 + 1040 18.27653 -6482.3647 0 -6294.1402 -1161.3767 + 1050 18.418106 -6483.2621 0 -6293.5796 -1163.05 + 1060 18.573973 -6484.3115 0 -6293.0237 -1165.571 + 1070 18.664801 -6484.6987 0 -6292.4755 -1166.7949 + 1080 18.621552 -6483.6737 0 -6291.896 -1164.8778 + 1090 18.53927 -6482.1938 0 -6291.2635 -1161.868 + 1100 18.568833 -6481.8649 0 -6290.6301 -1161.2524 + 1110 18.683765 -6482.4291 0 -6290.0106 -1162.4768 + 1120 18.808147 -6483.0831 0 -6289.3837 -1163.5972 + 1130 18.884946 -6483.3252 0 -6288.8348 -1163.2843 + 1140 18.846682 -6482.3961 0 -6288.2998 -1160.2541 + 1150 18.748976 -6480.8337 0 -6287.7436 -1156.1965 + 1160 18.759994 -6480.3843 0 -6287.1808 -1155.1103 + 1170 18.901967 -6481.2895 0 -6286.6238 -1157.2721 + 1180 19.011261 -6481.9017 0 -6286.1104 -1158.6901 + 1190 19.040255 -6481.7192 0 -6285.6293 -1158.1377 + 1200 19.106103 -6481.8954 0 -6285.1274 -1158.289 + 1210 19.229265 -6482.6335 0 -6284.5971 -1159.6899 + 1220 19.239111 -6482.1951 0 -6284.0573 -1158.6039 + 1230 19.157688 -6480.7877 0 -6283.4884 -1155.4514 + 1240 19.174743 -6480.4215 0 -6282.9466 -1154.4926 + 1250 19.286153 -6481.0811 0 -6282.4589 -1155.5921 + 1260 19.320062 -6480.9602 0 -6281.9887 -1154.5954 + 1270 19.190466 -6479.1585 0 -6281.5217 -1149.413 + 1280 18.995019 -6476.6109 0 -6280.9869 -1142.6018 + 1290 18.914422 -6475.1574 0 -6280.3635 -1138.9829 + 1300 19.050226 -6475.8748 0 -6279.6823 -1141.1071 + 1310 19.272645 -6477.5322 0 -6279.049 -1145.5684 + 1320 19.357581 -6477.7617 0 -6278.4038 -1146.3936 + 1330 19.266387 -6476.2235 0 -6277.8047 -1142.4125 + 1340 19.168211 -6474.5602 0 -6277.1526 -1137.831 + 1350 19.257232 -6474.8149 0 -6276.4904 -1137.9089 + 1360 19.550412 -6477.2011 0 -6275.8573 -1143.4638 + 1370 19.796833 -6479.1494 0 -6275.2678 -1148.551 + 1380 19.7815 -6478.4409 0 -6274.7172 -1147.5698 + 1390 19.631575 -6476.3413 0 -6274.1616 -1142.7018 + 1400 19.521048 -6474.5989 0 -6273.5575 -1138.0212 + 1410 19.519644 -6473.9613 0 -6272.9343 -1135.7628 + 1420 19.608168 -6474.2556 0 -6272.317 -1136.0104 + 1430 19.764525 -6475.2719 0 -6271.723 -1138.215 + 1440 19.912587 -6476.2047 0 -6271.131 -1140.1734 + 1450 19.913759 -6475.6003 0 -6270.5145 -1138.3693 + 1460 19.79157 -6473.6952 0 -6269.8678 -1133.2856 + 1470 19.714636 -6472.2575 0 -6269.2224 -1129.0564 + 1480 19.737365 -6471.846 0 -6268.5768 -1127.3107 + 1490 19.766194 -6471.5403 0 -6267.9742 -1126.1998 + 1500 19.7696 -6470.9664 0 -6267.3653 -1124.9092 + 1510 19.827695 -6470.9018 0 -6266.7023 -1124.9431 + 1520 19.944447 -6471.4439 0 -6266.042 -1126.1254 + 1530 19.973951 -6471.1382 0 -6265.4325 -1125.053 + 1540 19.886531 -6469.6311 0 -6264.8257 -1121.0356 + 1550 19.818466 -6468.3255 0 -6264.221 -1117.3869 + 1560 19.839194 -6467.8989 0 -6263.5811 -1115.9427 + 1570 19.921311 -6468.101 0 -6262.9374 -1116.1766 + 1580 20.015732 -6468.4487 0 -6262.3127 -1116.9107 + 1590 20.110315 -6468.7904 0 -6261.6803 -1117.8602 + 1600 20.264876 -6469.7349 0 -6261.0331 -1120.2718 + 1610 20.380324 -6470.3096 0 -6260.4188 -1121.7548 + 1620 20.322098 -6469.1089 0 -6259.8178 -1119.0178 + 1630 20.232717 -6467.5453 0 -6259.1747 -1115.1644 + 1640 20.313706 -6467.7411 0 -6258.5363 -1115.2943 + 1650 20.575967 -6469.8346 0 -6257.9289 -1120.0993 + 1660 20.793996 -6471.5219 0 -6257.3708 -1124.1915 + 1670 20.736006 -6470.3925 0 -6256.8386 -1121.5447 + 1680 20.444958 -6466.8331 0 -6256.2767 -1112.7298 + 1690 20.22674 -6463.9901 0 -6255.681 -1105.0268 + 1700 20.274891 -6463.902 0 -6255.097 -1103.5997 + 1710 20.45142 -6465.094 0 -6254.471 -1105.8914 + 1720 20.56919 -6465.7092 0 -6253.8733 -1107.7881 + 1730 20.641711 -6465.8219 0 -6253.2392 -1108.9745 + 1740 20.728211 -6466.1028 0 -6252.6292 -1110.0176 + 1750 20.722246 -6465.3722 0 -6251.96 -1107.879 + 1760 20.538713 -6462.7849 0 -6251.2629 -1100.8039 + 1770 20.35658 -6460.178 0 -6250.5317 -1093.4872 + 1780 20.411269 -6460.0611 0 -6249.8516 -1092.0689 + 1790 20.661313 -6461.9598 0 -6249.1752 -1096.0711 + 1800 20.95287 -6464.3187 0 -6248.5314 -1101.9506 + 1810 21.25238 -6466.7902 0 -6247.9183 -1108.1806 + 1820 21.413306 -6467.889 0 -6247.3598 -1110.7541 + 1830 21.265567 -6465.8163 0 -6246.8086 -1105.462 + 1840 20.904899 -6461.4789 0 -6246.1856 -1094.6349 + 1850 20.604956 -6457.7007 0 -6245.4965 -1085.2083 + 1860 20.577858 -6456.6395 0 -6244.7144 -1082.4955 + 1870 20.79238 -6458.0326 0 -6243.8981 -1085.8989 + 1880 21.103689 -6460.5343 0 -6243.1938 -1091.8916 + 1890 21.349681 -6462.4189 0 -6242.545 -1096.2855 + 1900 21.424808 -6462.6294 0 -6241.9818 -1096.4936 + 1910 21.349347 -6461.3082 0 -6241.4377 -1092.941 + 1920 21.18517 -6459.1076 0 -6240.928 -1087.3369 + 1930 21.036065 -6457.0235 0 -6240.3794 -1082.2115 + 1940 21.024255 -6456.3164 0 -6239.794 -1080.5427 + 1950 21.289969 -6458.4084 0 -6239.1495 -1085.3514 + 1960 21.667609 -6461.6896 0 -6238.5414 -1092.5154 + 1970 21.745842 -6461.9113 0 -6237.9574 -1092.2463 + 1980 21.479887 -6458.5535 0 -6237.3386 -1083.5811 + 1990 21.293202 -6456.0149 0 -6236.7226 -1076.7027 + 2000 21.279875 -6455.261 0 -6236.106 -1074.3201 + 2010 21.209986 -6453.9211 0 -6235.4858 -1071.2596 + 2020 21.123158 -6452.3385 0 -6234.7975 -1068.0754 + 2030 21.231892 -6452.7558 0 -6234.0949 -1069.5067 + 2040 21.508927 -6454.8747 0 -6233.3608 -1074.7487 + 2050 21.689676 -6456.0738 0 -6232.6984 -1077.5956 + 2060 21.647006 -6455.0083 0 -6232.0723 -1075.0067 + 2070 21.595825 -6453.8924 0 -6231.4835 -1072.0624 + 2080 21.722464 -6454.6421 0 -6230.929 -1073.3487 + 2090 21.936202 -6456.321 0 -6230.4066 -1076.6812 + 2100 21.94343 -6455.8658 0 -6229.877 -1075.0841 + 2110 21.710389 -6452.8983 0 -6229.3096 -1067.7357 + 2120 21.539354 -6450.4365 0 -6228.6092 -1061.8052 + 2130 21.625914 -6450.5981 0 -6227.8793 -1062.4766 + 2140 21.960668 -6453.3298 0 -6227.1635 -1069.5494 + 2150 22.310957 -6456.2864 0 -6226.5125 -1077.1038 + 2160 22.442785 -6457.0871 0 -6225.9556 -1078.9487 + 2170 22.307481 -6455.1658 0 -6225.4278 -1073.5529 + 2180 22.01895 -6451.6169 0 -6224.8504 -1063.9995 + 2190 21.809231 -6448.8289 0 -6224.2222 -1056.4997 + 2200 21.834738 -6448.4131 0 -6223.5437 -1055.247 + 2210 22.053404 -6449.9713 0 -6222.8499 -1059.0126 + 2220 22.211871 -6450.9665 0 -6222.2131 -1061.1631 + 2230 22.136256 -6449.519 0 -6221.5444 -1057.005 + 2240 21.95616 -6446.9579 0 -6220.838 -1049.819 + 2250 21.923576 -6445.8406 0 -6220.0563 -1046.3662 + 2260 22.155568 -6447.4761 0 -6219.3026 -1050.0877 + 2270 22.472144 -6450.0957 0 -6218.6619 -1056.7086 + 2280 22.625353 -6451.0829 0 -6218.0712 -1059.4587 + 2290 22.542977 -6449.6972 0 -6217.5338 -1055.8674 + 2300 22.353808 -6447.0998 0 -6216.8847 -1048.8464 + 2310 22.199672 -6444.8501 0 -6216.2224 -1042.6858 + 2320 22.168149 -6443.8627 0 -6215.5596 -1040.2713 + 2330 22.326947 -6444.8459 0 -6214.9074 -1043.2191 + 2340 22.619445 -6447.2547 0 -6214.3038 -1049.6256 + 2350 22.841953 -6448.9708 0 -6213.7284 -1054.0085 + 2360 22.832357 -6448.29 0 -6213.1464 -1052.3278 + 2370 22.676181 -6446.0942 0 -6212.559 -1046.8884 + 2380 22.573679 -6444.4435 0 -6211.964 -1042.7352 + 2390 22.582663 -6443.8955 0 -6211.3234 -1041.3299 + 2400 22.653145 -6443.9587 0 -6210.6608 -1041.3709 + 2410 22.763485 -6444.4279 0 -6209.9936 -1042.0924 + 2420 22.873423 -6444.9515 0 -6209.385 -1042.6384 + 2430 22.906275 -6444.7449 0 -6208.8401 -1041.5096 + 2440 22.910306 -6444.2555 0 -6208.3092 -1039.9263 + 2450 23.026189 -6444.906 0 -6207.7662 -1040.9903 + 2460 23.150543 -6445.6549 0 -6207.2345 -1042.0974 + 2470 23.03306 -6443.8888 0 -6206.6783 -1037.2926 + 2480 22.842772 -6441.2953 0 -6206.0445 -1030.4331 + 2490 22.911334 -6441.3197 0 -6205.3627 -1029.7119 + 2500 23.153003 -6443.2121 0 -6204.7663 -1033.9009 + 2510 23.302474 -6444.2371 0 -6204.252 -1036.5887 + 2520 23.252259 -6443.2208 0 -6203.7528 -1034.4441 + 2530 23.053919 -6440.6493 0 -6203.2239 -1028.2518 + 2540 22.849407 -6437.9368 0 -6202.6177 -1021.2949 + 2550 22.71295 -6435.8556 0 -6201.9418 -1015.6613 + 2560 22.715354 -6435.146 0 -6201.2074 -1013.3958 + 2570 22.864096 -6435.9504 0 -6200.48 -1015.1761 + 2580 23.14749 -6438.1503 0 -6199.7612 -1020.6574 + 2590 23.497133 -6441.031 0 -6199.0411 -1027.6059 + 2600 23.697975 -6442.4482 0 -6198.3899 -1030.8199 + 2610 23.740349 -6442.2782 0 -6197.7835 -1030.0732 + 2620 23.75572 -6441.8591 0 -6197.206 -1028.6315 + 2630 23.699131 -6440.7117 0 -6196.6415 -1025.8508 + 2640 23.5571 -6438.6417 0 -6196.0342 -1021.2352 + 2650 23.389543 -6436.2703 0 -6195.3884 -1015.7993 + 2660 23.267974 -6434.3342 0 -6194.7043 -1011.0616 + 2670 23.287404 -6433.8493 0 -6194.0194 -1009.2211 + 2680 23.400854 -6434.3704 0 -6193.372 -1009.3078 + 2690 23.416634 -6433.8866 0 -6192.7257 -1007.2707 + 2700 23.427232 -6433.3541 0 -6192.0841 -1005.4693 + 2710 23.635545 -6434.8406 0 -6191.4252 -1008.7624 + 2720 24.010565 -6438.1027 0 -6190.8251 -1016.3862 + 2730 24.23397 -6439.8767 0 -6190.2984 -1020.4547 + 2740 24.078692 -6437.7148 0 -6189.7356 -1015.0876 + 2750 23.670633 -6432.8931 0 -6189.1164 -1003.3684 + 2760 23.373655 -6429.1855 0 -6188.4673 -994.51945 + 2770 23.482791 -6429.5982 0 -6187.756 -995.83147 + 2780 23.872126 -6432.9614 0 -6187.1096 -1004.3236 + 2790 24.162 -6435.438 0 -6186.6008 -1010.2907 + 2800 24.108594 -6434.4173 0 -6186.1301 -1007.1844 + 2810 23.814401 -6430.8633 0 -6185.606 -997.59405 + 2820 23.671042 -6428.7616 0 -6184.9807 -991.50142 + 2830 23.904253 -6430.4417 0 -6184.259 -994.88526 + 2840 24.222253 -6433.0419 0 -6183.5843 -1001.3792 + 2850 24.366623 -6433.9188 0 -6182.9743 -1004.2837 + 2860 24.357528 -6433.2663 0 -6182.4155 -1003.1189 + 2870 24.267904 -6431.8546 0 -6181.9268 -999.3335 + 2880 24.1373 -6429.9704 0 -6181.3876 -994.19805 + 2890 24.088236 -6428.8913 0 -6180.8138 -991.20406 + 2900 24.237479 -6429.859 0 -6180.2445 -993.58209 + 2910 24.537221 -6432.4491 0 -6179.7477 -1000.1557 + 2920 24.725978 -6433.9593 0 -6179.3139 -1004.2865 + 2930 24.666397 -6432.9221 0 -6178.8903 -1002.0287 + 2940 24.431333 -6430.0101 0 -6178.3992 -994.8963 + 2950 24.205387 -6427.1163 0 -6177.8323 -987.58777 + 2960 24.165998 -6426.0758 0 -6177.1974 -984.54957 + 2970 24.304869 -6426.8576 0 -6176.5491 -985.75023 + 2980 24.507852 -6428.3077 0 -6175.9087 -988.49496 + 2990 24.71811 -6429.8823 0 -6175.3179 -991.35348 + 3000 24.795515 -6430.196 0 -6174.8344 -991.38382 + 3010 24.684857 -6428.5861 0 -6174.3641 -987.38566 + 3020 24.566106 -6426.8412 0 -6173.8422 -983.14118 + 3030 24.5132 -6425.7553 0 -6173.3012 -980.29245 + 3040 24.445354 -6424.4783 0 -6172.7229 -977.31599 + 3050 24.449132 -6423.8964 0 -6172.1021 -976.31361 + 3060 24.574974 -6424.5399 0 -6171.4496 -978.26691 + 3070 24.694342 -6425.1325 0 -6170.8129 -979.70901 + 3080 24.649447 -6424.071 0 -6170.2138 -976.60226 + 3090 24.476494 -6421.6191 0 -6169.5431 -970.00913 + 3100 24.513281 -6421.3556 0 -6168.9007 -968.37295 + 3110 24.821876 -6423.9501 0 -6168.3171 -973.82404 + 3120 25.101656 -6426.3352 0 -6167.8208 -979.74497 + 3130 25.270758 -6427.6016 0 -6167.3457 -983.50283 + 3140 25.403423 -6428.5364 0 -6166.9142 -985.98587 + 3150 25.397638 -6428.0315 0 -6166.4689 -984.51906 + 3160 25.128712 -6424.8064 0 -6166.0133 -976.55331 + 3170 24.797216 -6420.8279 0 -6165.4489 -967.18014 + 3180 24.861755 -6420.8636 0 -6164.8199 -966.99651 + 3190 25.218012 -6423.92 0 -6164.2073 -973.58189 + 3200 25.337601 -6424.6054 0 -6163.6611 -974.78523 + 3210 25.107309 -6421.6886 0 -6163.1159 -967.83802 + 3220 24.898576 -6418.9494 0 -6162.5265 -961.26736 + 3230 24.956173 -6418.9898 0 -6161.9737 -960.87585 + 3240 25.076431 -6419.7207 0 -6161.4661 -962.14002 + 3250 25.08389 -6419.2993 0 -6160.9679 -960.88619 + 3260 25.079853 -6418.7103 0 -6160.4205 -959.28426 + 3270 25.215389 -6419.4987 0 -6159.813 -961.04963 + 3280 25.54459 -6422.342 0 -6159.2659 -967.73074 + 3290 25.87554 -6425.2881 0 -6158.8037 -974.74344 + 3300 25.903164 -6425.1578 0 -6158.3889 -974.55815 + 3310 25.680487 -6422.4196 0 -6157.944 -967.79715 + 3320 25.436459 -6419.4634 0 -6157.501 -959.93171 + 3330 25.271552 -6417.219 0 -6156.955 -953.99906 + 3340 25.346444 -6417.3919 0 -6156.3565 -954.0175 + 3350 25.587077 -6419.3 0 -6155.7864 -958.22206 + 3360 25.695996 -6419.8737 0 -6155.2383 -959.6718 + 3370 25.720883 -6419.6273 0 -6154.7357 -959.2484 + 3380 25.879074 -6420.7997 0 -6154.2789 -961.83955 + 3390 26.036918 -6421.9789 0 -6153.8325 -964.45572 + 3400 25.948629 -6420.6132 0 -6153.3761 -961.19626 + 3410 25.603577 -6416.4955 0 -6152.812 -951.49936 + 3420 25.277837 -6412.527 0 -6152.1982 -941.89472 + 3430 25.230926 -6411.4805 0 -6151.6348 -938.85197 + 3440 25.407463 -6412.7782 0 -6151.1144 -941.42569 + 3450 25.617358 -6414.4021 0 -6150.5766 -944.96905 + 3460 25.786076 -6415.5599 0 -6149.9968 -947.32234 + 3470 25.922851 -6416.4053 0 -6149.4336 -949.06813 + 3480 26.119347 -6417.8636 0 -6148.8683 -952.68886 + 3490 26.218974 -6418.4654 0 -6148.4441 -954.69743 + 3500 26.049233 -6416.2679 0 -6147.9947 -950.18839 + 3510 25.693394 -6412.0535 0 -6147.445 -940.43261 + 3520 25.499588 -6409.4156 0 -6146.803 -933.41544 + 3530 25.586974 -6409.6226 0 -6146.11 -932.74156 + 3540 25.860392 -6411.7931 0 -6145.4647 -937.15348 + 3550 26.188484 -6414.6069 0 -6144.8996 -943.87737 + 3560 26.461464 -6416.9396 0 -6144.421 -949.90349 + 3570 26.589315 -6417.8021 0 -6143.9668 -952.4457 + 3580 26.56993 -6417.1574 0 -6143.5217 -950.92142 + 3590 26.455909 -6415.5203 0 -6143.0589 -946.16358 + 3600 26.152282 -6411.8875 0 -6142.5531 -936.37401 + 3610 25.775567 -6407.352 0 -6141.8973 -924.87198 + 3620 25.668894 -6405.556 0 -6141.1997 -920.34854 + 3630 25.978149 -6408.0811 0 -6140.5399 -926.56734 + 3640 26.564553 -6413.4864 0 -6139.9061 -939.48639 + 3650 26.909124 -6416.5404 0 -6139.4115 -946.37805 + 3660 26.724717 -6414.1574 0 -6138.9276 -940.42555 + 3670 26.422189 -6410.5082 0 -6138.394 -931.50617 + 3680 26.398635 -6409.7042 0 -6137.8326 -929.4103 + 3690 26.570748 -6410.9307 0 -6137.2866 -932.34441 + 3700 26.651417 -6411.2063 0 -6136.7314 -933.36511 + 3710 26.589807 -6410.0585 0 -6136.2181 -931.02997 + 3720 26.533858 -6408.9543 0 -6135.6901 -928.38574 + 3730 26.50668 -6408.1736 0 -6135.1892 -925.86436 + 3740 26.46159 -6407.1775 0 -6134.6575 -922.39462 + 3750 26.396595 -6405.9681 0 -6134.1175 -918.45094 + 3760 26.440196 -6405.8064 0 -6133.5068 -917.56053 + 3770 26.743112 -6408.2451 0 -6132.8259 -923.15375 + 3780 27.038748 -6410.6332 0 -6132.1693 -928.92314 + 3790 27.002397 -6409.6317 0 -6131.5421 -927.11925 + 3800 26.812667 -6407.1061 0 -6130.9705 -921.57646 + 3810 26.751391 -6405.9331 0 -6130.4286 -918.81768 + 3820 26.79566 -6405.8688 0 -6129.9083 -918.41904 + 3830 26.818814 -6405.6095 0 -6129.4106 -917.33046 + 3840 26.779516 -6404.6176 0 -6128.8234 -914.63692 + 3850 26.811121 -6404.3106 0 -6128.1909 -913.56294 + 3860 26.8958 -6404.519 0 -6127.5273 -913.78855 + 3870 26.921326 -6404.1181 0 -6126.8635 -912.87443 + 3880 27.099964 -6405.3939 0 -6126.2995 -915.28328 + 3890 27.27787 -6406.7453 0 -6125.8188 -917.59696 + 3900 27.219648 -6405.6017 0 -6125.2748 -914.50763 + 3910 27.105833 -6403.8204 0 -6124.6656 -910.07587 + 3920 27.116709 -6403.2885 0 -6124.0216 -908.42333 + 3930 27.081527 -6402.2517 0 -6123.3472 -905.89446 + 3940 26.932756 -6400.0687 0 -6122.6964 -901.1286 + 3950 26.930705 -6399.4167 0 -6122.0655 -899.88995 + 3960 27.236836 -6401.9835 0 -6121.4795 -905.52465 + 3970 27.502217 -6404.206 0 -6120.969 -910.18191 + 3980 27.430879 -6402.9045 0 -6120.4021 -907.21813 + 3990 27.280358 -6400.7263 0 -6119.7741 -902.29762 + 4000 27.27069 -6399.9508 0 -6119.0981 -900.12014 +Loop time of 344.483 on 1 procs for 4000 steps with 3456 atoms + +Pair time (%) = 115.899 (33.6442) +Neigh time (%) = 49.9152 (14.4899) +Comm time (%) = 1.06949 (0.310462) +Outpt time (%) = 0.0676758 (0.0196456) +Other time (%) = 177.532 (51.5358) + +Nlocal: 3456 ave 3456 max 3456 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 12768 ave 12768 max 12768 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 1.0891e+06 ave 1.0891e+06 max 1.0891e+06 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 2.1782e+06 ave 2.1782e+06 max 2.1782e+06 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 2178196 +Ave neighs/atom = 630.265 +Neighbor list builds = 400 +Dangerous builds = 0 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/gaussianIC_ttm.log lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/gaussianIC_ttm.log --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/gaussianIC_ttm.log 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/gaussianIC_ttm.log 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,168 @@ +LAMMPS (7 Jul 2009) +#AtC Two temperature Coupling +# DESCRIPTION: +# full overlap of MD and FE regions w/ free ends & lateral periodic bcs +# initial gaussian electron temperature profile and uniform phonon temperature +# results in fast exchange followed by slower diffusion and finally relaxation +# to equilibrium +# +echo both +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, +# where N = 4 for fcc, +# s = 3.405 A (Wagner) +# a = 5.25 A (Ashcroft & Mermin, p. 70) +# to create restart : +# write_restart temp.bin +# then : restart2data temp.bin temp.init +#if {restart} +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init + orthogonal box = (-64.86 -16.215 -16.215) to (64.86 16.215 16.215) + 1 by 1 by 1 processor grid + 3456 atoms + 3456 velocities +#endif + +lattice fcc 5.405 origin 0.25 0.25 0.25 +Lattice spacing in x,y,z = 5.405 5.405 5.405 +region feRegion block -10 10 -3 3 -3 3 +region mdRegion block -12 12 -3 3 -3 3 +region mdInternal block -10 10 -3 3 -3 3 + + +# create atoms, NOTE commented out for restart +#if !{restart} +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 +#pair_style lj/cut 13.5 +#pair_coeff 1 1 .238 3.405 13.5 +#velocity internal create 40 87287 mom yes loop geom +#endif + +# specify interal/ghost atoms +group internal region mdInternal +2880 atoms in group internal +# do not define ghosts if outside fe region +#group ghost subtract all internal + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc two_temperature Ar_ttm.mat + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 10 1 1 feRegion f p p + +# specify atom types +#fix_modify AtC transfer internal type internal + +# fix a temperature +fix_modify AtC transfer fix temperature all 20.0 +fix_modify AtC transfer initial temperature all 20.0 +fix_modify AtC transfer initial electron_temperature all gaussian 0 0 0 1 0 0 5 20 20 +fix_modify AtC transfer fix electron_temperature all gaussian 0 0 0 1 0 0 5 20 20 + + +# turn on thermostat +fix_modify AtC extrinsic exchange off +fix_modify AtC transfer thermal control rescale 10 + +# equilibrate MD field +timestep 5.0 +#timestep 0.1 +thermo 10 +#if !{restart} +#run 1000 +#endif + +# write restart file (for atoms) +#if !{restart} +#write_restart gaussianT0.dat +#endif + +#output +fix_modify AtC transfer output gaussianIC_ttmFE 10 text + +# change thermostat +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer unfix electron_temperature all +fix_modify AtC transfer thermal control flux +fix_modify AtC extrinsic exchange on +fix_modify AtC extrinsic electron_integration explicit 10 + +# run with FE +thermo_style custom step temp pe f_AtC[2] f_AtC[4] +reset_timestep 0 +run 400 +Memory usage per processor = 20.4457 Mbytes +Step Temp PotEng AtC[2] AtC[4] + 0 16.671491 -6505.7593 20 21.852118 + 10 16.677475 -6505.5427 20.002541 21.837728 + 20 16.576352 -6504.1927 19.867309 21.822847 + 30 16.543006 -6503.5347 19.829679 21.807329 + 40 16.606315 -6503.9098 19.948237 21.79227 + 50 16.657241 -6504.1495 20.063768 21.77819 + 60 16.632334 -6503.6282 20.043346 21.764516 + 70 16.575817 -6502.7756 19.922594 21.750359 + 80 16.582959 -6502.556 19.854482 21.735666 + 90 16.619481 -6502.6709 19.843443 21.720989 + 100 16.61416 -6502.3553 19.823604 21.706411 + 110 16.63 -6502.2515 19.868881 21.692096 + 120 16.693117 -6502.6546 19.982758 21.67865 + 130 16.690721 -6502.395 19.998489 21.665851 + 140 16.614049 -6501.3546 19.912824 21.652674 + 150 16.61038 -6501.0505 19.922441 21.639146 + 160 16.722799 -6501.9758 20.079964 21.626427 + 170 16.770602 -6502.2509 20.17121 21.614856 + 180 16.650892 -6500.7765 20.054544 21.603105 + 190 16.541447 -6499.381 19.906876 21.590204 + 200 16.645228 -6500.2039 19.964842 21.577132 + 210 16.869527 -6502.3001 20.162483 21.565509 + 220 16.964383 -6503.0601 20.257183 21.55523 + 230 16.911611 -6502.3326 20.238311 21.545157 + 240 16.817036 -6501.1565 20.182711 21.534754 + 250 16.768709 -6500.4545 20.137714 21.524032 + 260 16.815288 -6500.7352 20.15617 21.51338 + 270 16.910049 -6501.5019 20.224357 21.50326 + 280 16.977499 -6502.0383 20.29341 21.493767 + 290 16.956659 -6501.6276 20.291231 21.484565 + 300 16.835262 -6500.213 20.164202 21.474772 + 310 16.71985 -6498.8264 20.004642 21.463806 + 320 16.69098 -6498.3213 19.932827 21.452076 + 330 16.761703 -6498.8528 20.012407 21.440668 + 340 16.868998 -6499.7478 20.16924 21.430476 + 350 16.984511 -6500.7709 20.340112 21.421697 + 360 17.123542 -6502.0546 20.527447 21.414404 + 370 17.196695 -6502.6994 20.623027 21.408269 + 380 17.078535 -6501.3567 20.479029 21.401788 + 390 16.82808 -6498.6218 20.180491 21.393274 + 400 16.644633 -6496.5257 19.969187 21.382648 +Loop time of 38.0403 on 1 procs for 400 steps with 3456 atoms + +Pair time (%) = 11.5723 (30.4211) +Neigh time (%) = 4.98386 (13.1015) +Comm time (%) = 0.111562 (0.293273) +Outpt time (%) = 0.00291038 (0.00765077) +Other time (%) = 21.3697 (56.1764) + +Nlocal: 3456 ave 3456 max 3456 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 12768 ave 12768 max 12768 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 1.09177e+06 ave 1.09177e+06 max 1.09177e+06 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 2.18354e+06 ave 2.18354e+06 max 2.18354e+06 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 2183544 +Ave neighs/atom = 631.812 +Neighbor list builds = 40 +Dangerous builds = 0 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.bar1d_ttm lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.bar1d_ttm --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.bar1d_ttm 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.bar1d_ttm 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,105 @@ +# in this example the electron temperature on the left is ramped up in time +# and held fixed on the right. the phonon temperature is free on the left +# and fixed and consistent with the electron temperature on the right. +# this mimics some simplified pumped system +# also a volume source is added to mimic Joule heating + +#echo both + +# units +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, +# where N = 4 for fcc, +# s = 3.405 A (Wagner) +# a = 5.25 A (Ashcroft & Mermin, p. 70) +#if {restart} +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init +#endif + +lattice fcc 5.405 origin 0.25 0.25 0.25 +region feRegion block -14 14 -3 3 -3 3 +region mdRegion block -12 12 -3 3 -3 3 +region mdInternal block -10 10 -3 3 -3 3 + +# NOTE: don't define ghosts if they are outside the feRegion +group internal region mdInternal +group ghost subtract all internal + +# create atoms +#if !{restart} +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 +#pair_style lj/cut 13.5 +#pair_coeff 1 1 .238 3.405 13.5 +#velocity internal create 40 87287 mom yes loop geom +#endif + +# timestep & neighboring +timestep 5.0 +thermo 10 +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc two_temperature Ar_ttm.mat + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 14 1 1 feRegion f p p + +# specify atom types for the atc fix +#fix_modify AtC transfer internal type internal +fix_modify AtC transfer boundary type ghost + +# fix initial temperatures +#if !{restart} +#velocity internal create 40 87287 mom yes loop geom +#endif +fix_modify AtC transfer initial temperature all 20 +fix_modify AtC transfer fix temperature all 20 +fix_modify AtC transfer initial electron_temperature all 20 +fix_modify AtC transfer fix electron_temperature all 20 + +# equilibrate MD field with rescale +fix_modify AtC extrinsic exchange off +fix_modify AtC transfer thermal control rescale 10 +#if !{restart} +#run 1000 +#endif + +# change thermostat +fix_modify AtC extrinsic exchange on +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer unfix electron_temperature all +# note does not handle "inf"s +#fix_modify AtC mesh create_faceset bndy -8 8 inf inf inf inf +fix_modify AtC mesh create_faceset bndy box -10 10 -10 10 -10 10 +fix_modify AtC transfer thermal control flux faceset bndy +# .. this controls the time filtering .... +#fix_modify AtC transfer filter scale 500.0 + +# add nodesets & boundary temperature controls +# ID mesh create_nodeset tag xmin xmax ymin ymax zmin zmax +# NOTE create_nodeset doesn't handle "inf" +fix_modify AtC mesh create_nodeset lbc -14.1 -13.9 -6 6 -6 6 +fix_modify AtC mesh create_nodeset rbc 13.9 14.1 -6 6 -6 6 +fix_modify AtC transfer fix electron_temperature lbc 40. +fix_modify AtC transfer fix electron_temperature rbc 20. +fix_modify AtC transfer fix temperature rbc 20. +#fix_modify AtC transfer source electron_temperature all 0.0015 +fix_modify AtC transfer source electron_temperature all 9.50445e-11 + + +# output filename frequency [text output] +fix_modify AtC transfer output bar1d_ttmFE 100 text + +# run transient to steady state +thermo 10 +reset_timestep 0 +run 4000 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.gaussianIC_ttm lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.gaussianIC_ttm --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.gaussianIC_ttm 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.gaussianIC_ttm 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,97 @@ +#AtC Two temperature Coupling +# DESCRIPTION: +# full overlap of MD and FE regions w/ free ends & lateral periodic bcs +# initial gaussian electron temperature profile and uniform phonon temperature +# results in fast exchange followed by slower diffusion and finally relaxation +# to equilibrium +# +echo both +units real +atom_style atomic + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, +# where N = 4 for fcc, +# s = 3.405 A (Wagner) +# a = 5.25 A (Ashcroft & Mermin, p. 70) +# to create restart : +# write_restart temp.bin +# then : restart2data temp.bin temp.init +#if {restart} +boundary f p p +pair_style lj/cut 13.5 +read_data temp.init +#endif + +lattice fcc 5.405 origin 0.25 0.25 0.25 +region feRegion block -10 10 -3 3 -3 3 +region mdRegion block -12 12 -3 3 -3 3 +region mdInternal block -10 10 -3 3 -3 3 + + +# create atoms, NOTE commented out for restart +#if !{restart} +#boundary f p p +#create_box 1 mdRegion +#create_atoms 1 region mdRegion +#mass 1 39.95 +#pair_style lj/cut 13.5 +#pair_coeff 1 1 .238 3.405 13.5 +#velocity internal create 40 87287 mom yes loop geom +#endif + +# specify interal/ghost atoms +group internal region mdInternal +# do not define ghosts if outside fe region +#group ghost subtract all internal + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc two_temperature Ar_ttm.mat + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 10 1 1 feRegion f p p + +# specify atom types +#fix_modify AtC transfer internal type internal + +# fix a temperature +fix_modify AtC transfer fix temperature all 20.0 +fix_modify AtC transfer initial temperature all 20.0 +fix_modify AtC transfer initial electron_temperature all gaussian 0 0 0 1 0 0 5 20 20 +fix_modify AtC transfer fix electron_temperature all gaussian 0 0 0 1 0 0 5 20 20 + + +# turn on thermostat +fix_modify AtC extrinsic exchange off +fix_modify AtC transfer thermal control rescale 10 + +# equilibrate MD field +timestep 5.0 +#timestep 0.1 +thermo 10 +#if !{restart} +#run 1000 +#endif + +# write restart file (for atoms) +#if !{restart} +#write_restart gaussianT0.dat +#endif + +#output +fix_modify AtC transfer output gaussianIC_ttmFE 10 text + +# change thermostat +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer unfix electron_temperature all +fix_modify AtC transfer thermal control flux +fix_modify AtC extrinsic exchange on +fix_modify AtC extrinsic electron_integration explicit 10 + +# run with FE +thermo_style custom step temp pe f_AtC[2] f_AtC[4] +reset_timestep 0 +run 400 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.no_atoms lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.no_atoms --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.no_atoms 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.no_atoms 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,57 @@ +#AtC Two temperature Coupling +# DESCRIPTION: +# no atoms and FE regions with periodic boundary conditions. +# heating and then relaxation + +echo both +#units real +units metal + +atom_style atomic + +lattice fcc 5.405 origin 0.25 0.25 0.25 +region simRegion block -14 14 -3 3 -3 3 +region feRegion block -12 12 -3 3 -3 3 + +# create atoms +region mdRegion block -12 12 -3 3 -3 3 +boundary f p p +create_box 1 mdRegion +mass 1 39.95 # need to keep this + +# ID group atc PhysicsType ParameterFile +fix AtC all atc two_temperature Cu_ttm.mat +timestep 0.002 +thermo 20 + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 12 1 1 feRegion f p p + +# fix a temperature +fix_modify AtC transfer initial temperature all 20.0 +#fix_modify AtC transfer initial electron_temperature all 30.0 +fix_modify AtC transfer initial electron_temperature all gaussian 0 0 0 1 0 0 5 20 20 + +# relaxation +thermo_style custom step cpu f_AtC[1] f_AtC[2] f_AtC[3] f_AtC[4] +fix_modify AtC transfer output no_atomsFE 10 text +#fix_modify AtC extrinsic electron_integration subcycle 100 +fix_modify AtC extrinsic electron_integration implicit +run 400 + +# heating +fix_modify AtC mesh create_nodeset lbc -12.1 -11.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 11.9 12.1 -12 12 -12 12 +fix_modify AtC transfer fix electron_temperature lbc 20. +fix_modify AtC transfer fix electron_temperature rbc 20. +#fix_modify AtC extrinsic exchange off +#fix_modify AtC transfer fix temperature lbc 20. +#fix_modify AtC transfer fix temperature rbc 20. +#fix_modify AtC extrinsic electron_integration lockstep +#fix_modify AtC transfer source electron_temperature all 1000.0 +fix_modify AtC transfer source electron_temperature all 0.521981 +run 400 + +# relaxation +fix_modify AtC transfer remove_source electron_temperature all +run 400 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_exchange lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_exchange --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_exchange 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_exchange 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,67 @@ +#AtC Two temperature Coupling +# DESCRIPTION: +# full overlap of MD and FE regions with full periodic boundary conditions. +# initial electron and phonon temperatures are different and then allowed to +# relax. +# + +units real +atom_style atomic +boundary p p p + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, +# where N = 4 for fcc, +# s = 3.405 A (Wagner) +# a = 5.25 A (Ashcroft & Mermin, p. 70) +lattice fcc 5.405 origin 0.25 0.25 0.25 + +pair_style lj/cut 13.5 + +read_data uniform_exchange_init.data + +region simRegion block -12 12 -3 3 -3 3 +region feRegion block -12 12 -3 3 -3 3 + +# create atoms +region mdRegion block -12 12 -3 3 -3 3 + +# specify interal/ghost atoms +region mdInternal block -12 12 -3 3 -3 3 +group internal region mdInternal + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc two_temperature Ar_ttm.mat + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 4 1 1 feRegion p p p + +# fix a temperature +fix_modify AtC transfer fix temperature all 20.0 +fix_modify AtC transfer fix electron_temperature all 30.0 + +timestep 5.0 + +# output +thermo_style custom step pe temp f_AtC[2] f_AtC[4] +thermo 10 + +# equilibrate MD field +fix_modify AtC transfer thermal control rescale 13 +run 500 + +# relax +fix_modify AtC transfer output uniform_exchangeFE 100 text +fix_modify AtC transfer atomic_output uniform_exchangeMD 10000 +fix_modify AtC transfer filter type exponential +fix_modify AtC transfer filter scale 5.0e2 +fix_modify AtC transfer filter on +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer unfix electron_temperature all +fix_modify AtC transfer thermal control flux + +# run with FE +run 5000 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_heating lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_heating --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_heating 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/in.uniform_heating 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,74 @@ +#AtC Thermal Coupling + +echo both +units real +atom_style atomic +boundary f p p + +# create domain +#lattice type reduced density rho* = 4*(sigma/a)^3, where N=4 for fcc, s = 3.405 A (Wagner) and a = 5.25 A (Ashcroft & Mermin, p. 70) + +pair_style lj/cut 13.5 + +read_data uniform_heating_init.data +lattice fcc 5.405 origin 0.25 0.25 0.25 + +region mdRegion block -8 8 -3 3 -3 3 +region mdInternal block -6 6 -3 3 -3 3 + +group internal region mdInternal + +neighbor 5. bin +neigh_modify every 10 delay 0 check no + +# ID group atc PhysicsType ParameterFile +fix AtC internal atc two_temperature Ar_ttm.mat + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 6 1 1 mdInternal f p p + +# specify atom types +#fix_modify AtC transfer internal type internal + +# fix a temperature +fix_modify AtC transfer initial temperature all 20. +fix_modify AtC transfer fix temperature all 20. +fix_modify AtC transfer initial electron_temperature all 20. +fix_modify AtC transfer fix electron_temperature all 20. + +# turn on thermostat +fix_modify AtC transfer thermal control rescale 10 + +# output +thermo_style custom step cpu pe etotal temp f_AtC[1] f_AtC[2] +thermo 100 +log uniform_heating.log + +# make thermo output the correct temperature by removing ghost dof +# variable xdof equal 3*count(ghost) +# compute_modify thermo_temp extra ${xdof} + +# equilibrate MD field +timestep 5 +run 400 + +# change thermostat +fix_modify AtC transfer output uniform_heatingFE 100 text +fix_modify AtC transfer unfix temperature all +fix_modify AtC transfer thermal control flux + +# fix boundary +fix_modify AtC mesh create_nodeset lbc -6.1 -5.9 -12 12 -12 12 +fix_modify AtC transfer fix temperature lbc 20. +fix_modify AtC mesh create_nodeset rbc 5.9 6.1 -12 12 -12 12 +fix_modify AtC transfer fix temperature rbc 20. + + +# add source +fix_modify AtC transfer internal_quadrature on +#fix_modify AtC transfer source temperature all 0.01 +fix_modify AtC transfer source temperature all 6.3363e-10 + +# run with FE +reset_timestep 0 +run 1000 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/no_atoms.log lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/no_atoms.log --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/no_atoms.log 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/no_atoms.log 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,190 @@ +LAMMPS (7 Jul 2009) +#AtC Two temperature Coupling +# DESCRIPTION: +# no atoms and FE regions with periodic boundary conditions. +# heating and then relaxation + +echo both +#units real +units metal + +atom_style atomic + +lattice fcc 5.405 origin 0.25 0.25 0.25 +Lattice spacing in x,y,z = 5.405 5.405 5.405 +region simRegion block -14 14 -3 3 -3 3 +region feRegion block -12 12 -3 3 -3 3 + +# create atoms +region mdRegion block -12 12 -3 3 -3 3 +boundary f p p +create_box 1 mdRegion +Created orthogonal box = (-64.86 -16.215 -16.215) to (64.86 16.215 16.215) + 1 by 1 by 1 processor grid +mass 1 39.95 # need to keep this + +# ID group atc PhysicsType ParameterFile +fix AtC all atc two_temperature Cu_ttm.mat +timestep 0.002 +thermo 20 + +# ID part keywords nx ny nz region +fix_modify AtC fem create mesh 12 1 1 feRegion f p p + +# fix a temperature +fix_modify AtC transfer initial temperature all 20.0 +#fix_modify AtC transfer initial electron_temperature all 30.0 +fix_modify AtC transfer initial electron_temperature all gaussian 0 0 0 1 0 0 5 20 20 + +# relaxation +thermo_style custom step cpu f_AtC[1] f_AtC[2] f_AtC[3] f_AtC[4] +fix_modify AtC transfer output no_atomsFE 10 text +#fix_modify AtC extrinsic electron_integration subcycle 100 +fix_modify AtC extrinsic electron_integration implicit +run 400 +Memory usage per processor = 0.412468 Mbytes +Step CPU AtC[1] AtC[2] AtC[3] AtC[4] + 0 0 59.94586 20 1.7847722 21.567177 + 20 0.46597385 59.95972 20.00454 1.770575 21.52456 + 40 0.93160486 59.97247 20.008795 1.7578608 21.370605 + 60 1.368351 59.983888 20.012606 1.7464745 21.232182 + 80 1.8008358 59.994113 20.016019 1.7362775 21.108216 + 100 2.2340729 60.00327 20.019076 1.7271457 20.997198 + 120 2.667372 60.01147 20.021814 1.7189676 20.897776 + 140 3.101615 60.018815 20.024266 1.7116438 20.808739 + 160 3.5347569 60.025391 20.026462 1.7050849 20.729002 + 180 3.9713268 60.031281 20.028429 1.6992111 20.657594 + 200 4.4060199 60.036556 20.030191 1.6939509 20.593644 + 220 4.8383729 60.04128 20.031768 1.6892401 20.536374 + 240 5.2700989 60.045511 20.033181 1.6850213 20.485086 + 260 5.702713 60.049299 20.034447 1.6812432 20.439154 + 280 6.1313 60.052692 20.035581 1.6778597 20.398021 + 300 6.552902 60.05573 20.036596 1.6748297 20.361184 + 320 6.978493 60.058451 20.037506 1.6721161 20.328194 + 340 7.3976619 60.060888 20.03832 1.6696859 20.298651 + 360 7.817637 60.063071 20.03905 1.6675096 20.272193 + 380 8.227901 60.065025 20.039703 1.6655606 20.248499 + 400 8.6359458 60.066775 20.040289 1.6638152 20.227279 +Loop time of 8.63894 on 1 procs for 400 steps with 0 atoms + +Pair time (%) = 0 (0) +Neigh time (%) = 0 (0) +Comm time (%) = 0.000214577 (0.00248383) +Outpt time (%) = 0.0595214 (0.68899) +Other time (%) = 8.5792 (99.3085) + +Nlocal: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Neighbor list builds = 0 +Dangerous builds = 0 + +# heating +fix_modify AtC mesh create_nodeset lbc -12.1 -11.9 -12 12 -12 12 +fix_modify AtC mesh create_nodeset rbc 11.9 12.1 -12 12 -12 12 +fix_modify AtC transfer fix electron_temperature lbc 20. +fix_modify AtC transfer fix electron_temperature rbc 20. +#fix_modify AtC extrinsic exchange off +#fix_modify AtC transfer fix temperature lbc 20. +#fix_modify AtC transfer fix temperature rbc 20. +#fix_modify AtC extrinsic electron_integration lockstep +#fix_modify AtC transfer source electron_temperature all 1000.0 +fix_modify AtC transfer source electron_temperature all 0.521981 +run 400 +Memory usage per processor = 0.412468 Mbytes +Step CPU AtC[1] AtC[2] AtC[3] AtC[4] + 400 0 60.066775 20.040289 1.6638152 20.227279 + 420 0.46465707 60.074057 20.042563 1.7526734 21.206964 + 440 0.93380594 60.08642 20.046435 1.7697616 21.398727 + 460 1.4028659 60.099602 20.050578 1.7726213 21.43082 + 480 1.872489 60.112889 20.054768 1.7731138 21.436346 + 500 2.341527 60.126162 20.058968 1.7732124 21.437452 + 520 2.8146279 60.139402 20.063168 1.7732452 21.437821 + 540 3.2863479 60.152606 20.067367 1.773267 21.438066 + 560 3.7559209 60.165773 20.071564 1.7732869 21.438289 + 580 4.2253721 60.178904 20.075757 1.7733063 21.438507 + 600 4.696142 60.191997 20.079946 1.7733256 21.438723 + 620 5.164628 60.205055 20.084131 1.7733447 21.438937 + 640 5.633961 60.218075 20.08831 1.7733637 21.43915 + 660 6.1026099 60.23106 20.092484 1.7733825 21.439362 + 680 6.5716951 60.244008 20.096653 1.7734013 21.439572 + 700 7.0413561 60.256919 20.100815 1.7734199 21.439781 + 720 7.5101869 60.269795 20.10497 1.7734384 21.439989 + 740 7.9797149 60.282635 20.109119 1.7734568 21.440195 + 760 8.4487319 60.295439 20.11326 1.7734751 21.4404 + 780 8.9184639 60.308207 20.117395 1.7734932 21.440604 + 800 9.3883049 60.320939 20.121522 1.7735113 21.440807 +Loop time of 9.39129 on 1 procs for 400 steps with 0 atoms + +Pair time (%) = 0 (0) +Neigh time (%) = 0 (0) +Comm time (%) = 0.000202179 (0.00215284) +Outpt time (%) = 0.0597332 (0.636049) +Other time (%) = 9.33135 (99.3618) + +Nlocal: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Neighbor list builds = 0 +Dangerous builds = 0 + +# relaxation +fix_modify AtC transfer remove_source electron_temperature all +run 400 +Memory usage per processor = 0.412468 Mbytes +Step CPU AtC[1] AtC[2] AtC[3] AtC[4] + 800 0 60.320939 20.121522 1.7735113 21.440807 + 820 0.46552801 60.326208 20.123317 1.6666305 20.24139 + 840 0.93443298 60.326191 20.123452 1.6491438 20.045155 + 860 1.4037609 60.325301 20.123302 1.6462322 20.012481 + 880 1.87309 60.324267 20.123096 1.6457454 20.007018 + 900 2.341542 60.323212 20.122873 1.6456621 20.006083 + 920 2.810395 60.322156 20.122641 1.6456459 20.005902 + 940 3.279598 60.321102 20.122402 1.645641 20.005846 + 960 3.7478158 60.320051 20.122158 1.645638 20.005813 + 980 4.21626 60.319003 20.121908 1.6456354 20.005783 + 1000 4.6847739 60.317957 20.121654 1.6456328 20.005754 + 1020 5.1538019 60.316914 20.121396 1.6456303 20.005726 + 1040 5.622643 60.315874 20.121135 1.6456279 20.005699 + 1060 6.0918579 60.314837 20.120871 1.6456255 20.005672 + 1080 6.561069 60.313803 20.120603 1.6456231 20.005645 + 1100 7.0291269 60.312771 20.120334 1.6456208 20.005619 + 1120 7.497472 60.311742 20.120061 1.6456185 20.005593 + 1140 7.9661739 60.310716 20.119787 1.6456162 20.005568 + 1160 8.4346058 60.309693 20.119511 1.645614 20.005543 + 1180 8.9034901 60.308673 20.119234 1.6456118 20.005519 + 1200 9.373548 60.307655 20.118954 1.6456097 20.005495 +Loop time of 9.37655 on 1 procs for 400 steps with 0 atoms + +Pair time (%) = 0 (0) +Neigh time (%) = 0 (0) +Comm time (%) = 0.000205755 (0.00219436) +Outpt time (%) = 0.0598149 (0.637921) +Other time (%) = 9.31653 (99.3599) + +Nlocal: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Neighbor list builds = 0 +Dangerous builds = 0 diff -Naur lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/temp.init lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/temp.init --- lammps-22Sep09/examples/USER/atc/bar1d_two_temperature/temp.init 1969-12-31 17:00:00.000000000 -0700 +++ lammps-24Sep09/examples/USER/atc/bar1d_two_temperature/temp.init 2009-09-24 10:32:26.000000000 -0600 @@ -0,0 +1,6935 @@ +LAMMPS data file from restart file: timestep = 1000, procs = 1 + +3456 atoms + +1 atom types + +-64.86 64.86 xlo xhi +-16.215 16.215 ylo yhi +-16.215 16.215 zlo zhi + +Masses + +1 39.95 + +Pair Coeffs + +1 0.238 3.405 + +Atoms + +1 1 -63.50875 -14.86375 -14.86375 0 0 0 +2 1 -60.80625 -12.16125 -14.86375 0 0 0 +3 1 -60.80625 -14.86375 -12.16125 0 0 0 +4 1 -63.50875 -12.16125 -12.16125 0 0 0 +5 1 -58.10375 -14.86375 -14.86375 0 0 0 +6 1 -55.40125 -12.16125 -14.86375 0 0 0 +7 1 -55.40125 -14.86375 -12.16125 0 0 0 +8 1 -58.10375 -12.16125 -12.16125 0 0 0 +9 1 -52.6882431683 -15.0292653969 -14.7711101576 0 0 0 +10 1 -49.9859690738 -12.2194498013 -15.066569253 0 0 0 +11 1 -49.9058690551 -14.8616600117 -12.225677753 0 0 0 +12 1 -52.7982268173 -12.2365163158 -12.3645268929 0 0 0 +13 1 -47.2789541291 -14.8350100098 -14.8793942736 0 0 0 +14 1 -44.6161936991 -12.2584517831 -15.1730980713 0 0 0 +15 1 -44.7566429615 -14.7064765091 -12.2408008559 0 0 0 +16 1 -47.436748302 -12.1928693727 -12.3161348556 0 0 0 +17 1 -41.9941398421 -14.9055716027 -14.8019423823 0 0 0 +18 1 -39.552902088 -11.9696227637 -14.882687326 0 0 0 +19 1 -39.2963451816 -14.7809978795 -12.0679138476 0 0 0 +20 1 -42.1075911365 -12.3614167156 -11.9824983107 0 0 0 +21 1 -36.6599909481 -14.6859201893 -14.9229927117 0 0 0 +22 1 -33.8548039224 -12.4439159769 -14.9776806264 0 0 0 +23 1 -33.9818236349 -15.0024566739 -12.0774927125 0 0 0 +24 1 -36.6776916297 -12.2919900539 -11.9714480675 0 0 0 +25 1 -31.176047451 -14.9579853413 -14.9411383004 0 0 0 +26 1 -28.3279983628 -12.224182297 -15.1018513778 0 0 0 +27 1 -28.3709052996 -14.8500854137 -12.3553247994 0 0 0 +28 1 -31.3016422878 -12.3980239187 -12.1929255382 0 0 0 +29 1 -25.6390397761 -14.9941940637 -15.0811539273 0 0 0 +30 1 -23.1221810152 -12.1162707805 -14.995512818 0 0 0 +31 1 -23.0516135261 -14.9313023779 -12.2215833531 0 0 0 +32 1 -25.5633374974 -12.0824738284 -12.2428110047 0 0 0 +33 1 -20.2477636679 -14.8135045948 -15.1878559553 0 0 0 +34 1 -17.428471 -12.1677669269 -15.0511210833 0 0 0 +35 1 -17.4724383098 -14.9562465835 -12.4008012653 0 0 0 +36 1 -20.2613586415 -12.1444568697 -12.5541704265 0 0 0 +37 1 -14.849713087 -15.0276330368 -15.0152979285 0 0 0 +38 1 -11.9998892944 -12.297984413 -15.1773718883 0 0 0 +39 1 -12.092274515 -14.9332495513 -12.4313549179 0 0 0 +40 1 -14.9475468327 -12.4149838871 -12.3273421642 0 0 0 +41 1 -9.5498900617 -14.9528990896 -14.8550217233 0 0 0 +42 1 -6.90713087905 -12.0715363437 -15.0758851025 0 0 0 +43 1 -6.94146528284 -14.8797779019 -12.3547569533 0 0 0 +44 1 -9.58377282472 -12.2556196002 -12.1730747738 0 0 0 +45 1 -4.14133195741 -14.7325008801 -15.1129528486 0 0 0 +46 1 -1.28082069762 -12.3303633554 -14.9041421352 0 0 0 +47 1 -1.4551916541 -14.7815629449 -12.0288433203 0 0 0 +48 1 -4.14421092669 -11.9574375857 -12.4614036795 0 0 0 +49 1 1.33497202193 -14.9806266648 -15.0123181012 0 0 0 +50 1 4.13148259067 -12.2865627528 -14.9314453953 0 0 0 +51 1 4.01159182414 -14.9867466724 -12.3448907236 0 0 0 +52 1 1.40016491184 -12.4790773874 -12.3570185331 0 0 0 +53 1 6.70901582244 -14.7970439402 -14.8122619149 0 0 0 +54 1 9.48595342681 -12.3008265816 -14.9894469435 0 0 0 +55 1 9.32356514192 -14.8609673701 -12.3199712775 0 0 0 +56 1 6.77252296315 -12.0345964188 -12.2496837977 0 0 0 +57 1 12.3206297417 -15.0444305358 -14.9848153417 0 0 0 +58 1 15.0602229179 -12.2208198781 -15.0115434051 0 0 0 +59 1 15.0025647762 -14.7998931953 -12.3299110238 0 0 0 +60 1 12.1734639441 -12.2331441583 -12.3946362528 0 0 0 +61 1 17.7573138628 -15.0802123617 -15.0980416148 0 0 0 +62 1 20.4336730024 -12.3867722245 -14.8566846055 0 0 0 +63 1 20.3648138682 -14.921271059 -12.2454267144 0 0 0 +64 1 17.8192710401 -12.370519942 -12.2193467619 0 0 0 +65 1 23.053815233 -15.113878626 -14.9605596962 0 0 0 +66 1 25.7655247635 -12.2724970174 -14.8186117536 0 0 0 +67 1 25.6935094399 -14.8989043964 -12.0651986649 0 0 0 +68 1 23.1110532104 -12.2321182964 -12.1920394322 0 0 0 +69 1 28.3807819537 -14.8217032377 -14.8854767323 0 0 0 +70 1 31.2388953622 -12.4977435011 -15.1845687041 0 0 0 +71 1 31.4015037854 -14.9759427603 -12.3059886658 0 0 0 +72 1 28.4884182157 -12.2188057793 -12.2482702417 0 0 0 +73 1 33.9639361618 -15.0994329557 -14.9585569285 0 0 0 +74 1 36.3499166236 -12.1620421532 -15.1793085145 0 0 0 +75 1 36.4979855854 -15.2292470756 -12.1554559001 0 0 0 +76 1 34.1015266121 -12.2675754794 -12.3842590248 0 0 0 +77 1 39.2868558973 -15.0214949528 -14.744030989 0 0 0 +78 1 41.6496971091 -12.1644399225 -15.0397621687 0 0 0 +79 1 41.9764711045 -14.5271124915 -12.2962617684 0 0 0 +80 1 38.9902306353 -12.1504698335 -12.2840840223 0 0 0 +81 1 44.7018171481 -14.4670354557 -15.1340435397 0 0 0 +82 1 47.5442621314 -12.0220711127 -14.9599232311 0 0 0 +83 1 47.4646962644 -14.8564644004 -12.3544721269 0 0 0 +84 1 44.5208876972 -11.9510563651 -12.3210700168 0 0 0 +85 1 50.1225886408 -14.7974100036 -14.9995519196 0 0 0 +86 1 52.8495925768 -12.2395428389 -14.7374191827 0 0 0 +87 1 52.6655284736 -14.9918447334 -12.2244904165 0 0 0 +88 1 49.9143079405 -12.1584605131 -12.1635477782 0 0 0 +89 1 55.40125 -14.86375 -14.86375 0 0 0 +90 1 58.10375 -12.16125 -14.86375 0 0 0 +91 1 58.10375 -14.86375 -12.16125 0 0 0 +92 1 55.40125 -12.16125 -12.16125 0 0 0 +93 1 60.80625 -14.86375 -14.86375 0 0 0 +94 1 63.50875 -12.16125 -14.86375 0 0 0 +95 1 63.50875 -14.86375 -12.16125 0 0 0 +96 1 60.80625 -12.16125 -12.16125 0 0 0 +97 1 -63.50875 -9.45875 -14.86375 0 0 0 +98 1 -60.80625 -6.75625 -14.86375 0 0 0 +99 1 -60.80625 -9.45875 -12.16125 0 0 0 +100 1 -63.50875 -6.75625 -12.16125 0 0 0 +101 1 -58.10375 -9.45875 -14.86375 0 0 0 +102 1 -55.40125 -6.75625 -14.86375 0 0 0 +103 1 -55.40125 -9.45875 -12.16125 0 0 0 +104 1 -58.10375 -6.75625 -12.16125 0 0 0 +105 1 -52.708732172 -9.54502879843 -14.9933713296 0 0 0 +106 1 -49.9586408245 -6.86740297339 -14.9623297945 0 0 0 +107 1 -50.1021912778 -9.6265265848 -12.1340020246 0 0 0 +108 1 -52.8226182744 -6.86755646141 -12.1180149807 0 0 0 +109 1 -47.3483275527 -9.61960912956 -15.059628301 0 0 0 +110 1 -44.8449781269 -6.74921458768 -14.9439827279 0 0 0 +111 1 -44.8666968558 -9.6088072765 -12.2983180503 0 0 0 +112 1 -47.3762292302 -6.77066671103 -12.0619200174 0 0 0 +113 1 -42.1700117604 -9.41768664705 -14.8122551284 0 0 0 +114 1 -39.3541012543 -6.75757840452 -15.0466724304 0 0 0 +115 1 -39.5565437067 -9.56341702927 -12.1630060736 0 0 0 +116 1 -42.296758707 -6.76513683569 -12.196880532 0 0 0 +117 1 -36.6404551776 -9.53429111552 -14.875536566 0 0 0 +118 1 -33.8863979335 -7.19365732636 -14.9482094182 0 0 0 +119 1 -33.8098409335 -9.56531365313 -12.3103164515 0 0 0 +120 1 -37.0438956185 -6.90070371603 -12.3257915984 0 0 0 +121 1 -31.1555830372 -9.77817130452 -14.9741008675 0 0 0 +122 1 -28.4760371551 -6.9102593272 -15.0383622891 0 0 0 +123 1 -28.439072951 -9.40232608456 -12.3138999249 0 0 0 +124 1 -31.2173971126 -6.7109323447 -12.3031970881 0 0 0 +125 1 -25.6576617672 -9.5445888664 -15.0061200883 0 0 0 +126 1 -23.1922679936 -6.82970533685 -15.0904287057 0 0 0 +127 1 -23.0607927014 -9.3488605537 -12.1943639381 0 0 0 +128 1 -25.7044031802 -6.88144516419 -12.320873576 0 0 0 +129 1 -20.4260105061 -9.58980106445 -15.1124215299 0 0 0 +130 1 -17.8710167849 -6.89791214147 -14.8196699339 0 0 0 +131 1 -17.6669067397 -9.66896957065 -12.2032741178 0 0 0 +132 1 -20.4651312981 -6.89138495389 -12.4036663327 0 0 0 +133 1 -14.7762808738 -9.62045045323 -14.9524686313 0 0 0 +134 1 -12.2516048141 -6.77450940491 -15.0944008876 0 0 0 +135 1 -12.1640826137 -9.5281706868 -12.2766177842 0 0 0 +136 1 -15.0171414701 -6.79009556282 -12.1920667103 0 0 0 +137 1 -9.40362035622 -9.48364412423 -15.0417447023 0 0 0 +138 1 -6.94750115651 -6.66974754097 -15.0273466591 0 0 0 +139 1 -6.94215079061 -9.54426814381 -12.348246843 0 0 0 +140 1 -9.58939088619 -6.75027937756 -12.305217677 0 0 0 +141 1 -4.12884196188 -9.36315821404 -15.0753744261 0 0 0 +142 1 -1.30065868623 -6.75492282709 -15.1116164334 0 0 0 +143 1 -1.29796249354 -9.60124070716 -12.3749209236 0 0 0 +144 1 -4.18491716382 -6.73753956855 -12.3262607751 0 0 0 +145 1 1.35164200619 -9.69415167247 -15.0308156629 0 0 0 +146 1 3.90538848162 -6.94454413123 -14.8654216273 0 0 0 +147 1 4.02878659881 -9.57890403064 -12.3315147694 0 0 0 +148 1 1.32091812283 -6.84682885025 -12.0135377308 0 0 0 +149 1 6.8527392813 -9.60045362239 -14.9281980039 0 0 0 +150 1 9.43613802902 -6.84002252453 -14.7824530775 0 0 0 +151 1 9.30935858469 -9.44293726178 -12.1161900338 0 0 0 +152 1 6.60149445183 -6.76290822036 -12.1494970251 0 0 0 +153 1 12.3368916671 -9.36720549159 -14.8712595891 0 0 0 +154 1 14.9111486782 -6.71150660138 -15.0536676503 0 0 0 +155 1 15.005662701 -9.68285844002 -12.1933087027 0 0 0 +156 1 12.1936139347 -6.78455223587 -12.2160734663 0 0 0 +157 1 17.5800998043 -9.55599344754 -14.9626172471 0 0 0 +158 1 20.3548000599 -6.71741999102 -14.77725721 0 0 0 +159 1 20.2539961838 -9.44681040065 -12.3528595854 0 0 0 +160 1 17.5427862263 -6.82372135815 -12.4719243656 0 0 0 +161 1 22.9222581128 -9.51539170012 -14.9115597657 0 0 0 +162 1 25.6780706763 -6.76795654143 -15.0397091536 0 0 0 +163 1 25.6418073222 -9.34830603316 -12.4166465173 0 0 0 +164 1 22.9743666914 -6.6176437682 -12.2232390904 0 0 0 +165 1 28.6404300192 -9.64323295308 -15.0441255476 0 0 0 +166 1 31.2431047902 -6.71630434186 -15.1919612958 0 0 0 +167 1 31.4026957787 -9.58938206327 -12.1855450792 0 0 0 +168 1 28.6558834245 -6.91920918375 -12.4363983227 0 0 0 +169 1 33.8204059228 -9.50032765545 -15.2860954733 0 0 0 +170 1 36.2612886388 -6.72527684399 -15.1370878102 0 0 0 +171 1 36.3318309734 -9.50365540603 -12.386220521 0 0 0 +172 1 33.8413940492 -6.69462896759 -12.4186513082 0 0 0 +173 1 38.9559905495 -9.52876651276 -15.0435400085 0 0 0 +174 1 41.8719850633 -6.90567716427 -14.9189378552 0 0 0 +175 1 41.6883703375 -9.62551857049 -12.4172245674 0 0 0 +176 1 39.149147174 -6.75496303251 -12.3920956927 0 0 0 +177 1 44.6019738473 -9.43655058351 -15.1230829588 0 0 0 +178 1 47.4748877409 -6.86817145364 -14.9069509256 0 0 0 +179 1 47.4165914388 -9.49523990877 -12.2020451359 0 0 0 +180 1 44.5290731857 -6.9532221467 -12.116960926 0 0 0 +181 1 50.1491399858 -9.39551648297 -14.8018319341 0 0 0 +182 1 52.7039614492 -6.71081056641 -14.9833252296 0 0 0 +183 1 52.5952937838 -9.36294136168 -12.2218170874 0 0 0 +184 1 50.0412292514 -6.84783104604 -12.0222195312 0 0 0 +185 1 55.40125 -9.45875 -14.86375 0 0 0 +186 1 58.10375 -6.75625 -14.86375 0 0 0 +187 1 58.10375 -9.45875 -12.16125 0 0 0 +188 1 55.40125 -6.75625 -12.16125 0 0 0 +189 1 60.80625 -9.45875 -14.86375 0 0 0 +190 1 63.50875 -6.75625 -14.86375 0 0 0 +191 1 63.50875 -9.45875 -12.16125 0 0 0 +192 1 60.80625 -6.75625 -12.16125 0 0 0 +193 1 -63.50875 -4.05375 -14.86375 0 0 0 +194 1 -60.80625 -1.35125 -14.86375 0 0 0 +195 1 -60.80625 -4.05375 -12.16125 0 0 0 +196 1 -63.50875 -1.35125 -12.16125 0 0 0 +197 1 -58.10375 -4.05375 -14.86375 0 0 0 +198 1 -55.40125 -1.35125 -14.86375 0 0 0 +199 1 -55.40125 -4.05375 -12.16125 0 0 0 +200 1 -58.10375 -1.35125 -12.16125 0 0 0 +201 1 -52.622528549 -4.05891086433 -15.0369038552 0 0 0 +202 1 -49.9729230948 -1.32323591598 -14.9237193151 0 0 0 +203 1 -50.0977026856 -4.21009581004 -12.344898444 0 0 0 +204 1 -52.6874171827 -1.25124242523 -12.1509481346 0 0 0 +205 1 -47.3463914107 -3.93557070695 -14.8279066636 0 0 0 +206 1 -44.6631062046 -1.23866768984 -15.0862561301 0 0 0 +207 1 -44.6863718098 -4.07048715014 -12.11829466 0 0 0 +208 1 -47.2130640123 -1.27349159011 -12.1378845008 0 0 0 +209 1 -42.0104887137 -4.02530830406 -14.8891537226 0 0 0 +210 1 -39.1479917827 -1.24550523493 -14.9750496216 0 0 0 +211 1 -39.4851617286 -3.99671251747 -12.2771841494 0 0 0 +212 1 -41.8621787487 -1.28370946598 -12.2788687471 0 0 0 +213 1 -36.6373582394 -4.12655112677 -14.8739913307 0 0 0 +214 1 -33.8446758588 -1.63106993568 -15.083949396 0 0 0 +215 1 -33.8829810823 -4.19593003341 -12.3693744536 0 0 0 +216 1 -36.6386288596 -1.30503564532 -12.4058891799 0 0 0 +217 1 -31.203210921 -4.26117432267 -15.1716577609 0 0 0 +218 1 -28.5929148809 -1.46778812339 -15.0318111357 0 0 0 +219 1 -28.4214537344 -4.29875744386 -12.2924781875 0 0 0 +220 1 -31.0133835606 -1.54279303004 -12.3685473225 0 0 0 +221 1 -25.8147913207 -4.22669385372 -14.7380621703 0 0 0 +222 1 -23.118087225 -1.56054681883 -14.9529986848 0 0 0 +223 1 -23.1284030134 -4.17559254079 -12.282814826 0 0 0 +224 1 -25.8507825706 -1.42456482985 -12.3305798033 0 0 0 +225 1 -20.4421153691 -4.42141916172 -15.1210809518 0 0 0 +226 1 -17.7173073122 -1.52926560797 -15.1842439777 0 0 0 +227 1 -17.7304753881 -4.19485966778 -12.3529105705 0 0 0 +228 1 -20.2784011882 -1.56090311696 -12.4585466406 0 0 0 +229 1 -15.0001519787 -4.27871778543 -15.0022789117 0 0 0 +230 1 -12.3925675714 -1.34672909831 -15.0539054566 0 0 0 +231 1 -12.2694374323 -4.04798799508 -12.3860266466 0 0 0 +232 1 -15.0651743417 -1.54587337575 -12.3389455715 0 0 0 +233 1 -9.43411715396 -3.94136091162 -14.8899418671 0 0 0 +234 1 -6.76913370035 -1.3871833816 -14.8021048924 0 0 0 +235 1 -6.77910453191 -4.05314760298 -12.1962231878 0 0 0 +236 1 -9.47103543098 -1.24569498242 -12.2918118762 0 0 0 +237 1 -3.88559490004 -4.17008400706 -15.0137214583 0 0 0 +238 1 -1.02372589992 -1.46813255859 -14.9940812542 0 0 0 +239 1 -1.29206756053 -4.21781858483 -12.3494115554 0 0 0 +240 1 -3.61326918731 -1.36596024064 -12.212823064 0 0 0 +241 1 1.36450343035 -4.33080442712 -14.9318648122 0 0 0 +242 1 4.22424592864 -1.49965602873 -15.0011380909 0 0 0 +243 1 4.07857691806 -3.93257391823 -12.3327553844 0 0 0 +244 1 1.30112865464 -1.29628981934 -12.1080013268 0 0 0 +245 1 6.63702893661 -4.18642595888 -14.8807100204 0 0 0 +246 1 9.4551932896 -1.56063476076 -14.7520672446 0 0 0 +247 1 9.47317555594 -4.19201517741 -12.2888001679 0 0 0 +248 1 6.81353087584 -1.31373004982 -12.0831064153 0 0 0 +249 1 12.1361291749 -4.15616395951 -14.957737764 0 0 0 +250 1 14.6275775138 -1.58659763813 -14.9208567855 0 0 0 +251 1 14.8953774006 -4.35138189601 -12.1478208131 0 0 0 +252 1 12.1508006598 -1.50549215515 -12.205242892 0 0 0 +253 1 17.5175711847 -4.10346143348 -14.9832860363 0 0 0 +254 1 20.2922166817 -1.51132989502 -14.9248505416 0 0 0 +255 1 20.2095214756 -4.03785212293 -12.2095231722 0 0 0 +256 1 17.3379390909 -1.35480366161 -12.4069413664 0 0 0 +257 1 22.9122703775 -3.97805772771 -15.0630102681 0 0 0 +258 1 25.7872940217 -1.3764297291 -15.1004718389 0 0 0 +259 1 25.821587268 -4.23552651118 -12.4356245642 0 0 0 +260 1 23.0690141379 -1.46942899406 -12.3185610805 0 0 0 +261 1 28.5442270019 -3.99539143142 -15.1234317258 0 0 0 +262 1 30.8463409362 -1.22993870469 -14.922210912 0 0 0 +263 1 31.0911026404 -4.16189848027 -12.2710786562 0 0 0 +264 1 28.4644085193 -1.41193505837 -12.2433144491 0 0 0 +265 1 33.7282995053 -3.94737945158 -15.1459129743 0 0 0 +266 1 36.6476240081 -1.30573985752 -15.0874902286 0 0 0 +267 1 36.5372929195 -4.05344224235 -12.4400673022 0 0 0 +268 1 33.8228988697 -1.52646163238 -12.338368944 0 0 0 +269 1 39.1437920203 -4.06660094875 -15.1407158365 0 0 0 +270 1 41.7668706608 -1.46015310666 -14.8293490593 0 0 0 +271 1 41.7516104018 -4.07581075193 -12.3337263317 0 0 0 +272 1 39.0420746133 -1.23418967495 -12.2797928014 0 0 0 +273 1 44.7063671918 -4.49574295982 -14.7143399866 0 0 0 +274 1 47.5026489175 -1.47184169633 -14.9455388094 0 0 0 +275 1 47.3747861924 -4.05279628277 -12.0697294174 0 0 0 +276 1 44.6000847829 -1.3655863554 -12.1794058638 0 0 0 +277 1 49.9040230478 -4.17436190307 -14.8707723899 0 0 0 +278 1 52.7048004403 -1.36506095118 -14.9080388123 0 0 0 +279 1 52.6945835962 -4.271399166 -12.2533331847 0 0 0 +280 1 50.0911099674 -1.49124308676 -12.2482034984 0 0 0 +281 1 55.40125 -4.05375 -14.86375 0 0 0 +282 1 58.10375 -1.35125 -14.86375 0 0 0 +283 1 58.10375 -4.05375 -12.16125 0 0 0 +284 1 55.40125 -1.35125 -12.16125 0 0 0 +285 1 60.80625 -4.05375 -14.86375 0 0 0 +286 1 63.50875 -1.35125 -14.86375 0 0 0 +287 1 63.50875 -4.05375 -12.16125 0 0 0 +288 1 60.80625 -1.35125 -12.16125 0 0 0 +289 1 -63.50875 1.35125 -14.86375 0 0 0 +290 1 -60.80625 4.05375 -14.86375 0 0 0 +291 1 -60.80625 1.35125 -12.16125 0 0 0 +292 1 -63.50875 4.05375 -12.16125 0 0 0 +293 1 -58.10375 1.35125 -14.86375 0 0 0 +294 1 -55.40125 4.05375 -14.86375 0 0 0 +295 1 -55.40125 1.35125 -12.16125 0 0 0 +296 1 -58.10375 4.05375 -12.16125 0 0 0 +297 1 -52.5851800414 1.41330263328 -15.032822654 0 0 0 +298 1 -49.9103617223 4.00246690603 -14.9370449774 0 0 0 +299 1 -49.7671570762 1.31856095242 -12.1829596967 0 0 0 +300 1 -52.7217032703 3.9255597142 -12.0970566636 0 0 0 +301 1 -47.2796330002 1.26700204123 -15.0340272638 0 0 0 +302 1 -44.5824236077 3.98639555278 -14.9617306539 0 0 0 +303 1 -44.6048155462 1.32376605076 -12.2355255643 0 0 0 +304 1 -47.1763748292 3.91992052781 -12.1941157253 0 0 0 +305 1 -41.8611445055 1.39692663041 -14.9278945508 0 0 0 +306 1 -39.0539094673 3.9717179457 -15.1419647922 0 0 0 +307 1 -39.3290610389 1.43131037259 -12.2994052543 0 0 0 +308 1 -41.7805897034 4.05336178165 -12.2649452033 0 0 0 +309 1 -36.3378982995 1.33555319336 -15.0553532801 0 0 0 +310 1 -33.8496097988 4.01303376992 -14.8997314093 0 0 0 +311 1 -33.7648574619 1.01300600081 -12.3378523028 0 0 0 +312 1 -36.6308921433 3.90629939445 -12.4205188285 0 0 0 +313 1 -31.1593439764 1.29578115961 -14.8905664438 0 0 0 +314 1 -28.4013390255 4.03095817964 -14.9315442567 0 0 0 +315 1 -28.4199555389 1.24430456104 -12.3748452284 0 0 0 +316 1 -31.1168171045 3.93602710443 -12.3148478854 0 0 0 +317 1 -25.6917963926 1.31249942809 -14.9338065705 0 0 0 +318 1 -23.0661106699 4.02149084919 -15.09075948 0 0 0 +319 1 -23.0605072709 1.34488101325 -12.290742722 0 0 0 +320 1 -25.7532331832 3.87186125798 -12.2439019802 0 0 0 +321 1 -20.4667376379 1.3030132019 -15.0949705426 0 0 0 +322 1 -17.8017296973 4.03433440566 -15.1846811873 0 0 0 +323 1 -17.677917034 1.1779702799 -12.2585068755 0 0 0 +324 1 -20.4296941822 4.175538913 -12.3970708852 0 0 0 +325 1 -14.9950615073 1.3282138027 -14.9548218539 0 0 0 +326 1 -12.0894775214 4.02316997032 -14.9529440837 0 0 0 +327 1 -12.1264605267 1.12535078697 -12.370398008 0 0 0 +328 1 -15.0035804634 4.0247954852 -12.2018188332 0 0 0 +329 1 -9.30763061103 1.43837012252 -14.9312541901 0 0 0 +330 1 -6.74426687385 4.03527709804 -14.9674599542 0 0 0 +331 1 -6.6324383485 1.2273126361 -12.2055161899 0 0 0 +332 1 -9.5485195272 3.8742141939 -12.0242323635 0 0 0 +333 1 -4.09397726674 1.50902890906 -15.0123636967 0 0 0 +334 1 -1.45626530811 4.16815358904 -15.172696193 0 0 0 +335 1 -1.40300008818 1.55090463631 -12.4898604184 0 0 0 +336 1 -4.12219573713 4.16034075798 -12.2753371143 0 0 0 +337 1 1.55858651874 1.1375558052 -14.8927523023 0 0 0 +338 1 4.11043485001 4.01139983627 -14.8393749779 0 0 0 +339 1 4.11955734789 1.20374907483 -12.0857750575 0 0 0 +340 1 1.4373084859 4.30188495941 -12.3137298352 0 0 0 +341 1 6.77309608293 1.08113238289 -15.0987722268 0 0 0 +342 1 9.37655662291 3.76421414879 -15.0456117052 0 0 0 +343 1 9.33937514794 1.34435227448 -12.3814506754 0 0 0 +344 1 6.81731343423 3.88911795207 -12.1421269274 0 0 0 +345 1 12.0363657892 1.17408147011 -15.0194478226 0 0 0 +346 1 14.7222092173 4.02987586059 -15.2929867923 0 0 0 +347 1 14.7684144925 1.3360038472 -12.3456589287 0 0 0 +348 1 12.1256348018 3.9022922635 -12.5318903927 0 0 0 +349 1 17.4829079924 1.25318838963 -14.8858123914 0 0 0 +350 1 20.2320175359 3.96740894689 -14.848530691 0 0 0 +351 1 20.5493398198 1.27590852857 -12.1495657703 0 0 0 +352 1 17.5277184691 4.11994532558 -12.4509521425 0 0 0 +353 1 23.1245403369 1.39345466976 -15.1004381874 0 0 0 +354 1 25.6031164112 3.9935509079 -15.0177247625 0 0 0 +355 1 25.7366802268 1.10541959817 -12.2960276187 0 0 0 +356 1 23.0652991581 4.02121017102 -12.2415263497 0 0 0 +357 1 28.2164029099 1.44338367969 -15.0184623366 0 0 0 +358 1 31.1799886083 4.09927916346 -14.8254783125 0 0 0 +359 1 31.1313616815 1.44141814514 -12.3126666353 0 0 0 +360 1 28.4223342115 4.09605063975 -12.3855174817 0 0 0 +361 1 33.8912604235 1.42328595999 -14.8373043359 0 0 0 +362 1 36.7270822808 4.06512766911 -14.8932655659 0 0 0 +363 1 36.4159272028 1.40115893285 -12.0592125745 0 0 0 +364 1 33.7731995842 4.1769909023 -12.2205040668 0 0 0 +365 1 39.359779366 1.27679119334 -15.1005899059 0 0 0 +366 1 42.0238216661 3.91673410956 -14.8185980702 0 0 0 +367 1 42.0556783074 1.29151514382 -12.3016861399 0 0 0 +368 1 39.3581647875 3.97496629732 -12.0934370002 0 0 0 +369 1 44.7724790542 1.33270790402 -14.9319510147 0 0 0 +370 1 47.3074092746 4.06023399864 -14.8427260624 0 0 0 +371 1 47.5712411197 1.44803713023 -12.223282484 0 0 0 +372 1 44.7460808586 3.93313609457 -12.1789403465 0 0 0 +373 1 50.0627135242 1.49338196942 -14.8128574005 0 0 0 +374 1 52.7459112148 4.14611140351 -14.9283216309 0 0 0 +375 1 52.7396359887 1.3330229087 -12.3663363638 0 0 0 +376 1 50.2514193288 4.17969940028 -12.1613676886 0 0 0 +377 1 55.40125 1.35125 -14.86375 0 0 0 +378 1 58.10375 4.05375 -14.86375 0 0 0 +379 1 58.10375 1.35125 -12.16125 0 0 0 +380 1 55.40125 4.05375 -12.16125 0 0 0 +381 1 60.80625 1.35125 -14.86375 0 0 0 +382 1 63.50875 4.05375 -14.86375 0 0 0 +383 1 63.50875 1.35125 -12.16125 0 0 0 +384 1 60.80625 4.05375 -12.16125 0 0 0 +385 1 -63.50875 6.75625 -14.86375 0 0 0 +386 1 -60.80625 9.45875 -14.86375 0 0 0 +387 1 -60.80625 6.75625 -12.16125 0 0 0 +388 1 -63.50875 9.45875 -12.16125 0 0 0 +389 1 -58.10375 6.75625 -14.86375 0 0 0 +390 1 -55.40125 9.45875 -14.86375 0 0 0 +391 1 -55.40125 6.75625 -12.16125 0 0 0 +392 1 -58.10375 9.45875 -12.16125 0 0 0 +393 1 -52.7367794957 6.70703557801 -14.8335594433 0 0 0 +394 1 -50.0833080047 9.19203493061 -15.0873450514 0 0 0 +395 1 -50.0756593322 6.35763921574 -12.0148488859 0 0 0 +396 1 -52.7720526656 9.39682522517 -12.095405165 0 0 0 +397 1 -47.3800585652 6.561457847 -14.8413998027 0 0 0 +398 1 -44.6220999174 9.44444201697 -14.8769345148 0 0 0 +399 1 -44.6129987032 6.63322172253 -12.3499134645 0 0 0 +400 1 -47.4088772085 9.2580731895 -12.1206430343 0 0 0 +401 1 -41.7437080657 6.53541222103 -15.1195022566 0 0 0 +402 1 -39.1200860624 9.41321473912 -14.9387416259 0 0 0 +403 1 -39.0818064258 6.86293815601 -12.1478182703 0 0 0 +404 1 -41.9681625049 9.3610474214 -12.2675373348 0 0 0 +405 1 -36.4712334622 6.83726359733 -15.0537546866 0 0 0 +406 1 -33.8170008268 9.67709820063 -15.0372625061 0 0 0 +407 1 -33.8801632686 6.78153213494 -12.2764309413 0 0 0 +408 1 -36.4371282263 9.40556232052 -12.2859672079 0 0 0 +409 1 -31.2742865588 6.76511824535 -14.8460249492 0 0 0 +410 1 -28.6270861231 9.55281431192 -15.0157874703 0 0 0 +411 1 -28.5946087193 6.67091787671 -12.4279689658 0 0 0 +412 1 -31.1095058754 9.54860244307 -12.2926292326 0 0 0 +413 1 -25.9393758523 6.83445013753 -14.8882236067 0 0 0 +414 1 -23.0247101191 9.31406870253 -14.9854443802 0 0 0 +415 1 -23.1948959414 6.83985940172 -12.2749060411 0 0 0 +416 1 -25.823705635 9.58074013952 -12.3665827957 0 0 0 +417 1 -20.3425547294 6.61024571015 -15.0014192784 0 0 0 +418 1 -17.6642040971 9.43420459275 -14.9520037916 0 0 0 +419 1 -17.6447725841 6.71548999953 -12.4285657979 0 0 0 +420 1 -20.4170455863 9.60000030863 -12.4317668435 0 0 0 +421 1 -14.9296126666 6.71377107047 -15.0663474972 0 0 0 +422 1 -12.3635997324 9.49053021875 -14.9570516221 0 0 0 +423 1 -12.2813114839 6.71841996292 -12.2393061338 0 0 0 +424 1 -15.1079047295 9.3871227088 -12.2736082387 0 0 0 +425 1 -9.42610915672 6.80144748914 -14.9163775429 0 0 0 +426 1 -6.52774850372 9.53125048121 -14.9841187891 0 0 0 +427 1 -6.65714757356 6.7874213937 -12.0657621054 0 0 0 +428 1 -9.40008302786 9.39252514926 -12.325092314 0 0 0 +429 1 -4.04020114433 6.73721991163 -15.0569567719 0 0 0 +430 1 -1.15472589872 9.44659357274 -14.9414686268 0 0 0 +431 1 -1.34778222296 6.81829674103 -12.1853215895 0 0 0 +432 1 -3.93916009097 9.572382781 -12.148006932 0 0 0 +433 1 1.27004774225 6.7365745855 -14.9901242045 0 0 0 +434 1 4.16800421415 9.49947990178 -15.0741079187 0 0 0 +435 1 4.15933762179 6.80103976582 -12.2010837488 0 0 0 +436 1 1.30111937965 9.43633319947 -12.2847915742 0 0 0 +437 1 6.80676946951 6.64556847958 -14.9931203743 0 0 0 +438 1 9.51488270844 9.40947839304 -14.8793352755 0 0 0 +439 1 9.4393249707 6.60846236573 -12.2670763422 0 0 0 +440 1 6.74668406216 9.38577792888 -12.2548306721 0 0 0 +441 1 11.9704775311 6.56240296829 -14.8790581311 0 0 0 +442 1 14.9587646084 9.51054368293 -14.8920905101 0 0 0 +443 1 14.7944918768 6.66789966161 -12.2852892102 0 0 0 +444 1 12.060467712 9.68218513825 -12.3438670596 0 0 0 +445 1 17.3652610956 6.68041733101 -15.1028471578 0 0 0 +446 1 20.1701148511 9.51942909785 -14.8605025415 0 0 0 +447 1 20.1878150155 6.81239041218 -12.3923790653 0 0 0 +448 1 17.5932861359 9.44075682534 -12.2518057102 0 0 0 +449 1 22.926035188 6.88418417327 -15.0959512417 0 0 0 +450 1 25.6627103661 9.44645333921 -14.816077097 0 0 0 +451 1 25.8859082828 6.6307907066 -12.3479385678 0 0 0 +452 1 22.9480807214 9.47998949857 -12.0601329523 0 0 0 +453 1 28.4093485447 6.88979113944 -14.9583737865 0 0 0 +454 1 31.2162759248 9.26295445876 -15.0836120863 0 0 0 +455 1 31.1025721978 6.85460359391 -12.1801765871 0 0 0 +456 1 28.4426530426 9.45451322438 -12.2099871365 0 0 0 +457 1 34.0286699518 6.75028331415 -15.0678467573 0 0 0 +458 1 36.7156828329 9.49886122635 -15.0531251226 0 0 0 +459 1 36.3921155984 6.80542639943 -12.3501805319 0 0 0 +460 1 33.9584768375 9.4210277306 -12.3412375343 0 0 0 +461 1 39.2184262151 6.72293293941 -14.9900065509 0 0 0 +462 1 41.8573198514 9.31946007982 -14.9502914608 0 0 0 +463 1 41.9689084875 6.65875436143 -12.1223345707 0 0 0 +464 1 39.3044167406 9.23154901304 -12.3886411951 0 0 0 +465 1 44.6458043682 6.80807328059 -15.0077323836 0 0 0 +466 1 47.2164920749 9.53093046531 -15.101431673 0 0 0 +467 1 47.2950248417 6.68996345848 -12.0545414185 0 0 0 +468 1 44.4595018015 9.67470889901 -12.2838052818 0 0 0 +469 1 49.8432272198 6.80794606806 -14.7242414691 0 0 0 +470 1 52.707451594 9.57239965343 -15.0873893666 0 0 0 +471 1 52.6958476171 6.78422464795 -12.3339722806 0 0 0 +472 1 49.991564232 9.5448252454 -12.2481961355 0 0 0 +473 1 55.40125 6.75625 -14.86375 0 0 0 +474 1 58.10375 9.45875 -14.86375 0 0 0 +475 1 58.10375 6.75625 -12.16125 0 0 0 +476 1 55.40125 9.45875 -12.16125 0 0 0 +477 1 60.80625 6.75625 -14.86375 0 0 0 +478 1 63.50875 9.45875 -14.86375 0 0 0 +479 1 63.50875 6.75625 -12.16125 0 0 0 +480 1 60.80625 9.45875 -12.16125 0 0 0 +481 1 -63.50875 12.16125 -14.86375 0 0 0 +482 1 -60.80625 14.86375 -14.86375 0 0 0 +483 1 -60.80625 12.16125 -12.16125 0 0 0 +484 1 -63.50875 14.86375 -12.16125 0 0 0 +485 1 -58.10375 12.16125 -14.86375 0 0 0 +486 1 -55.40125 14.86375 -14.86375 0 0 0 +487 1 -55.40125 12.16125 -12.16125 0 0 0 +488 1 -58.10375 14.86375 -12.16125 0 0 0 +489 1 -52.7055918953 12.1542659904 -14.7690321315 0 0 0 +490 1 -50.0102300398 14.6790662766 -14.8109641541 0 0 0 +491 1 -49.9430695395 11.8639442042 -12.2125436525 0 0 0 +492 1 -52.5621779546 14.7387292452 -12.0504425827 0 0 0 +493 1 -47.2455724955 12.1271356158 -14.9222614555 0 0 0 +494 1 -44.5321402463 14.8296131691 -14.7239449184 0 0 0 +495 1 -44.6654591844 12.13520652 -12.2310834345 0 0 0 +496 1 -47.388459781 14.8739217994 -12.4102945436 0 0 0 +497 1 -41.7590449345 11.989233103 -15.0291038513 0 0 0 +498 1 -39.2532725474 14.9507163121 -14.8503664857 0 0 0 +499 1 -39.1918223311 12.3441834961 -12.2672374835 0 0 0 +500 1 -42.0332810248 14.7975756573 -12.0357640619 0 0 0 +501 1 -36.6177490694 12.309406401 -15.0016023848 0 0 0 +502 1 -33.9832394684 15.05610863 -15.0808953109 0 0 0 +503 1 -33.9990433389 12.1995259259 -12.3546752016 0 0 0 +504 1 -36.5464944224 14.9492144225 -12.327315729 0 0 0 +505 1 -31.2727527021 12.3099506601 -15.0019793195 0 0 0 +506 1 -28.6218872941 14.8178034443 -15.1735155295 0 0 0 +507 1 -28.6018774016 12.1585741081 -12.4138345057 0 0 0 +508 1 -31.3927064942 14.6615154831 -12.2752828578 0 0 0 +509 1 -25.6251764645 12.1831418585 -15.1785957586 0 0 0 +510 1 -22.9730599157 14.8657770216 -15.0022161762 0 0 0 +511 1 -23.2050908712 12.4061522851 -12.1573469523 0 0 0 +512 1 -25.8731431063 14.9317663049 -12.4184385151 0 0 0 +513 1 -20.371941438 12.0255253534 -15.1066321225 0 0 0 +514 1 -17.6357274848 14.8986621202 -15.0928235257 0 0 0 +515 1 -17.6583155442 12.1376361635 -12.3995373277 0 0 0 +516 1 -20.387040665 14.8208685678 -12.2202161574 0 0 0 +517 1 -15.1566815182 12.2613520747 -15.0775362829 0 0 0 +518 1 -12.4108674617 14.7926050807 -14.8749015949 0 0 0 +519 1 -12.2639082372 12.0896886472 -12.1320751913 0 0 0 +520 1 -14.8715671393 14.9956890753 -12.1176221959 0 0 0 +521 1 -9.38533580442 12.2873517366 -14.7902990595 0 0 0 +522 1 -6.68184808724 14.8189777694 -15.0255410116 0 0 0 +523 1 -6.54040307472 12.1176985944 -12.0606653808 0 0 0 +524 1 -9.57123627476 14.7427405974 -12.0968668701 0 0 0 +525 1 -4.09687471944 12.1993303027 -15.0340277354 0 0 0 +526 1 -1.37749777517 15.0193878088 -15.0238351994 0 0 0 +527 1 -1.20218494591 12.3428499456 -12.3034512003 0 0 0 +528 1 -4.21564754831 14.9177415357 -12.2968081977 0 0 0 +529 1 1.17580119105 12.1936960407 -15.0452743356 0 0 0 +530 1 3.8915214222 14.5753534342 -14.9625936475 0 0 0 +531 1 3.93572920799 12.1397535317 -12.2499733859 0 0 0 +532 1 1.41621528561 14.8770795378 -12.3182799743 0 0 0 +533 1 6.8268134961 12.0071603515 -14.7815932339 0 0 0 +534 1 9.5585436261 14.9284728848 -14.9816737756 0 0 0 +535 1 9.45463076381 12.3066926272 -12.0624296099 0 0 0 +536 1 6.66921566005 14.82098239 -12.2974048009 0 0 0 +537 1 12.3836331028 12.1424248393 -15.0332550331 0 0 0 +538 1 14.9147784531 14.8077199468 -15.0565036575 0 0 0 +539 1 14.9818067374 12.0876425662 -12.1651785732 0 0 0 +540 1 12.0341649282 14.922697689 -12.2976463887 0 0 0 +541 1 17.5114968864 12.1785378698 -14.8459854593 0 0 0 +542 1 20.1731744306 14.5530089919 -14.896171819 0 0 0 +543 1 20.2274445987 12.0958397073 -12.1275958539 0 0 0 +544 1 17.6439411232 14.8255088264 -12.0918029408 0 0 0 +545 1 22.9103960211 12.1934130276 -14.8181023798 0 0 0 +546 1 25.8076351391 14.8181470446 -14.8881231524 0 0 0 +547 1 25.8423409289 12.0972031825 -12.3721330614 0 0 0 +548 1 23.1307406138 14.7711778744 -12.086145757 0 0 0 +549 1 28.5766505707 11.9175479147 -14.8666915188 0 0 0 +550 1 31.5007493722 14.8144835306 -14.9400837738 0 0 0 +551 1 31.0777156008 11.866080411 -12.23599673 0 0 0 +552 1 28.5949388622 14.746080072 -12.2052045462 0 0 0 +553 1 33.8524094986 11.9298523413 -15.0211179116 0 0 0 +554 1 36.5433070347 14.6114847949 -14.9233557408 0 0 0 +555 1 36.6886248328 12.0865619567 -12.3122971349 0 0 0 +556 1 34.01999714 14.6118203728 -11.9694913532 0 0 0 +557 1 39.356242246 12.2029497042 -15.1162187832 0 0 0 +558 1 42.067087505 14.9817341984 -14.7264295644 0 0 0 +559 1 41.6688208519 12.1888914087 -12.3503438693 0 0 0 +560 1 39.2070946185 14.6851283609 -12.1997156329 0 0 0 +561 1 44.6318904422 12.3649858725 -14.9594674907 0 0 0 +562 1 47.2990179439 14.8847858226 -14.9425410244 0 0 0 +563 1 47.2167550916 12.1118760784 -12.1702274032 0 0 0 +564 1 44.6681587384 14.7806209685 -12.264499211 0 0 0 +565 1 50.1930568675 12.1550473267 -15.0136834039 0 0 0 +566 1 52.6759099649 15.0504868019 -14.759322921 0 0 0 +567 1 52.8370109225 12.0262642212 -12.1878058216 0 0 0 +568 1 49.9972308612 14.8412677126 -12.1903182156 0 0 0 +569 1 55.40125 12.16125 -14.86375 0 0 0 +570 1 58.10375 14.86375 -14.86375 0 0 0 +571 1 58.10375 12.16125 -12.16125 0 0 0 +572 1 55.40125 14.86375 -12.16125 0 0 0 +573 1 60.80625 12.16125 -14.86375 0 0 0 +574 1 63.50875 14.86375 -14.86375 0 0 0 +575 1 63.50875 12.16125 -12.16125 0 0 0 +576 1 60.80625 14.86375 -12.16125 0 0 0 +577 1 -63.50875 -14.86375 -9.45875 0 0 0 +578 1 -60.80625 -12.16125 -9.45875 0 0 0 +579 1 -60.80625 -14.86375 -6.75625 0 0 0 +580 1 -63.50875 -12.16125 -6.75625 0 0 0 +581 1 -58.10375 -14.86375 -9.45875 0 0 0 +582 1 -55.40125 -12.16125 -9.45875 0 0 0 +583 1 -55.40125 -14.86375 -6.75625 0 0 0 +584 1 -58.10375 -12.16125 -6.75625 0 0 0 +585 1 -52.6040729154 -14.8848992199 -9.59903963256 0 0 0 +586 1 -49.9968782138 -12.1320697459 -9.53289236237 0 0 0 +587 1 -49.9200937048 -14.9720317017 -6.88609822577 0 0 0 +588 1 -52.6279976548 -12.3240907176 -6.62912331123 0 0 0 +589 1 -47.3169360366 -15.1159274949 -9.38054911678 0 0 0 +590 1 -44.8006944205 -12.0688951955 -9.47023340421 0 0 0 +591 1 -44.8554245711 -14.6869951947 -6.76895882499 0 0 0 +592 1 -47.3898530135 -12.0988954993 -6.66942434981 0 0 0 +593 1 -42.1384850429 -14.9314433697 -9.46330781208 0 0 0 +594 1 -39.4983326548 -12.1423060548 -9.37678688406 0 0 0 +595 1 -39.3889704375 -14.8205093444 -6.9625316064 0 0 0 +596 1 -42.1413722945 -11.9843825442 -6.79049659645 0 0 0 +597 1 -36.5087876672 -15.0435591589 -9.57703329294 0 0 0 +598 1 -34.0164146489 -12.289691312 -9.41077338042 0 0 0 +599 1 -33.8068119256 -15.052707366 -6.78881431903 0 0 0 +600 1 -36.5579007854 -12.0702981653 -6.67756313294 0 0 0 +601 1 -31.3863872642 -14.9124273289 -9.46652445971 0 0 0 +602 1 -28.3815099325 -12.2578152963 -9.69489408432 0 0 0 +603 1 -28.3324645966 -14.8567671322 -6.82863959238 0 0 0 +604 1 -31.0219995075 -12.244205976 -6.93909517602 0 0 0 +605 1 -25.8220485245 -14.8870359629 -9.69587584687 0 0 0 +606 1 -22.9396280013 -12.3119656122 -9.56685150963 0 0 0 +607 1 -22.9651159519 -14.8617575019 -6.78946306283 0 0 0 +608 1 -25.6403192598 -12.3069367501 -6.89073990246 0 0 0 +609 1 -20.312601671 -15.0147445079 -9.59225144559 0 0 0 +610 1 -17.5226208536 -12.4755543071 -9.72637360124 0 0 0 +611 1 -17.4305616469 -15.1476165017 -6.72152806194 0 0 0 +612 1 -20.1337841343 -12.3089799271 -7.04506142608 0 0 0 +613 1 -14.8326373325 -15.0373433071 -9.46759776328 0 0 0 +614 1 -12.0701477528 -12.3186642462 -9.51796775859 0 0 0 +615 1 -12.2436540608 -14.850484649 -6.76397750165 0 0 0 +616 1 -15.0590443615 -12.3435517042 -6.79979670575 0 0 0 +617 1 -9.48989973036 -14.9171229837 -9.6658257281 0 0 0 +618 1 -6.79743113215 -12.1930179504 -9.60735162689 0 0 0 +619 1 -6.9934352638 -14.8104422308 -6.79928189162 0 0 0 +620 1 -9.54564512789 -12.1258816334 -6.92172605898 0 0 0 +621 1 -4.14203987926 -14.8118844814 -9.37623936367 0 0 0 +622 1 -1.4576601816 -12.1147254541 -9.56730908695 0 0 0 +623 1 -1.3657344766 -14.9797544012 -6.83442239117 0 0 0 +624 1 -4.32554662076 -12.1632757063 -6.657498923 0 0 0 +625 1 1.44455645646 -15.1028335621 -9.45064095625 0 0 0 +626 1 4.15864652459 -12.3782108048 -9.66077404721 0 0 0 +627 1 4.06938980354 -14.7683558381 -6.65250719676 0 0 0 +628 1 1.31765477499 -12.4720123172 -6.81858787306 0 0 0 +629 1 6.64378887118 -15.0838156569 -9.48343551476 0 0 0 +630 1 9.21304614597 -12.2671841223 -9.52197968473 0 0 0 +631 1 9.34289605336 -14.7457070452 -6.77996694839 0 0 0 +632 1 6.54643736585 -12.1132357152 -6.65603468417 0 0 0 +633 1 11.9967642227 -14.775937519 -9.71221925433 0 0 0 +634 1 14.7082545974 -12.5276995822 -9.64624191062 0 0 0 +635 1 15.0455894641 -14.9813000773 -6.9363866073 0 0 0 +636 1 12.0477954107 -12.2585211432 -6.91865828053 0 0 0 +637 1 17.650105675 -14.9844769871 -9.62987788247 0 0 0 +638 1 20.5061839075 -12.2290039116 -9.50381238334 0 0 0 +639 1 20.3910904226 -14.8000106764 -6.88478318232 0 0 0 +640 1 17.6277216623 -12.0600852247 -6.84575981458 0 0 0 +641 1 23.124888118 -14.7694645483 -9.51099465159 0 0 0 +642 1 25.7998481414 -11.8884717477 -9.5744881312 0 0 0 +643 1 25.8758721435 -14.9760128978 -7.00812461892 0 0 0 +644 1 23.0346134506 -12.1467929149 -6.87480286907 0 0 0 +645 1 28.5088305432 -14.7985224789 -9.57301515959 0 0 0 +646 1 31.3532997415 -12.4628711729 -9.63448109513 0 0 0 +647 1 31.1656041737 -14.9952522691 -6.71057724314 0 0 0 +648 1 28.7965113659 -12.1612305191 -7.06613082769 0 0 0 +649 1 33.8652375002 -15.2883301848 -9.36041185039 0 0 0 +650 1 36.3354919954 -12.3762380013 -9.40423131088 0 0 0 +651 1 36.530800939 -14.9864715504 -6.75227046874 0 0 0 +652 1 33.7016203699 -12.3791493988 -6.68047517093 0 0 0 +653 1 39.3232004579 -14.9316216555 -9.76633440272 0 0 0 +654 1 41.9765961807 -12.2042205996 -9.5785202445 0 0 0 +655 1 41.8396125859 -14.6945246618 -6.73648081902 0 0 0 +656 1 39.3108739695 -12.406393688 -6.94329083263 0 0 0 +657 1 44.5907907223 -14.6978846635 -9.66238050053 0 0 0 +658 1 47.1481899845 -12.176488114 -9.54323446995 0 0 0 +659 1 47.1873797642 -14.9162234046 -6.73862493122 0 0 0 +660 1 44.6650560882 -12.1567861954 -6.85620145903 0 0 0 +661 1 50.0324734362 -14.8157632961 -9.51713426946 0 0 0 +662 1 52.6241177089 -12.4032023084 -9.63826313891 0 0 0 +663 1 52.6331441761 -14.9024558737 -6.77931754401 0 0 0 +664 1 49.8595474587 -12.330461093 -6.70832475471 0 0 0 +665 1 55.40125 -14.86375 -9.45875 0 0 0 +666 1 58.10375 -12.16125 -9.45875 0 0 0 +667 1 58.10375 -14.86375 -6.75625 0 0 0 +668 1 55.40125 -12.16125 -6.75625 0 0 0 +669 1 60.80625 -14.86375 -9.45875 0 0 0 +670 1 63.50875 -12.16125 -9.45875 0 0 0 +671 1 63.50875 -14.86375 -6.75625 0 0 0 +672 1 60.80625 -12.16125 -6.75625 0 0 0 +673 1 -63.50875 -9.45875 -9.45875 0 0 0 +674 1 -60.80625 -6.75625 -9.45875 0 0 0 +675 1 -60.80625 -9.45875 -6.75625 0 0 0 +676 1 -63.50875 -6.75625 -6.75625 0 0 0 +677 1 -58.10375 -9.45875 -9.45875 0 0 0 +678 1 -55.40125 -6.75625 -9.45875 0 0 0 +679 1 -55.40125 -9.45875 -6.75625 0 0 0 +680 1 -58.10375 -6.75625 -6.75625 0 0 0 +681 1 -52.6120772347 -9.65521374743 -9.36974462437 0 0 0 +682 1 -49.9861536049 -6.8392083453 -9.71378225559 0 0 0 +683 1 -49.9040700161 -9.37205625745 -6.81812706733 0 0 0 +684 1 -52.6248141365 -6.8446611798 -6.98308659632 0 0 0 +685 1 -47.4640083148 -9.48048330862 -9.56110663388 0 0 0 +686 1 -44.6628123394 -6.56193964055 -9.3659269659 0 0 0 +687 1 -44.6271703573 -9.43339481743 -6.67968619211 0 0 0 +688 1 -47.3119875616 -6.69620611761 -6.78978681846 0 0 0 +689 1 -42.148990771 -9.46551041617 -9.54960334275 0 0 0 +690 1 -39.2647152934 -6.77022412531 -9.63021705543 0 0 0 +691 1 -39.3122724237 -9.49793039289 -6.74599966955 0 0 0 +692 1 -41.9957511136 -6.71342814939 -6.82196194879 0 0 0 +693 1 -36.4257940673 -9.31506739043 -9.58925064067 0 0 0 +694 1 -33.9247404497 -6.73076211948 -9.86332118059 0 0 0 +695 1 -33.6863113487 -9.48761786216 -7.10004914423 0 0 0 +696 1 -36.5101612048 -6.64853295181 -7.03574629933 0 0 0 +697 1 -31.074559776 -9.4954912837 -9.67418129389 0 0 0 +698 1 -28.294537062 -6.83298978835 -9.58510833095 0 0 0 +699 1 -28.4102953667 -9.6167139414 -6.83075575841 0 0 0 +700 1 -31.0977125915 -6.747151293 -6.85457701446 0 0 0 +701 1 -25.6829003055 -9.47366354012 -9.30235730116 0 0 0 +702 1 -23.1933223007 -6.84563957884 -9.29154046846 0 0 0 +703 1 -23.0837840767 -9.63394062749 -6.76859362716 0 0 0 +704 1 -25.8033075155 -6.81248291509 -6.70406655605 0 0 0 +705 1 -20.3816211566 -9.60545546343 -9.56841630376 0 0 0 +706 1 -17.7591927947 -6.99043474234 -9.64124871602 0 0 0 +707 1 -17.4736300839 -9.62797126541 -6.8544975397 0 0 0 +708 1 -20.5062522132 -6.91692551164 -6.81314410103 0 0 0 +709 1 -14.8769822336 -9.66870114401 -9.67267988709 0 0 0 +710 1 -12.2062527723 -6.84590764332 -9.57757147848 0 0 0 +711 1 -12.3885531632 -9.70828460078 -6.65081595626 0 0 0 +712 1 -14.9383107084 -6.87585946674 -6.95247372138 0 0 0 +713 1 -9.58043033238 -9.54213496513 -9.56054656571 0 0 0 +714 1 -7.16066565542 -6.83443835931 -9.49770648855 0 0 0 +715 1 -7.01311721491 -9.38786899673 -6.8160134726 0 0 0 +716 1 -9.69180663948 -6.67720692304 -6.7319604069 0 0 0 +717 1 -4.2990990517 -9.38948012312 -9.69985939655 0 0 0 +718 1 -1.49917478163 -6.82019166985 -9.60496700918 0 0 0 +719 1 -1.60287294783 -9.54987836198 -6.86616311266 0 0 0 +720 1 -4.25708012965 -6.75936350871 -6.99712454133 0 0 0 +721 1 1.22476607342 -9.75518527556 -9.64932807555 0 0 0 +722 1 3.89118253456 -6.83913597121 -9.57161040147 0 0 0 +723 1 3.85853621553 -9.6111969143 -6.86438975392 0 0 0 +724 1 1.35034909106 -6.92674622488 -6.83089549194 0 0 0 +725 1 6.68876104793 -9.44534036734 -9.51432478039 0 0 0 +726 1 9.43680234052 -6.85893856269 -9.65785649165 0 0 0 +727 1 9.27667085057 -9.4535792349 -6.77481478269 0 0 0 +728 1 6.79055817917 -6.86056607863 -6.94362234987 0 0 0 +729 1 12.0213964727 -9.6835328486 -9.54882834905 0 0 0 +730 1 14.800474769 -6.8706572821 -9.38950293253 0 0 0 +731 1 14.8629708733 -9.59634731125 -7.02104868083 0 0 0 +732 1 12.0684375523 -6.92694353527 -6.89728756293 0 0 0 +733 1 17.747134111 -9.53161640402 -9.6877952476 0 0 0 +734 1 20.2594673304 -6.70997989932 -9.48504731622 0 0 0 +735 1 20.2694634596 -9.34377592312 -6.70903640641 0 0 0 +736 1 17.5352846566 -6.87242754228 -6.68869985704 0 0 0 +737 1 22.7906609071 -9.36272312522 -9.67810076299 0 0 0 +738 1 25.6562631712 -6.6937186192 -9.541914477 0 0 0 +739 1 25.8025601916 -9.32090526824 -6.78218854654 0 0 0 +740 1 22.9046306765 -6.75190189262 -6.78007908623 0 0 0 +741 1 28.4357211866 -9.43563523164 -9.65005620525 0 0 0 +742 1 31.3839102369 -6.81389748589 -9.66171933531 0 0 0 +743 1 31.3251625865 -9.30474260339 -6.75941251321 0 0 0 +744 1 28.3847530423 -6.77877451785 -6.86563623578 0 0 0 +745 1 33.8499393192 -9.55696096592 -9.44850084544 0 0 0 +746 1 36.5116363189 -6.97246908438 -9.45049841827 0 0 0 +747 1 36.3475923053 -9.53415006763 -6.59762391103 0 0 0 +748 1 33.8658174845 -6.6851997174 -6.72250492943 0 0 0 +749 1 39.0307617804 -9.61503307797 -9.53857498626 0 0 0 +750 1 41.6642712631 -6.8052209675 -9.65744879819 0 0 0 +751 1 41.9099304543 -9.64618848216 -6.8820442662 0 0 0 +752 1 39.193851831 -6.81892145055 -6.81396639243 0 0 0 +753 1 44.5080662824 -9.41429171123 -9.44466737811 0 0 0 +754 1 47.4478798374 -6.83312143344 -9.24893082951 0 0 0 +755 1 47.4185928157 -9.49971728319 -6.70566840243 0 0 0 +756 1 44.5834371412 -6.7896006598 -6.55808712076 0 0 0 +757 1 49.9027547313 -9.52479247047 -9.33997191799 0 0 0 +758 1 52.7675506904 -6.85840567223 -9.36534255603 0 0 0 +759 1 52.6030679012 -9.71011685431 -6.57150549839 0 0 0 +760 1 50.1800149737 -6.75589335928 -6.71330096264 0 0 0 +761 1 55.40125 -9.45875 -9.45875 0 0 0 +762 1 58.10375 -6.75625 -9.45875 0 0 0 +763 1 58.10375 -9.45875 -6.75625 0 0 0 +764 1 55.40125 -6.75625 -6.75625 0 0 0 +765 1 60.80625 -9.45875 -9.45875 0 0 0 +766 1 63.50875 -6.75625 -9.45875 0 0 0 +767 1 63.50875 -9.45875 -6.75625 0 0 0 +768 1 60.80625 -6.75625 -6.75625 0 0 0 +769 1 -63.50875 -4.05375 -9.45875 0 0 0 +770 1 -60.80625 -1.35125 -9.45875 0 0 0 +771 1 -60.80625 -4.05375 -6.75625 0 0 0 +772 1 -63.50875 -1.35125 -6.75625 0 0 0 +773 1 -58.10375 -4.05375 -9.45875 0 0 0 +774 1 -55.40125 -1.35125 -9.45875 0 0 0 +775 1 -55.40125 -4.05375 -6.75625 0 0 0 +776 1 -58.10375 -1.35125 -6.75625 0 0 0 +777 1 -52.6417673337 -3.92232611021 -9.58229331117 0 0 0 +778 1 -50.001216127 -1.27359147632 -9.48638343339 0 0 0 +779 1 -50.0661057943 -3.89310585953 -6.79031645579 0 0 0 +780 1 -52.8376107567 -1.23342816217 -6.68078436946 0 0 0 +781 1 -47.4660853471 -3.99754681541 -9.5677571152 0 0 0 +782 1 -44.6010392258 -1.33468876903 -9.41914235329 0 0 0 +783 1 -44.6802677388 -3.86735994685 -6.77435046814 0 0 0 +784 1 -47.3750659139 -1.44353332163 -6.74799600535 0 0 0 +785 1 -41.8775469168 -3.99240228719 -9.47173966804 0 0 0 +786 1 -39.0596982615 -1.50723781574 -9.60597648672 0 0 0 +787 1 -39.1292062404 -4.16698904137 -6.92997579987 0 0 0 +788 1 -41.7960552884 -1.12312170637 -6.95795209966 0 0 0 +789 1 -36.6140344235 -4.16099935981 -9.89021612104 0 0 0 +790 1 -33.9483814642 -1.49787499521 -9.60456366331 0 0 0 +791 1 -33.7596454051 -4.17226468444 -6.9630879781 0 0 0 +792 1 -36.5271645453 -1.64589381448 -6.80044714978 0 0 0 +793 1 -30.9186181198 -4.08327784032 -9.47287320058 0 0 0 +794 1 -28.4102268462 -1.44898179958 -9.68019523814 0 0 0 +795 1 -28.3998026185 -4.08440502253 -6.81810588487 0 0 0 +796 1 -31.2137107215 -1.54901437261 -6.92979048069 0 0 0 +797 1 -25.7786563521 -4.18582642684 -9.67499953865 0 0 0 +798 1 -23.0778143662 -1.36299958305 -9.84521547949 0 0 0 +799 1 -23.1643321339 -3.96558853474 -6.97297871985 0 0 0 +800 1 -25.8641698569 -1.49922043409 -7.06428191916 0 0 0 +801 1 -20.4193481573 -4.08568125277 -9.62251591561 0 0 0 +802 1 -17.6448116466 -1.5671291475 -9.47447296057 0 0 0 +803 1 -17.7647698673 -4.00158185191 -6.75769012902 0 0 0 +804 1 -20.3154259894 -1.30263145124 -7.08476457601 0 0 0 +805 1 -14.8630260687 -4.2004260264 -9.46520367994 0 0 0 +806 1 -12.2284772477 -1.42922241261 -9.63479338223 0 0 0 +807 1 -12.324325766 -4.08933019193 -6.87437520298 0 0 0 +808 1 -14.831997407 -1.38049434642 -6.88222988245 0 0 0 +809 1 -9.62612426971 -3.94351225831 -9.69232091095 0 0 0 +810 1 -6.79050685968 -1.44728076959 -9.72238137719 0 0 0 +811 1 -6.95167307273 -4.11659184922 -6.83627514616 0 0 0 +812 1 -9.6146284862 -1.47770112886 -6.69441308868 0 0 0 +813 1 -3.97655292211 -4.22255601996 -9.61748167474 0 0 0 +814 1 -1.17337163985 -1.32680605114 -9.16265465241 0 0 0 +815 1 -1.28356644193 -4.13274673981 -6.85234534425 0 0 0 +816 1 -4.20738932589 -1.58268981193 -6.7959782655 0 0 0 +817 1 1.29930877099 -4.2418471428 -9.46530432814 0 0 0 +818 1 3.9071749253 -1.45234936313 -9.33227777607 0 0 0 +819 1 4.08108474699 -4.0270296995 -6.67682344837 0 0 0 +820 1 1.5376102081 -1.20692978192 -6.52751251899 0 0 0 +821 1 6.73874105331 -4.22339021619 -9.52496576832 0 0 0 +822 1 9.30219291872 -1.37706640878 -9.46519895154 0 0 0 +823 1 9.45802964399 -4.23971158756 -6.89439401556 0 0 0 +824 1 6.90284437996 -1.42589759777 -6.65728459159 0 0 0 +825 1 11.9647586996 -4.03934103022 -9.51791592916 0 0 0 +826 1 14.6187399773 -1.29553129171 -9.52583863816 0 0 0 +827 1 14.7765812088 -3.94225846725 -6.92101364812 0 0 0 +828 1 11.8130740431 -1.45555124249 -6.71574002357 0 0 0 +829 1 17.3994125902 -4.16910151001 -9.45739961687 0 0 0 +830 1 20.1997882042 -1.31502107307 -9.48219424852 0 0 0 +831 1 20.3023066359 -3.99332482955 -6.79454620269 0 0 0 +832 1 17.4677346861 -1.24082733617 -7.17592389219 0 0 0 +833 1 22.8337345246 -4.11464103053 -9.53424222876 0 0 0 +834 1 25.5071481041 -1.63549851644 -9.58557011511 0 0 0 +835 1 25.6851015566 -4.22056637997 -6.89350546964 0 0 0 +836 1 22.934431664 -1.3881730884 -6.88822945922 0 0 0 +837 1 28.4285198023 -4.16086354195 -9.72643074256 0 0 0 +838 1 31.18045466 -1.37103718833 -9.48434445997 0 0 0 +839 1 31.0021639417 -4.04696745468 -6.85321544181 0 0 0 +840 1 28.1619361549 -1.38055899927 -6.74144155728 0 0 0 +841 1 33.9339570001 -4.03080854148 -9.72941005687 0 0 0 +842 1 36.4410181579 -1.45046064071 -9.5706021298 0 0 0 +843 1 36.4585689944 -4.09631277566 -6.8073894512 0 0 0 +844 1 33.9504504561 -1.29438442969 -6.88044463309 0 0 0 +845 1 39.1598300176 -4.04128458957 -9.63842767061 0 0 0 +846 1 41.8555564465 -1.20195156145 -9.52056010322 0 0 0 +847 1 41.7546648867 -3.9589996949 -6.86751486837 0 0 0 +848 1 39.2899088637 -1.29354887084 -6.74912193047 0 0 0 +849 1 44.7506225466 -4.24906431528 -9.55879093076 0 0 0 +850 1 47.3834682291 -1.48065286301 -9.4559850197 0 0 0 +851 1 47.3490993899 -4.08230491463 -6.78011944849 0 0 0 +852 1 44.7190321329 -1.33155504558 -6.88535182355 0 0 0 +853 1 50.0301009102 -4.09806430618 -9.40098587234 0 0 0 +854 1 52.7520530102 -1.39567213241 -9.71249734908 0 0 0 +855 1 52.6705356762 -4.0906638711 -6.91930837527 0 0 0 +856 1 50.0930145473 -1.22559636815 -6.78145329406 0 0 0 +857 1 55.40125 -4.05375 -9.45875 0 0 0 +858 1 58.10375 -1.35125 -9.45875 0 0 0 +859 1 58.10375 -4.05375 -6.75625 0 0 0 +860 1 55.40125 -1.35125 -6.75625 0 0 0 +861 1 60.80625 -4.05375 -9.45875 0 0 0 +862 1 63.50875 -1.35125 -9.45875 0 0 0 +863 1 63.50875 -4.05375 -6.75625 0 0 0 +864 1 60.80625 -1.35125 -6.75625 0 0 0 +865 1 -63.50875 1.35125 -9.45875 0 0 0 +866 1 -60.80625 4.05375 -9.45875 0 0 0 +867 1 -60.80625 1.35125 -6.75625 0 0 0 +868 1 -63.50875 4.05375 -6.75625 0 0 0 +869 1 -58.10375 1.35125 -9.45875 0 0 0 +870 1 -55.40125 4.05375 -9.45875 0 0 0 +871 1 -55.40125 1.35125 -6.75625 0 0 0 +872 1 -58.10375 4.05375 -6.75625 0 0 0 +873 1 -52.7877032172 1.26564483011 -9.60420906672 0 0 0 +874 1 -50.0295233638 3.88752280871 -9.2487951709 0 0 0 +875 1 -50.067326819 1.44830156211 -6.76478166529 0 0 0 +876 1 -52.8071172425 4.05468908035 -6.83068299986 0 0 0 +877 1 -47.2045196034 1.1939373827 -9.26868731821 0 0 0 +878 1 -44.5729943069 3.82099152009 -9.49977097236 0 0 0 +879 1 -44.5204130345 1.23920234331 -6.701664434 0 0 0 +880 1 -46.9518763083 4.01278238481 -6.86580812486 0 0 0 +881 1 -41.8260091733 1.41300713011 -9.58820491006 0 0 0 +882 1 -39.2572214107 4.15983948229 -9.50914051849 0 0 0 +883 1 -39.188648642 1.24285820746 -6.93385169451 0 0 0 +884 1 -41.9782532576 3.73394068375 -6.72138601478 0 0 0 +885 1 -36.4944784963 1.21795533123 -9.60424110639 0 0 0 +886 1 -33.6020898105 4.04862721765 -9.69863260347 0 0 0 +887 1 -33.7788872887 1.33739853191 -6.89317400361 0 0 0 +888 1 -36.4734853761 3.95924450352 -6.91638374293 0 0 0 +889 1 -31.2074623405 0.962615661338 -9.62600552072 0 0 0 +890 1 -28.5967573871 3.94163293173 -9.64152053715 0 0 0 +891 1 -28.6819894122 1.3585066124 -6.89464523181 0 0 0 +892 1 -31.2976403287 4.08118559417 -6.84417294292 0 0 0 +893 1 -25.6661251811 1.42388608748 -9.37217581633 0 0 0 +894 1 -22.9912923287 4.04599550994 -9.50072877759 0 0 0 +895 1 -22.9910877065 1.15132879512 -6.80955854767 0 0 0 +896 1 -25.7474385318 3.84883032794 -6.66018817149 0 0 0 +897 1 -20.4240855788 1.34565498461 -9.69251727622 0 0 0 +898 1 -17.758182026 3.99732386482 -9.56653980997 0 0 0 +899 1 -17.5818551753 1.26016367968 -7.0953055868 0 0 0 +900 1 -20.3663232075 3.86922015804 -6.9899702359 0 0 0 +901 1 -14.7454714745 1.30329303364 -9.76273814022 0 0 0 +902 1 -12.2932698133 4.09562044322 -9.5706700262 0 0 0 +903 1 -12.1993184344 1.38673379169 -6.93348146784 0 0 0 +904 1 -14.9844385842 3.92706439785 -6.73840818461 0 0 0 +905 1 -9.47290015438 1.05734604202 -9.49795793989 0 0 0 +906 1 -6.66934717853 3.9179013525 -9.45673318951 0 0 0 +907 1 -6.77817909384 1.20172317672 -6.85126874014 0 0 0 +908 1 -9.29942353781 4.19316776354 -6.9440518613 0 0 0 +909 1 -3.79763977338 1.1803227013 -9.30043563642 0 0 0 +910 1 -1.34952860416 3.93216398732 -9.56391804832 0 0 0 +911 1 -1.22155812277 1.28721023863 -6.7279244745 0 0 0 +912 1 -4.01398872652 3.90700103411 -6.77867476742 0 0 0 +913 1 1.48734466106 1.54205661113 -9.68557906785 0 0 0 +914 1 4.10882164659 4.03316900762 -9.68976482956 0 0 0 +915 1 4.01852982903 1.50403122006 -6.88161047068 0 0 0 +916 1 1.28931884043 4.14517421616 -6.88360475232 0 0 0 +917 1 6.88031993466 1.21560900654 -9.42040325157 0 0 0 +918 1 9.50860751935 3.84745617646 -9.57986150753 0 0 0 +919 1 9.47502411803 1.26469621302 -6.88435915415 0 0 0 +920 1 6.73885924378 4.0933854791 -6.78408590349 0 0 0 +921 1 12.1713855372 1.33078183164 -9.58669514153 0 0 0 +922 1 14.8974000745 3.97815187862 -9.8025772005 0 0 0 +923 1 14.7322243867 1.41657692623 -6.89563102918 0 0 0 +924 1 12.3218422102 4.06044384247 -6.89887568174 0 0 0 +925 1 17.4834719019 1.37863130112 -9.7932406333 0 0 0 +926 1 20.2923594011 4.13236244814 -9.66013621131 0 0 0 +927 1 20.1245505307 1.45394179747 -7.06540215452 0 0 0 +928 1 17.6117479875 4.16119193152 -6.89685059516 0 0 0 +929 1 22.9885941357 1.26638426374 -9.51317152595 0 0 0 +930 1 25.7351753681 4.10181205118 -9.57256883993 0 0 0 +931 1 25.5963935108 1.4841708736 -6.84471717433 0 0 0 +932 1 22.7677668558 4.20539667301 -6.92008787423 0 0 0 +933 1 28.4333214574 1.29433067731 -9.8128848806 0 0 0 +934 1 30.839023665 4.0228142774 -9.6876985468 0 0 0 +935 1 30.9733263324 1.10730186383 -6.80715562908 0 0 0 +936 1 28.323820564 4.03986895475 -6.93563152821 0 0 0 +937 1 33.7880682171 1.25624469726 -9.66653426236 0 0 0 +938 1 36.3525226011 4.2374279607 -9.40970763146 0 0 0 +939 1 36.5393267921 1.33014978643 -6.99900949675 0 0 0 +940 1 33.7480412123 4.10697468024 -6.81521997778 0 0 0 +941 1 39.2227266561 1.262425503 -9.46650129011 0 0 0 +942 1 42.2205527778 3.73515614789 -9.60296353291 0 0 0 +943 1 41.9126857149 1.4357897683 -6.82786238946 0 0 0 +944 1 39.2666375395 4.09652531386 -6.78933221579 0 0 0 +945 1 44.7629084023 1.44590719011 -9.34480565554 0 0 0 +946 1 47.4084116058 4.12680718917 -9.38394343614 0 0 0 +947 1 47.442360897 1.23489154021 -6.80215841807 0 0 0 +948 1 44.686594436 3.81083169749 -6.7289788188 0 0 0 +949 1 50.3391131396 1.45902530672 -9.38850386255 0 0 0 +950 1 52.8013219947 4.10362310054 -9.4930198462 0 0 0 +951 1 52.868235367 1.46045262963 -6.62738503788 0 0 0 +952 1 49.99628289 4.18248373236 -6.7717190657 0 0 0 +953 1 55.40125 1.35125 -9.45875 0 0 0 +954 1 58.10375 4.05375 -9.45875 0 0 0 +955 1 58.10375 1.35125 -6.75625 0 0 0 +956 1 55.40125 4.05375 -6.75625 0 0 0 +957 1 60.80625 1.35125 -9.45875 0 0 0 +958 1 63.50875 4.05375 -9.45875 0 0 0 +959 1 63.50875 1.35125 -6.75625 0 0 0 +960 1 60.80625 4.05375 -6.75625 0 0 0 +961 1 -63.50875 6.75625 -9.45875 0 0 0 +962 1 -60.80625 9.45875 -9.45875 0 0 0 +963 1 -60.80625 6.75625 -6.75625 0 0 0 +964 1 -63.50875 9.45875 -6.75625 0 0 0 +965 1 -58.10375 6.75625 -9.45875 0 0 0 +966 1 -55.40125 9.45875 -9.45875 0 0 0 +967 1 -55.40125 6.75625 -6.75625 0 0 0 +968 1 -58.10375 9.45875 -6.75625 0 0 0 +969 1 -52.7122285978 6.65827588279 -9.56509756851 0 0 0 +970 1 -49.867050475 9.29213823604 -9.4144864281 0 0 0 +971 1 -49.9722411283 6.61651643821 -6.61153772357 0 0 0 +972 1 -52.6109249597 9.39810486444 -6.83014787025 0 0 0 +973 1 -47.3927149438 6.39949697113 -9.59381199964 0 0 0 +974 1 -44.7670207727 9.44103653658 -9.54302923888 0 0 0 +975 1 -44.6845204506 6.63164372002 -6.76937250817 0 0 0 +976 1 -47.417135316 9.30400212901 -6.8640145934 0 0 0 +977 1 -41.8835115668 6.71090485705 -9.63785408615 0 0 0 +978 1 -39.2350504909 9.42953955288 -9.57250184235 0 0 0 +979 1 -39.1365218185 6.80902119684 -6.88968212863 0 0 0 +980 1 -41.7745674972 9.38901984967 -6.83232840585 0 0 0 +981 1 -36.4898162108 6.56729171413 -9.66180708511 0 0 0 +982 1 -33.8713292888 9.47740926969 -9.38751542124 0 0 0 +983 1 -33.9302336109 6.78388115493 -6.99727345503 0 0 0 +984 1 -36.4747863269 9.6165494304 -6.89782587163 0 0 0 +985 1 -31.3503460122 6.8882110205 -9.64109554523 0 0 0 +986 1 -28.5807958454 9.67086879982 -9.85260013434 0 0 0 +987 1 -28.6430616319 6.70976639471 -6.87782613485 0 0 0 +988 1 -31.1217306185 9.47851576401 -6.90175345871 0 0 0 +989 1 -25.8927339741 6.80617919847 -9.54530413187 0 0 0 +990 1 -23.1810535896 9.5794822575 -9.55134005461 0 0 0 +991 1 -23.1571099689 6.67298386697 -7.00982719947 0 0 0 +992 1 -25.8307240205 9.62507901851 -7.12163502607 0 0 0 +993 1 -20.5531670729 6.80040618338 -9.70290809461 0 0 0 +994 1 -17.5588885619 9.51917852478 -9.59480234419 0 0 0 +995 1 -17.9326882505 6.7461089128 -6.94258388402 0 0 0 +996 1 -20.3065074361 9.48132370298 -6.93997596714 0 0 0 +997 1 -14.9044896993 6.75431642624 -9.47974287676 0 0 0 +998 1 -12.3960383515 9.46592559326 -9.61806953943 0 0 0 +999 1 -12.3747519475 6.67425327953 -6.87667033263 0 0 0 +1000 1 -14.8832901189 9.51541004692 -6.92560271981 0 0 0 +1001 1 -9.54324087113 6.70467069674 -9.63159788116 0 0 0 +1002 1 -6.70413228382 9.40168236123 -9.47474118825 0 0 0 +1003 1 -6.75125432676 6.78843428599 -6.90872027556 0 0 0 +1004 1 -9.56647354161 9.37032774175 -7.04446753834 0 0 0 +1005 1 -3.97859354146 6.92764348389 -9.52082288082 0 0 0 +1006 1 -1.45349892883 9.68728307007 -9.58813538728 0 0 0 +1007 1 -1.38136748794 6.87991978569 -6.89803140543 0 0 0 +1008 1 -4.06056588635 9.4424087669 -6.86213505071 0 0 0 +1009 1 1.38108748884 6.91888388673 -9.55986683143 0 0 0 +1010 1 4.28832422691 9.50198188086 -9.55137474082 0 0 0 +1011 1 4.12127130435 6.68127604521 -6.88937094078 0 0 0 +1012 1 1.32237205619 9.49723964891 -6.63892090204 0 0 0 +1013 1 6.92411301623 6.66331768571 -9.70350582782 0 0 0 +1014 1 9.45118357509 9.5343788324 -9.61507494858 0 0 0 +1015 1 9.59428107302 6.74878903913 -6.89564240808 0 0 0 +1016 1 6.88742374233 9.31586139926 -6.93395964347 0 0 0 +1017 1 12.009472165 6.65196944159 -9.83378684658 0 0 0 +1018 1 14.8825823593 9.27211094265 -9.66498013215 0 0 0 +1019 1 14.781797725 6.79344813446 -6.95197232338 0 0 0 +1020 1 11.9377473286 9.54783477375 -7.0626425892 0 0 0 +1021 1 17.6943702359 6.76391137315 -9.76470505278 0 0 0 +1022 1 20.2504572298 9.41565047636 -9.45803142763 0 0 0 +1023 1 20.2131532756 6.68923662675 -6.75770081682 0 0 0 +1024 1 17.4076509323 9.66616471392 -6.8014175118 0 0 0 +1025 1 23.061570373 6.85222762345 -9.65025832355 0 0 0 +1026 1 25.7057381718 9.43339610835 -9.61659236994 0 0 0 +1027 1 25.7552209795 6.71033198745 -6.89161804995 0 0 0 +1028 1 23.0377488099 9.35024072534 -7.05249592509 0 0 0 +1029 1 28.393635954 6.85146546644 -9.59947996154 0 0 0 +1030 1 31.0823526869 9.42055203396 -9.33626338307 0 0 0 +1031 1 30.9871419402 6.65168454019 -6.90475236698 0 0 0 +1032 1 28.4338261758 9.24956662441 -6.70957146304 0 0 0 +1033 1 33.8101934758 6.76402874782 -9.36171183814 0 0 0 +1034 1 36.6883256197 9.31445105811 -9.78162237109 0 0 0 +1035 1 36.7764397522 6.84259060107 -6.71850460126 0 0 0 +1036 1 33.8702931504 9.34268229794 -6.95657105073 0 0 0 +1037 1 39.320369471 6.66986888162 -9.54385371315 0 0 0 +1038 1 42.1249701444 9.46449401842 -9.53439283594 0 0 0 +1039 1 42.0602377539 6.56129284611 -6.82447368713 0 0 0 +1040 1 39.4312163056 9.39168355494 -6.74678231471 0 0 0 +1041 1 44.6273415132 6.56951330081 -9.48656312444 0 0 0 +1042 1 47.1308056058 9.23844685604 -9.39077255517 0 0 0 +1043 1 47.3774411216 6.75293488134 -6.66383777927 0 0 0 +1044 1 44.6438565663 9.40988463249 -6.50747099108 0 0 0 +1045 1 49.9463455569 6.89486744387 -9.48098027532 0 0 0 +1046 1 52.6607327186 9.46305409703 -9.47004043759 0 0 0 +1047 1 52.6383956994 6.780698961 -6.68391458104 0 0 0 +1048 1 50.0824965433 9.64992285376 -6.80885505405 0 0 0 +1049 1 55.40125 6.75625 -9.45875 0 0 0 +1050 1 58.10375 9.45875 -9.45875 0 0 0 +1051 1 58.10375 6.75625 -6.75625 0 0 0 +1052 1 55.40125 9.45875 -6.75625 0 0 0 +1053 1 60.80625 6.75625 -9.45875 0 0 0 +1054 1 63.50875 9.45875 -9.45875 0 0 0 +1055 1 63.50875 6.75625 -6.75625 0 0 0 +1056 1 60.80625 9.45875 -6.75625 0 0 0 +1057 1 -63.50875 12.16125 -9.45875 0 0 0 +1058 1 -60.80625 14.86375 -9.45875 0 0 0 +1059 1 -60.80625 12.16125 -6.75625 0 0 0 +1060 1 -63.50875 14.86375 -6.75625 0 0 0 +1061 1 -58.10375 12.16125 -9.45875 0 0 0 +1062 1 -55.40125 14.86375 -9.45875 0 0 0 +1063 1 -55.40125 12.16125 -6.75625 0 0 0 +1064 1 -58.10375 14.86375 -6.75625 0 0 0 +1065 1 -52.6405472255 11.9385047321 -9.42863482943 0 0 0 +1066 1 -50.0273932982 14.7307144673 -9.48427776868 0 0 0 +1067 1 -50.0626631298 12.2230163681 -6.68244113657 0 0 0 +1068 1 -52.7346058859 14.8210610758 -6.86872315333 0 0 0 +1069 1 -47.2242791212 12.301849874 -9.45757159614 0 0 0 +1070 1 -44.5018944987 14.6695854916 -9.40206120213 0 0 0 +1071 1 -44.4473440575 11.941706711 -6.72359872332 0 0 0 +1072 1 -47.3035086247 14.6579969551 -6.69564797797 0 0 0 +1073 1 -41.9474614584 11.9997570662 -9.63629115933 0 0 0 +1074 1 -39.3486387586 14.804397415 -9.48320738247 0 0 0 +1075 1 -39.3034542308 12.2016045552 -6.63138947201 0 0 0 +1076 1 -42.0503564501 14.9453234773 -6.66095274396 0 0 0 +1077 1 -36.6254970472 12.2254599245 -9.48061388261 0 0 0 +1078 1 -33.8453764958 14.7101057008 -9.52344429755 0 0 0 +1079 1 -33.9425195443 12.1702471918 -6.79211954213 0 0 0 +1080 1 -36.6662866441 14.8439030939 -6.736468515 0 0 0 +1081 1 -31.1885039732 12.1015697738 -9.57823013068 0 0 0 +1082 1 -28.5086492449 15.0402164743 -9.41095621402 0 0 0 +1083 1 -28.4890238535 12.1150855649 -6.89866899078 0 0 0 +1084 1 -31.2362771426 14.7023644408 -6.7453280767 0 0 0 +1085 1 -25.8983829505 12.389028779 -9.63354340988 0 0 0 +1086 1 -22.9807257703 14.7650675847 -9.52870454701 0 0 0 +1087 1 -23.247156709 12.2949841499 -6.68965995791 0 0 0 +1088 1 -25.7827198474 15.0174647602 -6.87219790326 0 0 0 +1089 1 -20.1532568585 12.0913973243 -9.43428610419 0 0 0 +1090 1 -17.7197646151 14.841913542 -9.60003931065 0 0 0 +1091 1 -17.4825351408 12.0096736577 -6.5812369411 0 0 0 +1092 1 -20.2366260981 14.8222875218 -6.77203726922 0 0 0 +1093 1 -14.9902776914 12.1733180683 -9.53698563591 0 0 0 +1094 1 -12.2425036028 14.5863556085 -9.3702239611 0 0 0 +1095 1 -12.318095122 12.0021264669 -6.66335777861 0 0 0 +1096 1 -14.7713385271 14.4841961211 -6.68703507691 0 0 0 +1097 1 -9.63246859528 11.9672438359 -9.74023668454 0 0 0 +1098 1 -6.90746846923 14.9748188423 -9.47918844403 0 0 0 +1099 1 -6.7570993922 12.2286836315 -6.7977663734 0 0 0 +1100 1 -9.64559219086 14.9749110217 -6.8568859968 0 0 0 +1101 1 -4.13017045502 12.3939862764 -9.35182915543 0 0 0 +1102 1 -1.47955784571 15.001500476 -9.43275331375 0 0 0 +1103 1 -1.24878588464 12.1591098578 -6.76855753779 0 0 0 +1104 1 -4.1550596714 14.9143886069 -6.68489616808 0 0 0 +1105 1 1.4259297669 12.1724377124 -9.66342587253 0 0 0 +1106 1 3.9838029257 14.8210138588 -9.43113417021 0 0 0 +1107 1 4.05478076296 12.2624610798 -6.84812567815 0 0 0 +1108 1 1.44537996519 14.9743102529 -6.62116884862 0 0 0 +1109 1 6.72185012046 12.3064536085 -9.63296534573 0 0 0 +1110 1 9.39450612145 15.0535222301 -9.46538908416 0 0 0 +1111 1 9.34329870445 12.2847162629 -6.91855401835 0 0 0 +1112 1 6.74751814391 15.0274983516 -6.73691785509 0 0 0 +1113 1 12.1710255022 12.1619012057 -9.56335668867 0 0 0 +1114 1 14.8186864832 14.9770479229 -9.60675936283 0 0 0 +1115 1 14.6848881733 12.0584251558 -6.78282325418 0 0 0 +1116 1 12.175191508 15.1509308641 -6.85612721403 0 0 0 +1117 1 17.4563855896 12.1322439647 -9.55173303783 0 0 0 +1118 1 20.2285360063 14.7918005917 -9.35750083923 0 0 0 +1119 1 20.4101786266 12.2167717207 -6.76604543276 0 0 0 +1120 1 17.4257149043 14.6845937684 -6.81980594627 0 0 0 +1121 1 22.9292926285 12.1739782357 -9.55122583947 0 0 0 +1122 1 25.8436926659 14.6590075994 -9.45154364006 0 0 0 +1123 1 25.8422939747 11.8871558685 -6.99296256754 0 0 0 +1124 1 23.0764687102 14.9527029052 -7.12728310791 0 0 0 +1125 1 28.3072021113 11.9588768561 -9.52798009173 0 0 0 +1126 1 31.2326472023 14.6363407986 -9.37787502413 0 0 0 +1127 1 31.1464355643 12.064570902 -6.52464380787 0 0 0 +1128 1 28.5549080219 14.8566850284 -7.0403633793 0 0 0 +1129 1 33.932455034 11.9373695683 -9.56609597157 0 0 0 +1130 1 36.7887285224 14.6626952079 -9.37488172596 0 0 0 +1131 1 36.6966712269 12.0181719695 -6.94647141169 0 0 0 +1132 1 33.8901012742 14.7474286254 -6.71442704999 0 0 0 +1133 1 39.3846655807 12.0974230318 -9.43803745089 0 0 0 +1134 1 41.9733655579 14.9010452484 -9.61104420036 0 0 0 +1135 1 42.1715685743 12.2841288094 -6.93599023249 0 0 0 +1136 1 39.2550183725 14.7635045209 -6.76731964366 0 0 0 +1137 1 44.6011776952 12.1970282597 -9.58013492828 0 0 0 +1138 1 47.1081987135 15.0667892631 -9.62400346626 0 0 0 +1139 1 47.0889959509 12.1947072829 -6.78786586088 0 0 0 +1140 1 44.6899624209 15.1230555829 -6.95928329414 0 0 0 +1141 1 49.7367424525 12.1850467572 -9.66437142329 0 0 0 +1142 1 52.6027139111 14.7722244275 -9.60610990409 0 0 0 +1143 1 52.6211907863 12.1309465764 -6.81701632965 0 0 0 +1144 1 49.8116550289 14.8917574136 -6.81107475951 0 0 0 +1145 1 55.40125 12.16125 -9.45875 0 0 0 +1146 1 58.10375 14.86375 -9.45875 0 0 0 +1147 1 58.10375 12.16125 -6.75625 0 0 0 +1148 1 55.40125 14.86375 -6.75625 0 0 0 +1149 1 60.80625 12.16125 -9.45875 0 0 0 +1150 1 63.50875 14.86375 -9.45875 0 0 0 +1151 1 63.50875 12.16125 -6.75625 0 0 0 +1152 1 60.80625 14.86375 -6.75625 0 0 0 +1153 1 -63.50875 -14.86375 -4.05375 0 0 0 +1154 1 -60.80625 -12.16125 -4.05375 0 0 0 +1155 1 -60.80625 -14.86375 -1.35125 0 0 0 +1156 1 -63.50875 -12.16125 -1.35125 0 0 0 +1157 1 -58.10375 -14.86375 -4.05375 0 0 0 +1158 1 -55.40125 -12.16125 -4.05375 0 0 0 +1159 1 -55.40125 -14.86375 -1.35125 0 0 0 +1160 1 -58.10375 -12.16125 -1.35125 0 0 0 +1161 1 -52.6003353614 -14.9024173384 -3.88501205687 0 0 0 +1162 1 -50.1025069425 -12.3204817976 -3.9955780487 0 0 0 +1163 1 -50.0108279976 -14.9133608055 -1.18563054665 0 0 0 +1164 1 -52.8296051346 -12.1505778788 -1.37624215872 0 0 0 +1165 1 -47.613609817 -15.1286432524 -3.9893223383 0 0 0 +1166 1 -44.7494477177 -12.2861221963 -3.88338953058 0 0 0 +1167 1 -44.6882423585 -14.9728286661 -1.1681089692 0 0 0 +1168 1 -47.3558496572 -12.423240089 -1.37295460412 0 0 0 +1169 1 -41.9715606587 -14.759002325 -4.05633147223 0 0 0 +1170 1 -39.2953057797 -12.009965716 -4.05426368753 0 0 0 +1171 1 -39.3322686212 -14.8943991359 -1.36466573375 0 0 0 +1172 1 -42.0096944973 -12.0523892901 -1.32017387613 0 0 0 +1173 1 -36.5564144546 -14.7627045998 -4.30705286275 0 0 0 +1174 1 -33.7130773832 -12.1475704699 -4.00261585971 0 0 0 +1175 1 -33.9269201515 -14.9120357752 -1.38767158727 0 0 0 +1176 1 -36.3882622449 -12.2533421794 -1.47985219626 0 0 0 +1177 1 -31.0770682253 -15.0372885823 -4.16524756211 0 0 0 +1178 1 -28.3282109231 -12.2604400165 -4.11653045055 0 0 0 +1179 1 -28.3895477768 -14.875862308 -1.4513570252 0 0 0 +1180 1 -31.0641700734 -12.3372627436 -1.53108446041 0 0 0 +1181 1 -25.8359810417 -14.9154608382 -4.17265994686 0 0 0 +1182 1 -23.0274328844 -12.2004922514 -4.21509880078 0 0 0 +1183 1 -22.7993476507 -14.8957836389 -1.47173955436 0 0 0 +1184 1 -25.719053698 -12.2063222986 -1.49820432237 0 0 0 +1185 1 -19.9885562479 -15.0956205071 -4.19882325144 0 0 0 +1186 1 -17.3729143832 -12.3538719266 -4.04878057888 0 0 0 +1187 1 -17.4371832293 -15.1241960582 -1.37996104415 0 0 0 +1188 1 -20.2503923506 -12.18659657 -1.60625238388 0 0 0 +1189 1 -14.8203335621 -15.0550135236 -4.09407227032 0 0 0 +1190 1 -12.2479743536 -12.2732902071 -4.02080651756 0 0 0 +1191 1 -12.1290437273 -15.0023205408 -1.18255830915 0 0 0 +1192 1 -14.7614390999 -12.2278882516 -1.38390976522 0 0 0 +1193 1 -9.65152921817 -14.9117454115 -3.95232751182 0 0 0 +1194 1 -7.02735281584 -12.1528838899 -4.01073485879 0 0 0 +1195 1 -6.8237476456 -14.8170116174 -1.36581217168 0 0 0 +1196 1 -9.69344296268 -12.1856376891 -1.37006166524 0 0 0 +1197 1 -4.33327859141 -14.9996433743 -4.27858041882 0 0 0 +1198 1 -1.36847246508 -12.224360661 -4.02658179323 0 0 0 +1199 1 -1.44643880952 -15.0847199707 -1.5391289476 0 0 0 +1200 1 -4.03782822954 -12.2314089535 -1.45725373833 0 0 0 +1201 1 1.34843682014 -14.7577955701 -3.99696222127 0 0 0 +1202 1 3.98414115811 -12.1448802439 -3.85260189205 0 0 0 +1203 1 4.05475791089 -14.9836800422 -1.2233652296 0 0 0 +1204 1 1.3722140134 -12.0856575253 -1.25300777203 0 0 0 +1205 1 6.70863907503 -14.8536332422 -3.80565517188 0 0 0 +1206 1 9.2357230288 -12.2687910903 -4.03668293418 0 0 0 +1207 1 9.55385802125 -14.9107474793 -1.31378865335 0 0 0 +1208 1 6.78998106234 -12.0718174625 -1.27256984948 0 0 0 +1209 1 12.1592105598 -14.8022797493 -4.0542350816 0 0 0 +1210 1 14.9965169927 -12.0641409267 -4.11610950196 0 0 0 +1211 1 14.8548445124 -15.101567407 -1.36787377708 0 0 0 +1212 1 12.1931792955 -12.4435609575 -1.3680526737 0 0 0 +1213 1 17.390393563 -14.9652659647 -4.1567167837 0 0 0 +1214 1 20.2991622501 -12.1338115968 -4.13210572067 0 0 0 +1215 1 20.4049325987 -14.8655175472 -1.6195283656 0 0 0 +1216 1 17.658849822 -12.1912538189 -1.54006117407 0 0 0 +1217 1 23.1716132112 -14.9091369125 -4.40344192185 0 0 0 +1218 1 26.092182864 -12.2380278512 -4.57280223576 0 0 0 +1219 1 25.9472107104 -14.7199137466 -1.59703098679 0 0 0 +1220 1 22.9947809282 -12.0989586141 -1.62198082057 0 0 0 +1221 1 28.4350729077 -15.0189294997 -4.35167111153 0 0 0 +1222 1 31.0481894889 -12.0491834001 -4.00431235415 0 0 0 +1223 1 31.0792872507 -15.1294797514 -1.4912495131 0 0 0 +1224 1 28.6365637591 -12.1374075953 -1.41010367913 0 0 0 +1225 1 33.888180763 -14.9478622979 -4.01850495321 0 0 0 +1226 1 36.3526824548 -12.2864400335 -3.9203446168 0 0 0 +1227 1 36.4846991928 -15.0962667003 -1.42166501993 0 0 0 +1228 1 33.5310442473 -12.0013454855 -1.27080930852 0 0 0 +1229 1 39.3824582833 -14.8609998941 -4.06097904342 0 0 0 +1230 1 41.8650647009 -12.2541444213 -3.83656313498 0 0 0 +1231 1 41.8209029301 -14.9120592572 -1.36005455465 0 0 0 +1232 1 39.1294938229 -12.215271226 -1.45875923662 0 0 0 +1233 1 44.6694000298 -14.8881224962 -4.01176297353 0 0 0 +1234 1 47.3837762387 -12.2369613894 -3.93967724243 0 0 0 +1235 1 47.1899556978 -15.0141792329 -1.29722218046 0 0 0 +1236 1 44.5596688698 -11.8524461612 -1.44254654697 0 0 0 +1237 1 49.9573043208 -14.947033511 -3.96206753934 0 0 0 +1238 1 52.6093527903 -12.3000962714 -3.96049922289 0 0 0 +1239 1 52.5733378744 -14.7802190084 -1.28295034069 0 0 0 +1240 1 49.9804873863 -12.003083173 -1.08422649707 0 0 0 +1241 1 55.40125 -14.86375 -4.05375 0 0 0 +1242 1 58.10375 -12.16125 -4.05375 0 0 0 +1243 1 58.10375 -14.86375 -1.35125 0 0 0 +1244 1 55.40125 -12.16125 -1.35125 0 0 0 +1245 1 60.80625 -14.86375 -4.05375 0 0 0 +1246 1 63.50875 -12.16125 -4.05375 0 0 0 +1247 1 63.50875 -14.86375 -1.35125 0 0 0 +1248 1 60.80625 -12.16125 -1.35125 0 0 0 +1249 1 -63.50875 -9.45875 -4.05375 0 0 0 +1250 1 -60.80625 -6.75625 -4.05375 0 0 0 +1251 1 -60.80625 -9.45875 -1.35125 0 0 0 +1252 1 -63.50875 -6.75625 -1.35125 0 0 0 +1253 1 -58.10375 -9.45875 -4.05375 0 0 0 +1254 1 -55.40125 -6.75625 -4.05375 0 0 0 +1255 1 -55.40125 -9.45875 -1.35125 0 0 0 +1256 1 -58.10375 -6.75625 -1.35125 0 0 0 +1257 1 -52.6465750131 -9.34701116705 -3.9715529754 0 0 0 +1258 1 -49.9411391723 -6.59082582305 -4.19033035577 0 0 0 +1259 1 -50.2297557143 -9.4681678446 -1.41683745457 0 0 0 +1260 1 -52.6553152752 -6.59904074453 -1.26028960288 0 0 0 +1261 1 -47.3525849197 -9.37633129547 -4.0654133717 0 0 0 +1262 1 -44.7003173342 -6.62381228183 -4.04980418465 0 0 0 +1263 1 -44.6695105775 -9.34118082243 -1.35111100242 0 0 0 +1264 1 -47.4066348659 -6.66129318063 -1.36230591829 0 0 0 +1265 1 -42.0929840996 -9.41581842848 -4.16407667685 0 0 0 +1266 1 -39.2675803026 -6.66198964804 -3.99286744614 0 0 0 +1267 1 -39.3154285877 -9.40841546967 -1.58863602899 0 0 0 +1268 1 -41.893536647 -6.51781167707 -1.4993831137 0 0 0 +1269 1 -36.2779050637 -9.42829708062 -4.23778860505 0 0 0 +1270 1 -33.810315495 -6.87946800434 -4.33871346937 0 0 0 +1271 1 -33.5617453016 -9.49619198325 -1.61140442036 0 0 0 +1272 1 -36.3301889179 -6.74934974206 -1.45275682555 0 0 0 +1273 1 -31.0722694795 -9.55242543641 -4.37893874683 0 0 0 +1274 1 -28.5101081599 -6.70799984885 -4.21229451358 0 0 0 +1275 1 -28.374442027 -9.71123308303 -1.69182675352 0 0 0 +1276 1 -31.1058786142 -6.73787647809 -1.5570894739 0 0 0 +1277 1 -25.6841524994 -9.53318944994 -4.03981475765 0 0 0 +1278 1 -23.0054576949 -6.66286591142 -4.13351091554 0 0 0 +1279 1 -22.8925853416 -9.58192326677 -1.53584692705 0 0 0 +1280 1 -25.5340813847 -6.85606392925 -1.4702201934 0 0 0 +1281 1 -20.0610389157 -9.76465329274 -4.41976251603 0 0 0 +1282 1 -17.6259083889 -6.71890063322 -4.39272145918 0 0 0 +1283 1 -17.4799731656 -9.46818018835 -1.52578497422 0 0 0 +1284 1 -20.3522265352 -6.94900461305 -1.6323508044 0 0 0 +1285 1 -14.9312194565 -9.44662606593 -4.29116821626 0 0 0 +1286 1 -12.2281479032 -6.86855672191 -4.24538524148 0 0 0 +1287 1 -12.1731726293 -9.4423115972 -1.57670363547 0 0 0 +1288 1 -14.8929391321 -6.80126526576 -1.62975262776 0 0 0 +1289 1 -9.66989847806 -9.57887092719 -4.20667675396 0 0 0 +1290 1 -6.64825248375 -6.55501660236 -4.02320192102 0 0 0 +1291 1 -6.96018478241 -9.60835511641 -1.43841713774 0 0 0 +1292 1 -9.72061539835 -6.79209978574 -1.46211269315 0 0 0 +1293 1 -4.09355109996 -9.46404413156 -3.91442399588 0 0 0 +1294 1 -1.40464475265 -6.82821891318 -4.04401698588 0 0 0 +1295 1 -1.29002430461 -9.28738835807 -1.3060733826 0 0 0 +1296 1 -3.92390367764 -6.71036442307 -1.44182316383 0 0 0 +1297 1 1.41025718191 -9.46508382346 -4.19853584394 0 0 0 +1298 1 3.99008469552 -6.89438316601 -4.18247817126 0 0 0 +1299 1 4.03087051072 -9.46072481441 -1.26654068249 0 0 0 +1300 1 1.32891230215 -6.8266798026 -1.5257440598 0 0 0 +1301 1 6.75127509259 -9.55787501038 -4.05504087553 0 0 0 +1302 1 9.41168302958 -6.90898430863 -4.1202409253 0 0 0 +1303 1 9.45774770261 -9.60214085774 -1.38226797093 0 0 0 +1304 1 6.7572197141 -6.82546463653 -1.45126230986 0 0 0 +1305 1 12.0624478585 -9.62605370964 -4.28807911183 0 0 0 +1306 1 14.6045838682 -6.55536466916 -4.23996151683 0 0 0 +1307 1 14.9107515966 -9.31663527085 -1.42323803749 0 0 0 +1308 1 12.1926001642 -6.91880215668 -1.43190052195 0 0 0 +1309 1 17.7867124514 -9.36336646863 -4.03269717415 0 0 0 +1310 1 20.4112975417 -6.66998291865 -4.13700479007 0 0 0 +1311 1 20.2044623036 -9.3173376133 -1.34738820245 0 0 0 +1312 1 17.5279960301 -6.60799367658 -1.49903677431 0 0 0 +1313 1 23.1261811788 -9.49594375708 -4.14753532081 0 0 0 +1314 1 25.7020943154 -6.83135270401 -4.18380144686 0 0 0 +1315 1 25.6825805597 -9.56321435477 -1.31598352974 0 0 0 +1316 1 23.0224059846 -6.82273600804 -1.4507372352 0 0 0 +1317 1 28.5271063913 -9.33946804523 -4.15956704911 0 0 0 +1318 1 31.0346408476 -6.59854457961 -4.11411480063 0 0 0 +1319 1 30.9430187733 -9.33235798406 -1.4461544054 0 0 0 +1320 1 28.4690488097 -6.80389316529 -1.40357354315 0 0 0 +1321 1 33.801899073 -9.34317183241 -3.92195080906 0 0 0 +1322 1 36.5420874418 -6.73968907663 -4.1123223482 0 0 0 +1323 1 36.4603089985 -9.44061523613 -1.26840260849 0 0 0 +1324 1 33.6250744865 -6.73669109804 -1.34113605985 0 0 0 +1325 1 39.2405634486 -9.64515524896 -4.20160272368 0 0 0 +1326 1 41.811194985 -6.7833365335 -3.89020794161 0 0 0 +1327 1 41.5387120273 -9.32641934278 -1.4181187415 0 0 0 +1328 1 38.9177312671 -6.8885458492 -1.29456364533 0 0 0 +1329 1 44.5229819072 -9.37135565404 -4.03159504382 0 0 0 +1330 1 47.3986500808 -6.78888966816 -4.1149510616 0 0 0 +1331 1 47.3753113139 -9.45596638111 -1.33486262615 0 0 0 +1332 1 44.4228527349 -6.78478357781 -1.24135686995 0 0 0 +1333 1 50.0505115471 -9.59798074193 -4.01169066189 0 0 0 +1334 1 52.7600620936 -6.87153134137 -4.06939186033 0 0 0 +1335 1 52.5859106212 -9.45496145643 -1.30052083037 0 0 0 +1336 1 50.1393402277 -6.81950028608 -1.55770336391 0 0 0 +1337 1 55.40125 -9.45875 -4.05375 0 0 0 +1338 1 58.10375 -6.75625 -4.05375 0 0 0 +1339 1 58.10375 -9.45875 -1.35125 0 0 0 +1340 1 55.40125 -6.75625 -1.35125 0 0 0 +1341 1 60.80625 -9.45875 -4.05375 0 0 0 +1342 1 63.50875 -6.75625 -4.05375 0 0 0 +1343 1 63.50875 -9.45875 -1.35125 0 0 0 +1344 1 60.80625 -6.75625 -1.35125 0 0 0 +1345 1 -63.50875 -4.05375 -4.05375 0 0 0 +1346 1 -60.80625 -1.35125 -4.05375 0 0 0 +1347 1 -60.80625 -4.05375 -1.35125 0 0 0 +1348 1 -63.50875 -1.35125 -1.35125 0 0 0 +1349 1 -58.10375 -4.05375 -4.05375 0 0 0 +1350 1 -55.40125 -1.35125 -4.05375 0 0 0 +1351 1 -55.40125 -4.05375 -1.35125 0 0 0 +1352 1 -58.10375 -1.35125 -1.35125 0 0 0 +1353 1 -52.7850116641 -4.22160675376 -4.24015339454 0 0 0 +1354 1 -50.0037226008 -1.32161262963 -3.99304213156 0 0 0 +1355 1 -50.0840367507 -3.8572126806 -1.31242798208 0 0 0 +1356 1 -52.8222554347 -1.58771154444 -1.45434470732 0 0 0 +1357 1 -47.3339757172 -3.92250788007 -4.09010995369 0 0 0 +1358 1 -44.7979165319 -1.30805723973 -4.22984059866 0 0 0 +1359 1 -44.8533871388 -3.94018425482 -1.43518298072 0 0 0 +1360 1 -47.5335423817 -1.18226630607 -1.32368656418 0 0 0 +1361 1 -42.0193810857 -3.86165098997 -4.20771314497 0 0 0 +1362 1 -39.2206925651 -1.3866553519 -4.06734951114 0 0 0 +1363 1 -38.9710356455 -3.9629687181 -1.31099750502 0 0 0 +1364 1 -41.8710562174 -1.48826595045 -1.51341974677 0 0 0 +1365 1 -36.5787366392 -4.09844294774 -4.03462158403 0 0 0 +1366 1 -33.8562440146 -1.22208722645 -4.25301540641 0 0 0 +1367 1 -33.7704505572 -4.0419828916 -1.49011087633 0 0 0 +1368 1 -36.3718961195 -1.5224901112 -1.3120420741 0 0 0 +1369 1 -31.2509435887 -4.22662081422 -4.22652254393 0 0 0 +1370 1 -28.5137708055 -1.52594808456 -4.33472880558 0 0 0 +1371 1 -28.4296432985 -4.0736942747 -1.46507152759 0 0 0 +1372 1 -31.0622464729 -1.63933823801 -1.50862158895 0 0 0 +1373 1 -25.6768237862 -4.02724072703 -4.19118374244 0 0 0 +1374 1 -23.026817444 -1.38968461341 -4.22674700917 0 0 0 +1375 1 -22.97014724 -4.13012586595 -1.4361667605 0 0 0 +1376 1 -25.7861785832 -1.68047583109 -1.51272475626 0 0 0 +1377 1 -20.505132222 -4.04381929225 -4.43204678909 0 0 0 +1378 1 -17.574902399 -1.56166546985 -3.95999552944 0 0 0 +1379 1 -17.6127453023 -4.36517356328 -1.38781422202 0 0 0 +1380 1 -20.2552817497 -1.55972547375 -1.52218222125 0 0 0 +1381 1 -14.829549335 -4.12094153388 -4.16432759086 0 0 0 +1382 1 -12.2563341344 -1.3119184306 -4.03121497043 0 0 0 +1383 1 -12.3087187453 -4.10963984353 -1.36763672788 0 0 0 +1384 1 -15.0124455866 -1.46143493431 -1.38823267238 0 0 0 +1385 1 -9.5232868945 -3.95556917023 -4.05899439001 0 0 0 +1386 1 -6.70864890438 -1.27148440875 -4.04004130311 0 0 0 +1387 1 -6.62568662837 -4.2272528659 -1.20579133294 0 0 0 +1388 1 -9.55451069607 -1.40785960368 -1.57504688639 0 0 0 +1389 1 -3.97920095423 -4.14703200055 -4.15422401144 0 0 0 +1390 1 -1.45115564694 -1.41015039236 -4.13279766667 0 0 0 +1391 1 -1.05717419825 -4.00711675133 -1.4305528206 0 0 0 +1392 1 -4.01795081291 -1.39373464984 -1.53104766992 0 0 0 +1393 1 1.43845943588 -4.14494800533 -4.17537250549 0 0 0 +1394 1 4.13473008326 -1.29883685586 -3.92884141625 0 0 0 +1395 1 4.02199964185 -4.05412682974 -1.43262313962 0 0 0 +1396 1 1.3743438532 -1.32697636006 -1.51540883967 0 0 0 +1397 1 6.89042979258 -4.00193239717 -4.13006821906 0 0 0 +1398 1 9.36949297216 -1.29203556424 -3.83344605696 0 0 0 +1399 1 9.50661573065 -4.15929481504 -1.48841499438 0 0 0 +1400 1 6.6715538871 -1.33586645892 -1.30700757226 0 0 0 +1401 1 12.0670203502 -4.04662195692 -4.21270246396 0 0 0 +1402 1 14.6833024872 -1.2735673684 -4.09364364236 0 0 0 +1403 1 14.7369542898 -4.042939799 -1.63824055374 0 0 0 +1404 1 12.1835015398 -1.41194137814 -1.42770412544 0 0 0 +1405 1 17.5534003626 -3.92511929774 -4.10723465147 0 0 0 +1406 1 20.2141427116 -1.27221674773 -4.35663308727 0 0 0 +1407 1 20.164377945 -4.03648376686 -1.61108538354 0 0 0 +1408 1 17.3669884097 -1.03107712223 -1.44711203948 0 0 0 +1409 1 23.0827382222 -4.09497669113 -4.11649119335 0 0 0 +1410 1 25.4985296199 -1.29408763314 -4.20721482676 0 0 0 +1411 1 25.7740700147 -4.1679915746 -1.43063528478 0 0 0 +1412 1 22.853207428 -1.5523009731 -1.45114618689 0 0 0 +1413 1 28.2704004744 -4.1599035547 -4.30841005935 0 0 0 +1414 1 31.0624401223 -1.40543249796 -4.14730502594 0 0 0 +1415 1 31.0542050542 -3.99366159567 -1.36031854221 0 0 0 +1416 1 28.2197342137 -1.35130920857 -1.52063598811 0 0 0 +1417 1 33.8737109142 -3.8836371276 -4.035935714 0 0 0 +1418 1 36.607407572 -1.25092227819 -4.1763396025 0 0 0 +1419 1 36.4419623038 -4.05002874827 -1.29091993842 0 0 0 +1420 1 33.8006865812 -1.32247412944 -1.42943592258 0 0 0 +1421 1 39.1788543019 -3.98350218234 -3.8534874577 0 0 0 +1422 1 41.9163396687 -1.36333962628 -4.12945345282 0 0 0 +1423 1 42.120204399 -3.98877630081 -1.39488196199 0 0 0 +1424 1 39.4248405771 -1.2260664669 -1.49474274865 0 0 0 +1425 1 44.771800131 -4.20969947642 -3.84844415283 0 0 0 +1426 1 47.4260230625 -1.46906413607 -4.05653114071 0 0 0 +1427 1 47.3985487835 -4.19974614794 -1.42438539766 0 0 0 +1428 1 44.7017241667 -1.33944153824 -1.42744388327 0 0 0 +1429 1 50.0944056735 -4.15277587867 -4.02788000728 0 0 0 +1430 1 52.6975771211 -1.41398882816 -3.99217527357 0 0 0 +1431 1 52.7458542821 -3.99598640963 -1.40199467467 0 0 0 +1432 1 50.0023049106 -1.41576239778 -1.25134900817 0 0 0 +1433 1 55.40125 -4.05375 -4.05375 0 0 0 +1434 1 58.10375 -1.35125 -4.05375 0 0 0 +1435 1 58.10375 -4.05375 -1.35125 0 0 0 +1436 1 55.40125 -1.35125 -1.35125 0 0 0 +1437 1 60.80625 -4.05375 -4.05375 0 0 0 +1438 1 63.50875 -1.35125 -4.05375 0 0 0 +1439 1 63.50875 -4.05375 -1.35125 0 0 0 +1440 1 60.80625 -1.35125 -1.35125 0 0 0 +1441 1 -63.50875 1.35125 -4.05375 0 0 0 +1442 1 -60.80625 4.05375 -4.05375 0 0 0 +1443 1 -60.80625 1.35125 -1.35125 0 0 0 +1444 1 -63.50875 4.05375 -1.35125 0 0 0 +1445 1 -58.10375 1.35125 -4.05375 0 0 0 +1446 1 -55.40125 4.05375 -4.05375 0 0 0 +1447 1 -55.40125 1.35125 -1.35125 0 0 0 +1448 1 -58.10375 4.05375 -1.35125 0 0 0 +1449 1 -52.7388938965 1.47327488896 -3.99654210894 0 0 0 +1450 1 -49.9036544128 4.15342393768 -3.99670926474 0 0 0 +1451 1 -50.1560601063 1.50165148686 -1.37890062305 0 0 0 +1452 1 -52.777187059 4.28695418014 -1.32045895248 0 0 0 +1453 1 -47.37699735 1.30365118694 -4.03890782097 0 0 0 +1454 1 -44.4856006399 3.97511279035 -3.9649933054 0 0 0 +1455 1 -44.6129155196 1.24043386968 -1.3012455591 0 0 0 +1456 1 -47.221482644 4.02105643467 -1.43701430683 0 0 0 +1457 1 -41.8350983398 1.30730916619 -3.93294879168 0 0 0 +1458 1 -39.1804114483 4.00166757554 -4.20739446969 0 0 0 +1459 1 -38.9626967268 1.13625850989 -1.50855684136 0 0 0 +1460 1 -41.7901505404 3.91687479795 -1.42536677594 0 0 0 +1461 1 -36.5527980324 1.38981166084 -4.21821913321 0 0 0 +1462 1 -33.8464424968 3.95655235891 -4.20360609497 0 0 0 +1463 1 -33.7590141093 1.34518677306 -1.37889865972 0 0 0 +1464 1 -36.5226345241 3.94712506133 -1.46183638682 0 0 0 +1465 1 -31.1082675561 1.26980234423 -3.99506057998 0 0 0 +1466 1 -28.4805734806 4.15236933219 -4.10709052527 0 0 0 +1467 1 -28.4744887214 0.880523413134 -1.28016230164 0 0 0 +1468 1 -31.3058905887 4.14759318654 -1.60179224676 0 0 0 +1469 1 -25.7666060477 0.985027564448 -4.12621204012 0 0 0 +1470 1 -23.0683415147 3.79606823414 -4.20424956175 0 0 0 +1471 1 -22.9889425829 1.1610771666 -1.66043756202 0 0 0 +1472 1 -25.7722432639 3.91288669779 -1.49076937079 0 0 0 +1473 1 -20.2659716124 1.16813221525 -4.13257915455 0 0 0 +1474 1 -17.5815892665 4.02769657036 -4.17068502156 0 0 0 +1475 1 -17.6884675595 1.37678463857 -1.46539721481 0 0 0 +1476 1 -20.6068339118 3.956281561 -1.63049560378 0 0 0 +1477 1 -15.0594081503 1.38618120361 -4.1836851729 0 0 0 +1478 1 -12.2965207723 4.03739945213 -4.00511191914 0 0 0 +1479 1 -12.32077267 1.40366133025 -1.59011863722 0 0 0 +1480 1 -15.1673772047 4.09046882466 -1.55609581988 0 0 0 +1481 1 -9.46769441699 1.42838977513 -4.19241527514 0 0 0 +1482 1 -6.72488375107 3.94790362485 -4.32060138916 0 0 0 +1483 1 -6.86685732705 1.26889884342 -1.44900952125 0 0 0 +1484 1 -9.43808880222 3.96183319348 -1.409527961 0 0 0 +1485 1 -4.05334518962 1.32553902532 -3.98920358367 0 0 0 +1486 1 -1.34476756839 3.99158385339 -4.31948897043 0 0 0 +1487 1 -1.33045566876 1.34891449708 -1.36929888736 0 0 0 +1488 1 -4.0491056056 4.12247439678 -1.37883362445 0 0 0 +1489 1 1.29376481825 1.46110629911 -4.18421124985 0 0 0 +1490 1 4.12706218008 4.06517448398 -4.01902534566 0 0 0 +1491 1 4.09707819708 1.29245297812 -1.51675499826 0 0 0 +1492 1 1.22543199855 4.05219880836 -1.54258525822 0 0 0 +1493 1 7.00526075914 1.438774597 -3.97273512599 0 0 0 +1494 1 9.49960005323 4.11832893928 -4.21964332384 0 0 0 +1495 1 9.57720732984 1.32147632497 -1.4025982009 0 0 0 +1496 1 6.86587514083 4.10399429122 -1.35002859807 0 0 0 +1497 1 12.2045702885 1.30976872061 -4.02396445451 0 0 0 +1498 1 14.7420415924 4.12065232849 -4.33189408879 0 0 0 +1499 1 14.666137793 1.49321469848 -1.4128092973 0 0 0 +1500 1 12.0120306854 4.02836245939 -1.46673183968 0 0 0 +1501 1 17.3514622743 1.33922586222 -4.22121683936 0 0 0 +1502 1 20.373116966 4.03347778762 -4.15679497268 0 0 0 +1503 1 20.1092578066 1.3702687856 -1.64918069963 0 0 0 +1504 1 17.3737256363 4.15897900992 -1.69528440881 0 0 0 +1505 1 22.9618670235 1.37651993939 -4.18548360717 0 0 0 +1506 1 25.5245366601 4.10460763363 -4.04877452563 0 0 0 +1507 1 25.6040096592 1.30375954117 -1.43478980743 0 0 0 +1508 1 22.9334377155 4.02517303658 -1.38660582527 0 0 0 +1509 1 28.3494464983 1.4939764763 -4.20040830791 0 0 0 +1510 1 31.0464237267 3.87212492971 -4.19356927642 0 0 0 +1511 1 30.9821478998 1.11745619349 -1.40226846809 0 0 0 +1512 1 28.3134937772 3.95642051213 -1.47967006653 0 0 0 +1513 1 33.7909515015 1.13060924444 -4.21998023378 0 0 0 +1514 1 36.5613547633 4.12353363124 -4.36433113895 0 0 0 +1515 1 36.4981668706 1.32735137829 -1.66683750769 0 0 0 +1516 1 33.8887522895 3.97584473704 -1.58498912868 0 0 0 +1517 1 39.2566363344 1.49187164015 -4.11875626139 0 0 0 +1518 1 41.9309038778 4.10973422137 -3.86551329735 0 0 0 +1519 1 42.070863132 1.3545755342 -1.29431507638 0 0 0 +1520 1 39.2681426409 3.97711495479 -1.42455666459 0 0 0 +1521 1 44.4824794712 1.32169535442 -3.96500498245 0 0 0 +1522 1 47.3901909494 4.01838010479 -4.16156287475 0 0 0 +1523 1 47.5108976982 1.44049463658 -1.45667596206 0 0 0 +1524 1 44.7315760569 3.9177137697 -1.33991929588 0 0 0 +1525 1 49.9576641851 1.40725595774 -4.0241749533 0 0 0 +1526 1 52.7918898379 4.05049518727 -3.9390776023 0 0 0 +1527 1 52.6836780584 1.29163097226 -1.37007926337 0 0 0 +1528 1 50.2083544333 4.20823683094 -1.31694511397 0 0 0 +1529 1 55.40125 1.35125 -4.05375 0 0 0 +1530 1 58.10375 4.05375 -4.05375 0 0 0 +1531 1 58.10375 1.35125 -1.35125 0 0 0 +1532 1 55.40125 4.05375 -1.35125 0 0 0 +1533 1 60.80625 1.35125 -4.05375 0 0 0 +1534 1 63.50875 4.05375 -4.05375 0 0 0 +1535 1 63.50875 1.35125 -1.35125 0 0 0 +1536 1 60.80625 4.05375 -1.35125 0 0 0 +1537 1 -63.50875 6.75625 -4.05375 0 0 0 +1538 1 -60.80625 9.45875 -4.05375 0 0 0 +1539 1 -60.80625 6.75625 -1.35125 0 0 0 +1540 1 -63.50875 9.45875 -1.35125 0 0 0 +1541 1 -58.10375 6.75625 -4.05375 0 0 0 +1542 1 -55.40125 9.45875 -4.05375 0 0 0 +1543 1 -55.40125 6.75625 -1.35125 0 0 0 +1544 1 -58.10375 9.45875 -1.35125 0 0 0 +1545 1 -52.6717181458 6.80452497206 -4.18748141406 0 0 0 +1546 1 -49.8166337467 9.53748401059 -4.19005765705 0 0 0 +1547 1 -49.9298076285 6.83115964292 -1.37047630494 0 0 0 +1548 1 -52.4039910971 9.3843488026 -1.5216715979 0 0 0 +1549 1 -47.2888425986 6.87730864893 -4.0242649868 0 0 0 +1550 1 -44.4058010225 9.42435535787 -3.98146032291 0 0 0 +1551 1 -44.4746144037 6.50448585118 -1.42464600406 0 0 0 +1552 1 -47.1763295997 9.46397747392 -1.24925583019 0 0 0 +1553 1 -41.7537694273 6.74802361996 -3.95753517772 0 0 0 +1554 1 -39.2149116155 9.40686546072 -4.00547512654 0 0 0 +1555 1 -39.2358103433 6.56975921504 -1.43021202981 0 0 0 +1556 1 -41.7323904817 9.25796649749 -1.33295561272 0 0 0 +1557 1 -36.5782281858 6.7348580375 -4.29456439445 0 0 0 +1558 1 -34.0234884132 9.40416573114 -3.85506641304 0 0 0 +1559 1 -34.2095251818 6.84247300029 -1.45833971572 0 0 0 +1560 1 -36.62166761 9.47811898109 -1.44490024195 0 0 0 +1561 1 -31.4672460848 6.74535722298 -4.18758662418 0 0 0 +1562 1 -28.4794296333 9.471502597 -4.14531015534 0 0 0 +1563 1 -28.4633268154 6.78167659534 -1.36069381855 0 0 0 +1564 1 -31.2801214876 9.62584593545 -1.38050899953 0 0 0 +1565 1 -25.8292272659 6.80967903176 -4.18089688026 0 0 0 +1566 1 -23.0120596765 9.38574125602 -4.56085359797 0 0 0 +1567 1 -23.0253111161 6.67088453468 -1.74883442585 0 0 0 +1568 1 -25.9181680853 9.3005861108 -1.60976470179 0 0 0 +1569 1 -20.4068298243 6.65211430029 -4.34642231668 0 0 0 +1570 1 -17.7309313136 9.48453723005 -4.05052456235 0 0 0 +1571 1 -17.8568886389 6.74526815221 -1.49718102213 0 0 0 +1572 1 -20.5908115258 9.4942779678 -1.51293340304 0 0 0 +1573 1 -15.059248835 6.85750316292 -4.2504552293 0 0 0 +1574 1 -12.2277840315 9.29276808504 -4.19931534189 0 0 0 +1575 1 -12.1238746219 6.58333485512 -1.43320056576 0 0 0 +1576 1 -14.7692488661 9.14024499827 -1.26573242302 0 0 0 +1577 1 -9.40360623315 6.59678645433 -4.26864230094 0 0 0 +1578 1 -6.51984244204 9.30110790284 -3.9810244779 0 0 0 +1579 1 -6.68421135763 6.63865996567 -1.34188946639 0 0 0 +1580 1 -9.57476224107 9.28482366985 -1.58066514978 0 0 0 +1581 1 -4.06524638096 6.70956875277 -4.25843311888 0 0 0 +1582 1 -1.36615183653 9.34937697926 -4.13536731888 0 0 0 +1583 1 -1.34894780045 6.71306673234 -1.43215767554 0 0 0 +1584 1 -3.84037339684 9.46188183728 -1.35574453277 0 0 0 +1585 1 1.33211598226 6.75839210589 -4.24029859598 0 0 0 +1586 1 3.94753669049 9.3746525194 -4.17682403828 0 0 0 +1587 1 4.1416150545 6.65635874439 -1.53839866901 0 0 0 +1588 1 1.39103267757 9.4514127008 -1.40204578434 0 0 0 +1589 1 6.87491528025 6.61243757511 -4.10889056279 0 0 0 +1590 1 9.62624499221 9.350286104 -4.06752238713 0 0 0 +1591 1 9.56543204088 6.66632098377 -1.25808693595 0 0 0 +1592 1 6.88759655501 9.19207194658 -1.65562540765 0 0 0 +1593 1 11.9784799894 6.78429263837 -4.15430762072 0 0 0 +1594 1 14.8028944125 9.40548481452 -4.1234185068 0 0 0 +1595 1 14.7127698511 6.68752615726 -1.61411874757 0 0 0 +1596 1 12.1142490674 9.33451272726 -1.31030304755 0 0 0 +1597 1 17.5400947388 6.69844142105 -4.19075349211 0 0 0 +1598 1 20.3530769154 9.50851135145 -4.26088968253 0 0 0 +1599 1 20.2928741113 6.66715866615 -1.59459732414 0 0 0 +1600 1 17.4648783395 9.31048464638 -1.51152390938 0 0 0 +1601 1 22.9439906153 6.72142500283 -4.08021192234 0 0 0 +1602 1 25.6211103761 9.29038195907 -4.23745622249 0 0 0 +1603 1 25.6230782322 6.71291220956 -1.30843545887 0 0 0 +1604 1 23.0619783201 9.51554947877 -1.70415931714 0 0 0 +1605 1 28.2555479571 6.59322735466 -4.06363108092 0 0 0 +1606 1 31.0596474916 9.29984986222 -4.06442514098 0 0 0 +1607 1 31.2479338594 6.66178979724 -1.42844051077 0 0 0 +1608 1 28.2639714472 9.41002911631 -1.39390646561 0 0 0 +1609 1 33.7856263928 6.67916225449 -4.18704325598 0 0 0 +1610 1 36.5671334001 9.4142615363 -4.16151604154 0 0 0 +1611 1 36.5241334137 6.5587016431 -1.47292122697 0 0 0 +1612 1 33.8163790221 9.36871452638 -1.60542825431 0 0 0 +1613 1 39.3461115198 6.73458687629 -4.01572512251 0 0 0 +1614 1 42.0733417402 9.34072087298 -4.04746243806 0 0 0 +1615 1 42.1555040208 6.83226824592 -1.36270041785 0 0 0 +1616 1 39.3665930649 9.54061299939 -1.51988428224 0 0 0 +1617 1 44.6690893211 6.61525863935 -4.02319612808 0 0 0 +1618 1 47.3545343828 9.40145064061 -4.01199503014 0 0 0 +1619 1 47.39184627 6.65288974344 -1.41427315024 0 0 0 +1620 1 44.6877611868 9.60964011209 -1.41372628684 0 0 0 +1621 1 50.148413897 6.78046430623 -4.06170565201 0 0 0 +1622 1 52.7382448328 9.44716771924 -4.097502781 0 0 0 +1623 1 52.7242048389 6.99419811425 -1.15623951705 0 0 0 +1624 1 50.0714172928 9.57911411679 -1.30020482179 0 0 0 +1625 1 55.40125 6.75625 -4.05375 0 0 0 +1626 1 58.10375 9.45875 -4.05375 0 0 0 +1627 1 58.10375 6.75625 -1.35125 0 0 0 +1628 1 55.40125 9.45875 -1.35125 0 0 0 +1629 1 60.80625 6.75625 -4.05375 0 0 0 +1630 1 63.50875 9.45875 -4.05375 0 0 0 +1631 1 63.50875 6.75625 -1.35125 0 0 0 +1632 1 60.80625 9.45875 -1.35125 0 0 0 +1633 1 -63.50875 12.16125 -4.05375 0 0 0 +1634 1 -60.80625 14.86375 -4.05375 0 0 0 +1635 1 -60.80625 12.16125 -1.35125 0 0 0 +1636 1 -63.50875 14.86375 -1.35125 0 0 0 +1637 1 -58.10375 12.16125 -4.05375 0 0 0 +1638 1 -55.40125 14.86375 -4.05375 0 0 0 +1639 1 -55.40125 12.16125 -1.35125 0 0 0 +1640 1 -58.10375 14.86375 -1.35125 0 0 0 +1641 1 -52.5977794743 12.2157030451 -4.10759818466 0 0 0 +1642 1 -50.0222033895 14.6975274472 -4.01697950365 0 0 0 +1643 1 -49.9052986768 12.0779589636 -1.45122675451 0 0 0 +1644 1 -52.7075432919 14.9055250752 -1.34336112429 0 0 0 +1645 1 -47.0986928958 11.8764983767 -4.02245287204 0 0 0 +1646 1 -44.6976564745 14.8474425266 -4.05558363181 0 0 0 +1647 1 -44.5995657727 12.1194538028 -1.26784817821 0 0 0 +1648 1 -47.1677685614 14.5769753318 -1.33437718756 0 0 0 +1649 1 -41.857000336 11.9959843134 -4.04845443297 0 0 0 +1650 1 -39.2990592802 14.8929521639 -4.07915864748 0 0 0 +1651 1 -39.3359120126 12.1431801893 -1.41129339865 0 0 0 +1652 1 -42.0127718916 14.9359447991 -1.40625715166 0 0 0 +1653 1 -36.7053329551 12.3328908687 -3.95841084123 0 0 0 +1654 1 -33.8234134579 14.7923241355 -4.08588114046 0 0 0 +1655 1 -33.8239233422 12.1495559015 -1.29943014243 0 0 0 +1656 1 -36.6172753496 15.1312441629 -1.40117951587 0 0 0 +1657 1 -31.1385082968 12.0801728154 -3.94881699666 0 0 0 +1658 1 -28.4774230683 14.8813509624 -4.24795556835 0 0 0 +1659 1 -28.249221349 12.1956665713 -1.39183578674 0 0 0 +1660 1 -31.0054279971 14.7233902076 -1.41547819485 0 0 0 +1661 1 -25.8487500896 12.0725297009 -4.31446036168 0 0 0 +1662 1 -23.0220834537 14.9947260118 -4.10032188274 0 0 0 +1663 1 -23.2791123361 12.1348837508 -1.64611878955 0 0 0 +1664 1 -25.7422884392 14.7996900409 -1.66297238109 0 0 0 +1665 1 -20.3259999838 12.123607564 -4.09698001083 0 0 0 +1666 1 -17.4156160042 14.5824911943 -3.94652916394 0 0 0 +1667 1 -17.6501436247 11.8914078934 -1.34746433214 0 0 0 +1668 1 -20.093062241 14.6343294059 -1.37663907373 0 0 0 +1669 1 -14.8793488042 11.9502735984 -3.95960883908 0 0 0 +1670 1 -12.158466559 14.6667326606 -4.05100971227 0 0 0 +1671 1 -12.2014173044 12.0373762437 -1.55265742119 0 0 0 +1672 1 -14.8489591475 14.7338675616 -1.24075339863 0 0 0 +1673 1 -9.42389023401 11.9252834673 -4.25698253633 0 0 0 +1674 1 -7.03281599716 14.9027821932 -4.07317794082 0 0 0 +1675 1 -6.73139702731 12.1546064537 -1.39817944599 0 0 0 +1676 1 -9.4374613949 15.0249419898 -1.29173332387 0 0 0 +1677 1 -4.16833532944 12.1422475371 -4.07088713978 0 0 0 +1678 1 -1.34452336223 14.9547929723 -4.08030010366 0 0 0 +1679 1 -1.19853370581 12.1466633795 -1.36930176334 0 0 0 +1680 1 -4.15515984932 14.7265652615 -1.35204836436 0 0 0 +1681 1 1.27280906152 12.2568073871 -4.02815180174 0 0 0 +1682 1 4.05927615524 14.903676757 -3.97361072987 0 0 0 +1683 1 3.7966257628 12.1360220437 -1.68386703981 0 0 0 +1684 1 1.22644338793 14.8454460086 -1.40107036518 0 0 0 +1685 1 6.78240477514 11.9786530837 -4.29778613619 0 0 0 +1686 1 9.1566111603 14.953334873 -3.95894890687 0 0 0 +1687 1 9.3941412533 11.9187858435 -1.29597914866 0 0 0 +1688 1 6.72356619288 14.754511832 -1.23074252869 0 0 0 +1689 1 12.12105709 11.9411229703 -4.05713420902 0 0 0 +1690 1 14.6940424346 14.8055392475 -4.12746148899 0 0 0 +1691 1 14.9402339156 12.1102574997 -1.32805639249 0 0 0 +1692 1 12.0602410929 14.5877546205 -1.50776421572 0 0 0 +1693 1 17.5199081318 12.1848773347 -4.08916096318 0 0 0 +1694 1 20.1795131216 14.9532677753 -4.2693276182 0 0 0 +1695 1 20.3677226895 12.0140688202 -1.61040698406 0 0 0 +1696 1 17.8551134112 14.7762158177 -1.3681926246 0 0 0 +1697 1 23.1039646713 12.1678291538 -4.42729033991 0 0 0 +1698 1 25.7987819425 14.872847226 -4.23063053914 0 0 0 +1699 1 25.6616376966 12.2330560337 -1.66543594328 0 0 0 +1700 1 23.0196936302 14.9645330487 -1.63027567646 0 0 0 +1701 1 28.3561831688 11.9336610547 -4.08624521425 0 0 0 +1702 1 31.1502546054 14.7763437423 -4.14382158358 0 0 0 +1703 1 31.2529030899 11.9377027887 -1.65215547385 0 0 0 +1704 1 28.3122755177 14.8495000025 -1.301375497 0 0 0 +1705 1 33.9789646115 11.8618539808 -4.30497253647 0 0 0 +1706 1 36.5373817026 14.8425582364 -4.15850856436 0 0 0 +1707 1 36.5059371899 12.0259699612 -1.59504757875 0 0 0 +1708 1 33.7321416127 14.7175682672 -1.4808370377 0 0 0 +1709 1 39.401111658 12.0369235987 -4.19686052885 0 0 0 +1710 1 41.9913439044 14.8682038618 -4.040397077 0 0 0 +1711 1 41.9901776783 12.1377782436 -1.22651790777 0 0 0 +1712 1 39.1676991758 14.7297402417 -1.67146118851 0 0 0 +1713 1 44.7262084155 12.3564847923 -3.98091283226 0 0 0 +1714 1 47.330675635 15.0220831536 -3.97427358172 0 0 0 +1715 1 47.1389485664 12.0904403954 -1.22186233092 0 0 0 +1716 1 44.5450658786 14.7806396512 -1.29553017436 0 0 0 +1717 1 49.8474624748 12.2148571793 -3.89791959693 0 0 0 +1718 1 52.5767984427 14.8473954798 -4.22424695397 0 0 0 +1719 1 52.7008980681 12.0465082457 -1.46410958004 0 0 0 +1720 1 50.0346131307 14.9244423671 -1.29943218931 0 0 0 +1721 1 55.40125 12.16125 -4.05375 0 0 0 +1722 1 58.10375 14.86375 -4.05375 0 0 0 +1723 1 58.10375 12.16125 -1.35125 0 0 0 +1724 1 55.40125 14.86375 -1.35125 0 0 0 +1725 1 60.80625 12.16125 -4.05375 0 0 0 +1726 1 63.50875 14.86375 -4.05375 0 0 0 +1727 1 63.50875 12.16125 -1.35125 0 0 0 +1728 1 60.80625 14.86375 -1.35125 0 0 0 +1729 1 -63.50875 -14.86375 1.35125 0 0 0 +1730 1 -60.80625 -12.16125 1.35125 0 0 0 +1731 1 -60.80625 -14.86375 4.05375 0 0 0 +1732 1 -63.50875 -12.16125 4.05375 0 0 0 +1733 1 -58.10375 -14.86375 1.35125 0 0 0 +1734 1 -55.40125 -12.16125 1.35125 0 0 0 +1735 1 -55.40125 -14.86375 4.05375 0 0 0 +1736 1 -58.10375 -12.16125 4.05375 0 0 0 +1737 1 -52.7245314987 -14.9017442486 1.39999344647 0 0 0 +1738 1 -50.2878864574 -12.1254761749 1.17939412669 0 0 0 +1739 1 -50.1894689377 -14.9701610778 3.90548333012 0 0 0 +1740 1 -52.9029750212 -12.3105518613 4.10596120708 0 0 0 +1741 1 -47.5312875912 -15.1612355205 1.38911168084 0 0 0 +1742 1 -44.9050062705 -12.1079365416 1.25682067399 0 0 0 +1743 1 -44.9057330153 -14.8380115035 3.92329400121 0 0 0 +1744 1 -47.7442677694 -12.2047395976 3.89059931354 0 0 0 +1745 1 -42.0898745825 -14.759870484 1.29733926466 0 0 0 +1746 1 -39.1242961225 -12.1452805117 1.11730056916 0 0 0 +1747 1 -39.1699715632 -14.7340549652 3.83507735044 0 0 0 +1748 1 -41.9478306066 -11.9350393401 3.67954112526 0 0 0 +1749 1 -36.491980724 -14.8283782413 1.30622498465 0 0 0 +1750 1 -33.6120478318 -12.1445254723 1.04927696768 0 0 0 +1751 1 -33.9308721194 -14.893867344 3.95267745657 0 0 0 +1752 1 -36.5952435298 -12.0897208934 3.89605015909 0 0 0 +1753 1 -30.9767536529 -15.2039840457 1.10414941738 0 0 0 +1754 1 -28.4960876638 -12.2796452799 1.16081052415 0 0 0 +1755 1 -28.2949983639 -15.0580158811 3.91317356785 0 0 0 +1756 1 -31.123873032 -12.4496068907 3.86776226625 0 0 0 +1757 1 -25.7638947579 -15.046453184 1.08221170722 0 0 0 +1758 1 -23.0010524232 -12.2430917272 1.28308759452 0 0 0 +1759 1 -22.9895724333 -14.920883703 3.77055349667 0 0 0 +1760 1 -25.7044734876 -12.3770730566 3.75179774028 0 0 0 +1761 1 -20.1710301424 -14.8916032399 1.12884765961 0 0 0 +1762 1 -17.5930190424 -12.2666422308 1.14138993546 0 0 0 +1763 1 -17.2992152685 -14.8206490362 3.91120261064 0 0 0 +1764 1 -20.1043591223 -12.1996869425 3.77143244912 0 0 0 +1765 1 -14.6861267619 -14.9197547759 1.43803703118 0 0 0 +1766 1 -12.1472301511 -12.2338393226 1.35847139483 0 0 0 +1767 1 -12.1644313169 -14.8393337617 3.94421944361 0 0 0 +1768 1 -14.8211619439 -12.1199864681 3.84902594377 0 0 0 +1769 1 -9.45416327009 -14.8286314663 1.53535754112 0 0 0 +1770 1 -6.83717963244 -12.1694403598 1.31437191992 0 0 0 +1771 1 -6.7018477845 -14.6770369668 3.82657883905 0 0 0 +1772 1 -9.502619079 -12.0729959851 3.94168864365 0 0 0 +1773 1 -4.27153364303 -14.7813766941 1.14465728421 0 0 0 +1774 1 -1.37867122864 -12.523506393 1.21103406703 0 0 0 +1775 1 -1.3895105638 -14.9606706863 4.02150577463 0 0 0 +1776 1 -3.99984567935 -12.3049671086 3.82955726099 0 0 0 +1777 1 1.39317603083 -14.9335745965 1.3594005035 0 0 0 +1778 1 4.12661995868 -12.1288645207 1.24829066073 0 0 0 +1779 1 4.11775736966 -14.8975909441 3.99598873792 0 0 0 +1780 1 1.24928187174 -12.1645622816 3.83590517518 0 0 0 +1781 1 7.03974057536 -15.1254989428 1.28641254354 0 0 0 +1782 1 9.50020192978 -12.1830775594 1.30884766783 0 0 0 +1783 1 9.49796509096 -14.6844704234 3.9559239435 0 0 0 +1784 1 6.72857151886 -12.1059497117 3.82424492611 0 0 0 +1785 1 12.1783849214 -14.9342205362 1.21638754181 0 0 0 +1786 1 14.9112000012 -12.3926655619 1.33758091831 0 0 0 +1787 1 14.8039102758 -14.9534411013 4.07846705396 0 0 0 +1788 1 12.1869871156 -12.1139514385 4.02720241101 0 0 0 +1789 1 17.8728791357 -14.8238324955 1.14897391384 0 0 0 +1790 1 20.1990376015 -11.9872682985 1.15931589705 0 0 0 +1791 1 20.3771543474 -14.9589404277 3.95507583945 0 0 0 +1792 1 17.6956668644 -12.2433311102 4.06534263959 0 0 0 +1793 1 22.8933812222 -15.0726937244 1.13898827275 0 0 0 +1794 1 25.6708104922 -12.3330313894 1.05916701716 0 0 0 +1795 1 25.6268179141 -15.0777802234 3.82602042907 0 0 0 +1796 1 22.8156305163 -12.1042710622 3.7612604249 0 0 0 +1797 1 28.3109254203 -14.9626614127 1.26783115404 0 0 0 +1798 1 31.1137738603 -12.2606220706 1.4466959788 0 0 0 +1799 1 30.9153730757 -15.0669650135 3.7773459085 0 0 0 +1800 1 28.2590457667 -12.2571707402 3.76840834022 0 0 0 +1801 1 33.9327817182 -15.1892734428 1.21894895979 0 0 0 +1802 1 36.2024165703 -12.3017110533 1.05645001749 0 0 0 +1803 1 36.437915074 -15.0346502386 3.9167267572 0 0 0 +1804 1 33.7716936909 -12.5437858392 3.84523391284 0 0 0 +1805 1 39.0532644866 -15.1358146003 1.1513179175 0 0 0 +1806 1 41.8292600977 -12.2120852964 1.1091639536 0 0 0 +1807 1 41.8624420217 -14.8852908685 3.88128436336 0 0 0 +1808 1 38.9856468557 -12.3937520214 3.71355243448 0 0 0 +1809 1 44.5555639949 -15.0006933689 1.31242432274 0 0 0 +1810 1 47.1184947558 -12.1235723746 1.27950145141 0 0 0 +1811 1 47.0637677734 -14.7958851052 3.99638808788 0 0 0 +1812 1 44.589075576 -12.3085309 3.7671975105 0 0 0 +1813 1 49.985507492 -14.8440236903 1.51444899488 0 0 0 +1814 1 52.8401632076 -12.0782178893 1.40772684047 0 0 0 +1815 1 52.7001014393 -14.6996917994 4.05744980849 0 0 0 +1816 1 50.0067422764 -12.0597182501 3.96892888746 0 0 0 +1817 1 55.40125 -14.86375 1.35125 0 0 0 +1818 1 58.10375 -12.16125 1.35125 0 0 0 +1819 1 58.10375 -14.86375 4.05375 0 0 0 +1820 1 55.40125 -12.16125 4.05375 0 0 0 +1821 1 60.80625 -14.86375 1.35125 0 0 0 +1822 1 63.50875 -12.16125 1.35125 0 0 0 +1823 1 63.50875 -14.86375 4.05375 0 0 0 +1824 1 60.80625 -12.16125 4.05375 0 0 0 +1825 1 -63.50875 -9.45875 1.35125 0 0 0 +1826 1 -60.80625 -6.75625 1.35125 0 0 0 +1827 1 -60.80625 -9.45875 4.05375 0 0 0 +1828 1 -63.50875 -6.75625 4.05375 0 0 0 +1829 1 -58.10375 -9.45875 1.35125 0 0 0 +1830 1 -55.40125 -6.75625 1.35125 0 0 0 +1831 1 -55.40125 -9.45875 4.05375 0 0 0 +1832 1 -58.10375 -6.75625 4.05375 0 0 0 +1833 1 -52.6461298887 -9.27974315357 1.38300662112 0 0 0 +1834 1 -49.9812468538 -6.49817040219 1.42651628819 0 0 0 +1835 1 -50.1194463615 -9.46648116441 3.8103434062 0 0 0 +1836 1 -52.5338122588 -6.49358522234 4.09480275465 0 0 0 +1837 1 -47.5617588486 -9.30151394591 1.28176783253 0 0 0 +1838 1 -44.6929483593 -6.56423512082 1.27925307439 0 0 0 +1839 1 -44.8903931196 -9.45036247717 3.89606948574 0 0 0 +1840 1 -47.3895381761 -6.59535465872 4.16101455509 0 0 0 +1841 1 -41.8844092513 -9.28839464133 1.2971680511 0 0 0 +1842 1 -39.1587168778 -6.80056697306 1.20459563706 0 0 0 +1843 1 -39.1790191903 -9.33501865497 3.86189330221 0 0 0 +1844 1 -41.9854738995 -6.72782539515 3.95599166312 0 0 0 +1845 1 -36.2550849201 -9.40197673909 0.881785204358 0 0 0 +1846 1 -33.6798687248 -6.61898164466 1.05054905519 0 0 0 +1847 1 -33.5228085527 -9.49635494406 3.82322533322 0 0 0 +1848 1 -36.3251737574 -6.97781598538 3.7019651324 0 0 0 +1849 1 -30.9464149869 -9.48628372101 1.09706094603 0 0 0 +1850 1 -28.3900210809 -6.83722013289 1.1085050701 0 0 0 +1851 1 -28.4179412368 -9.61899159549 3.98527696256 0 0 0 +1852 1 -30.8972012902 -6.69829550461 3.98044725428 0 0 0 +1853 1 -25.6725961836 -9.57384295242 1.123238343 0 0 0 +1854 1 -22.9479756311 -6.84394235538 1.12423161773 0 0 0 +1855 1 -22.778510175 -9.43759879576 3.76083284484 0 0 0 +1856 1 -25.5767612795 -6.94449660271 3.81363280557 0 0 0 +1857 1 -20.1910996476 -9.53868079494 1.09796623362 0 0 0 +1858 1 -17.5753204213 -7.02791381463 1.2237957713 0 0 0 +1859 1 -17.6152528917 -9.40007355458 3.84264479886 0 0 0 +1860 1 -20.2106506739 -6.73493449613 3.87806267714 0 0 0 +1861 1 -14.8195567018 -9.7138661922 1.12522991678 0 0 0 +1862 1 -12.2135429184 -6.69853825469 1.14908700045 0 0 0 +1863 1 -12.110970065 -9.4114476294 3.98932620534 0 0 0 +1864 1 -14.991438395 -6.81269196456 4.09417068587 0 0 0 +1865 1 -9.724064212 -9.38965739941 1.28941646924 0 0 0 +1866 1 -6.79381612579 -6.93459108098 1.24357041797 0 0 0 +1867 1 -6.87765514605 -9.42825304557 3.83547300326 0 0 0 +1868 1 -9.57081115382 -6.51970651525 3.76670349323 0 0 0 +1869 1 -4.26376675297 -9.39110043993 1.10603563184 0 0 0 +1870 1 -1.16874187616 -6.73514552229 1.36406175668 0 0 0 +1871 1 -1.43644371989 -9.5667337508 3.61311145599 0 0 0 +1872 1 -4.25859443305 -6.67124063872 3.88944206648 0 0 0 +1873 1 1.32105160918 -9.47473949996 1.26589220653 0 0 0 +1874 1 3.89228522706 -6.70952450576 1.25859686309 0 0 0 +1875 1 3.95098586699 -9.43646673376 3.86433137586 0 0 0 +1876 1 1.17043159283 -6.83216650298 4.02724212661 0 0 0 +1877 1 6.97174477293 -9.42339696567 1.34583476581 0 0 0 +1878 1 9.48260138167 -6.71856232698 1.35762934014 0 0 0 +1879 1 9.50317147802 -9.4405518141 4.1217257903 0 0 0 +1880 1 6.81704568567 -6.74324881069 3.95734917099 0 0 0 +1881 1 12.2708614329 -9.50327904174 1.15523413984 0 0 0 +1882 1 14.6905372309 -6.61495902439 1.36062199311 0 0 0 +1883 1 14.8055336089 -9.5755051003 3.92960599218 0 0 0 +1884 1 12.2422847912 -6.7065653745 3.9503077191 0 0 0 +1885 1 17.2846482236 -9.43753994003 1.19407385867 0 0 0 +1886 1 20.1516628633 -6.70970230743 1.39112608959 0 0 0 +1887 1 20.1624665328 -9.29281691044 3.94773513699 0 0 0 +1888 1 17.2295631733 -6.5946930889 3.92579821256 0 0 0 +1889 1 23.0425726992 -9.57111719516 1.08790304176 0 0 0 +1890 1 25.8902373091 -6.80373637735 1.43759079995 0 0 0 +1891 1 25.7116331878 -9.72435197015 3.98617086293 0 0 0 +1892 1 23.2851294128 -6.92484260533 3.98456744047 0 0 0 +1893 1 28.4437368398 -9.47446097815 1.2930757113 0 0 0 +1894 1 30.858583219 -6.68143842698 1.43187925264 0 0 0 +1895 1 30.9724541826 -9.59476718426 4.06939227962 0 0 0 +1896 1 28.3249040402 -6.86603565944 4.22110400709 0 0 0 +1897 1 33.6540681013 -9.26480377518 1.37477258686 0 0 0 +1898 1 36.4924153132 -6.74698156777 1.3653927199 0 0 0 +1899 1 36.4863719889 -9.5332522435 3.94348749431 0 0 0 +1900 1 33.8821167752 -6.74383029363 3.98436246232 0 0 0 +1901 1 39.1570781812 -9.57787335216 1.27198584345 0 0 0 +1902 1 41.7638417425 -6.80241312646 1.31823857099 0 0 0 +1903 1 41.7692885406 -9.61773673237 4.10685609442 0 0 0 +1904 1 39.1224557502 -6.61542736582 4.1456755866 0 0 0 +1905 1 44.3370429918 -9.37035244496 1.36898774685 0 0 0 +1906 1 47.3439855914 -6.69818571407 1.22585795179 0 0 0 +1907 1 47.1750052339 -9.16294774307 3.80479994829 0 0 0 +1908 1 44.5817396761 -6.65121797184 3.98262017002 0 0 0 +1909 1 50.0183636135 -9.23460612947 1.42602899121 0 0 0 +1910 1 52.624936537 -6.73117630835 1.41127602582 0 0 0 +1911 1 52.7316271006 -9.32558396467 3.8891026762 0 0 0 +1912 1 49.8818791423 -6.62887686012 3.998685124 0 0 0 +1913 1 55.40125 -9.45875 1.35125 0 0 0 +1914 1 58.10375 -6.75625 1.35125 0 0 0 +1915 1 58.10375 -9.45875 4.05375 0 0 0 +1916 1 55.40125 -6.75625 4.05375 0 0 0 +1917 1 60.80625 -9.45875 1.35125 0 0 0 +1918 1 63.50875 -6.75625 1.35125 0 0 0 +1919 1 63.50875 -9.45875 4.05375 0 0 0 +1920 1 60.80625 -6.75625 4.05375 0 0 0 +1921 1 -63.50875 -4.05375 1.35125 0 0 0 +1922 1 -60.80625 -1.35125 1.35125 0 0 0 +1923 1 -60.80625 -4.05375 4.05375 0 0 0 +1924 1 -63.50875 -1.35125 4.05375 0 0 0 +1925 1 -58.10375 -4.05375 1.35125 0 0 0 +1926 1 -55.40125 -1.35125 1.35125 0 0 0 +1927 1 -55.40125 -4.05375 4.05375 0 0 0 +1928 1 -58.10375 -1.35125 4.05375 0 0 0 +1929 1 -52.7012274082 -3.94475478315 1.47500606539 0 0 0 +1930 1 -50.2536257696 -1.19327072431 1.36446757357 0 0 0 +1931 1 -50.0079853827 -3.74716313147 4.01162682255 0 0 0 +1932 1 -52.9105272068 -1.26474984397 4.13645500883 0 0 0 +1933 1 -47.3077083772 -3.80313007728 1.33055299952 0 0 0 +1934 1 -44.4683313863 -1.56846577047 1.40550575785 0 0 0 +1935 1 -44.7392937724 -4.09549375905 4.09327464517 0 0 0 +1936 1 -47.3129281604 -1.21350836922 4.15571438579 0 0 0 +1937 1 -41.8093359192 -4.0179242192 1.14784863638 0 0 0 +1938 1 -39.0431997602 -1.44625876315 1.44742842537 0 0 0 +1939 1 -39.1279844257 -4.26244369905 3.95421260849 0 0 0 +1940 1 -41.8777133385 -1.49852753485 4.04292971332 0 0 0 +1941 1 -36.3608395163 -4.02977703313 1.43074450857 0 0 0 +1942 1 -33.7404731809 -1.38399635546 1.26884005825 0 0 0 +1943 1 -33.6103691604 -4.17426278842 3.83613853525 0 0 0 +1944 1 -36.2971870886 -1.43785752567 3.96958568157 0 0 0 +1945 1 -31.1101957297 -4.03817621525 1.20108632716 0 0 0 +1946 1 -28.4141441513 -1.56405755715 1.47902032909 0 0 0 +1947 1 -28.1426026047 -4.18274993249 4.05661153762 0 0 0 +1948 1 -31.0574586521 -1.61239412459 4.12530077631 0 0 0 +1949 1 -25.501899501 -4.11933753089 1.35849712936 0 0 0 +1950 1 -22.7764926904 -1.67663726828 1.24959256298 0 0 0 +1951 1 -23.0866320659 -4.12530894585 4.01284026267 0 0 0 +1952 1 -25.6989756554 -1.44686422204 3.89159135285 0 0 0 +1953 1 -20.2347426846 -4.25637531109 1.16044820981 0 0 0 +1954 1 -17.6612944093 -1.629796553 1.29481711546 0 0 0 +1955 1 -17.6433335604 -4.23667481033 4.02320766151 0 0 0 +1956 1 -20.1726959485 -1.54324056207 4.04268628978 0 0 0 +1957 1 -15.0634953758 -4.12654511955 1.30462918097 0 0 0 +1958 1 -12.2507898386 -1.37449134229 1.13370062315 0 0 0 +1959 1 -12.1874422314 -3.97643312293 3.8758312364 0 0 0 +1960 1 -15.023841178 -1.46179169105 3.81205452311 0 0 0 +1961 1 -9.44460233704 -3.8018442555 1.11342172294 0 0 0 +1962 1 -6.76506314074 -1.36021516642 1.41737191743 0 0 0 +1963 1 -6.73958239001 -3.95471063938 3.84236356011 0 0 0 +1964 1 -9.55891648705 -1.17977763197 3.90466479094 0 0 0 +1965 1 -3.87820827761 -3.93634075543 1.3264520233 0 0 0 +1966 1 -1.31680007922 -1.35041733231 1.20042810765 0 0 0 +1967 1 -1.22570957528 -3.99853953245 3.89606556748 0 0 0 +1968 1 -3.84130557832 -1.45036094785 4.06512251321 0 0 0 +1969 1 1.43541232892 -3.96414339156 1.32638554967 0 0 0 +1970 1 4.13845959246 -1.32900478847 1.23520905075 0 0 0 +1971 1 4.11049827975 -3.97550345573 4.20064356556 0 0 0 +1972 1 1.43486725718 -1.47841439254 4.06264513049 0 0 0 +1973 1 6.72345884131 -4.13566489077 1.19109444436 0 0 0 +1974 1 9.41702526394 -1.25997269381 1.2280317373 0 0 0 +1975 1 9.41883583857 -4.15071300949 3.78657776809 0 0 0 +1976 1 6.86256772366 -1.29308628564 3.94125641632 0 0 0 +1977 1 12.0895498004 -4.0262492971 1.15018714509 0 0 0 +1978 1 14.6912244231 -1.37688597215 1.15974871136 0 0 0 +1979 1 14.6089283942 -3.81879997342 4.05400206022 0 0 0 +1980 1 11.9946893 -1.37214331804 4.0693378469 0 0 0 +1981 1 17.5105600508 -3.96069591127 1.11408390212 0 0 0 +1982 1 20.2101993674 -1.24098799918 1.21477426319 0 0 0 +1983 1 20.515271009 -4.01105220466 3.81971296909 0 0 0 +1984 1 17.4947330617 -1.18450956159 3.92969917468 0 0 0 +1985 1 22.8736212632 -4.17584602762 1.06577292009 0 0 0 +1986 1 25.5251485183 -1.38897770774 1.07128839484 0 0 0 +1987 1 25.6104905256 -3.9911625322 3.8214002683 0 0 0 +1988 1 23.1176702134 -1.12213854309 3.928152701 0 0 0 +1989 1 28.3013079509 -3.85357653951 1.26322502044 0 0 0 +1990 1 31.0690486269 -1.46826538171 1.25063162021 0 0 0 +1991 1 31.1191049936 -4.23213320525 4.0615354348 0 0 0 +1992 1 28.1894722411 -1.47507658778 4.11375876145 0 0 0 +1993 1 33.7728686412 -3.98068214019 1.31769300656 0 0 0 +1994 1 36.3582429638 -1.16660673589 1.29145491181 0 0 0 +1995 1 36.5273377738 -4.11400081701 3.88997558947 0 0 0 +1996 1 33.7038355844 -1.31725972961 3.99898205097 0 0 0 +1997 1 39.1251424418 -3.92785476861 1.2253538555 0 0 0 +1998 1 42.003816534 -1.50456544612 1.23500870188 0 0 0 +1999 1 41.8279074239 -3.96559058377 4.00653396217 0 0 0 +2000 1 39.1505303359 -1.15689646052 4.07498579913 0 0 0 +2001 1 44.6033358494 -4.00749826873 1.22290188285 0 0 0 +2002 1 47.3206810885 -1.45556778998 1.34531279112 0 0 0 +2003 1 47.2189149665 -4.14484555445 3.85245788468 0 0 0 +2004 1 44.6751181935 -1.4381024002 4.01480306006 0 0 0 +2005 1 50.0660614735 -4.25683561437 1.23177025441 0 0 0 +2006 1 52.7426240978 -1.28090182529 1.42042557813 0 0 0 +2007 1 52.6812169568 -3.87795265265 3.94948911256 0 0 0 +2008 1 49.9241533123 -1.45391071392 3.96283746703 0 0 0 +2009 1 55.40125 -4.05375 1.35125 0 0 0 +2010 1 58.10375 -1.35125 1.35125 0 0 0 +2011 1 58.10375 -4.05375 4.05375 0 0 0 +2012 1 55.40125 -1.35125 4.05375 0 0 0 +2013 1 60.80625 -4.05375 1.35125 0 0 0 +2014 1 63.50875 -1.35125 1.35125 0 0 0 +2015 1 63.50875 -4.05375 4.05375 0 0 0 +2016 1 60.80625 -1.35125 4.05375 0 0 0 +2017 1 -63.50875 1.35125 1.35125 0 0 0 +2018 1 -60.80625 4.05375 1.35125 0 0 0 +2019 1 -60.80625 1.35125 4.05375 0 0 0 +2020 1 -63.50875 4.05375 4.05375 0 0 0 +2021 1 -58.10375 1.35125 1.35125 0 0 0 +2022 1 -55.40125 4.05375 1.35125 0 0 0 +2023 1 -55.40125 1.35125 4.05375 0 0 0 +2024 1 -58.10375 4.05375 4.05375 0 0 0 +2025 1 -52.8596282587 1.48738459365 1.34527067034 0 0 0 +2026 1 -50.1939784765 4.08758391924 1.26067024845 0 0 0 +2027 1 -50.1366784116 1.4746411828 3.87787361299 0 0 0 +2028 1 -52.974831304 4.00419752611 3.9671323059 0 0 0 +2029 1 -47.4199533685 1.5735406559 1.12942300341 0 0 0 +2030 1 -44.46948935 4.0125376038 1.30735285484 0 0 0 +2031 1 -44.4853416585 1.25183388248 4.01612882323 0 0 0 +2032 1 -47.3144365562 4.06552705422 3.80920787621 0 0 0 +2033 1 -41.7906397329 1.13907865953 1.42691910395 0 0 0 +2034 1 -39.1427451913 3.68012356645 1.26360353327 0 0 0 +2035 1 -39.0825923367 1.24279967453 4.10011608461 0 0 0 +2036 1 -41.6221968741 3.78976462463 4.04355597719 0 0 0 +2037 1 -36.5537677615 1.25297974236 1.42835793505 0 0 0 +2038 1 -33.9171523697 4.1739737449 1.30066748637 0 0 0 +2039 1 -33.6894488103 1.40850322577 4.11553589885 0 0 0 +2040 1 -36.5897390266 3.89818072659 4.06462678431 0 0 0 +2041 1 -31.1780812703 1.59960150645 1.22258703053 0 0 0 +2042 1 -28.2747076027 4.04296370004 1.13193780033 0 0 0 +2043 1 -28.5072946102 1.36551393372 3.88383559831 0 0 0 +2044 1 -31.1753082183 4.1703880044 3.82952517599 0 0 0 +2045 1 -25.6357801834 1.02862536523 1.14029858855 0 0 0 +2046 1 -23.1134786709 3.78167826731 0.958001410156 0 0 0 +2047 1 -23.0546478984 1.02974071799 3.96365954817 0 0 0 +2048 1 -25.7883358745 3.83807576074 3.94596325681 0 0 0 +2049 1 -20.4165203132 1.18743163492 1.34043756543 0 0 0 +2050 1 -17.9607778821 4.12097334534 1.18781638002 0 0 0 +2051 1 -17.821687877 1.2526647199 4.03719319823 0 0 0 +2052 1 -20.4885650583 4.04383729713 3.97923980147 0 0 0 +2053 1 -15.2032213018 1.46903865393 1.45065072035 0 0 0 +2054 1 -12.3530228412 3.9401972035 1.1452857948 0 0 0 +2055 1 -12.4581929014 1.38420961668 3.82951117012 0 0 0 +2056 1 -15.0210213059 4.0321569944 4.07982918844 0 0 0 +2057 1 -9.49299903692 1.33278593133 1.25784892582 0 0 0 +2058 1 -6.64436141014 3.8196122355 1.30045284256 0 0 0 +2059 1 -6.67737617025 1.29219410612 4.00700468631 0 0 0 +2060 1 -9.4767883138 3.68787409952 4.17636937584 0 0 0 +2061 1 -4.01165506105 1.05554530842 1.26689789204 0 0 0 +2062 1 -1.44741392251 3.86430033119 1.250372929 0 0 0 +2063 1 -1.45605763901 1.32312355308 3.95849128846 0 0 0 +2064 1 -4.03027758838 3.93422144312 4.01282855757 0 0 0 +2065 1 1.30544526033 1.29981065898 1.24286994365 0 0 0 +2066 1 3.98371173778 4.03921879383 1.12241725104 0 0 0 +2067 1 3.99852962615 1.5388543236 3.77524837144 0 0 0 +2068 1 1.21207078088 4.02201555827 3.8803284334 0 0 0 +2069 1 6.83140950862 1.38576976111 1.32767199885 0 0 0 +2070 1 9.60102570826 3.87597229614 1.36063063639 0 0 0 +2071 1 9.60054221293 1.20775249496 3.98383776793 0 0 0 +2072 1 6.87954803885 4.0183956207 4.16075333151 0 0 0 +2073 1 12.1902505544 1.26405701682 1.38029419386 0 0 0 +2074 1 14.4671220422 4.05609028539 1.25796473028 0 0 0 +2075 1 14.7322578054 1.47655450495 4.13991859359 0 0 0 +2076 1 12.1069236204 3.94435789566 4.22901865993 0 0 0 +2077 1 17.4139117625 1.56902949734 1.16794952239 0 0 0 +2078 1 20.2147009039 4.028540406 1.16159949938 0 0 0 +2079 1 20.2176796119 1.47321799933 3.83042762698 0 0 0 +2080 1 17.5148546114 4.06421602673 3.99864217669 0 0 0 +2081 1 22.8619162404 1.45519499754 1.28045183389 0 0 0 +2082 1 25.7472262773 3.9564371351 1.14096306628 0 0 0 +2083 1 25.7989820445 1.53130816072 4.0139596025 0 0 0 +2084 1 22.8650342631 4.23097004185 3.86868657946 0 0 0 +2085 1 28.3271023427 1.18452542236 1.20945299717 0 0 0 +2086 1 30.9125338813 4.05435791114 1.22497026451 0 0 0 +2087 1 30.8598356652 1.30101535333 4.04143570375 0 0 0 +2088 1 28.2957637238 4.11115369425 3.96132399218 0 0 0 +2089 1 33.5235892801 1.60418944839 1.4034884659 0 0 0 +2090 1 36.6492445545 4.06884099375 1.25271063204 0 0 0 +2091 1 36.5177657244 1.50693857988 3.89355214645 0 0 0 +2092 1 33.654535669 4.03910289881 4.15697935441 0 0 0 +2093 1 39.4539589409 1.23199352818 1.21951717055 0 0 0 +2094 1 42.1239842386 3.84867152346 1.2146081789 0 0 0 +2095 1 41.973622714 1.33902551082 3.86239121712 0 0 0 +2096 1 39.4360605326 4.04692017885 3.86565623174 0 0 0 +2097 1 44.7048225084 1.11778593127 1.37989065121 0 0 0 +2098 1 47.485163158 3.77360997815 1.41221803765 0 0 0 +2099 1 47.4006097974 1.2125851126 4.11001977983 0 0 0 +2100 1 44.70920409 3.80597288064 4.13668527636 0 0 0 +2101 1 50.1964538435 1.22994888297 1.32682842427 0 0 0 +2102 1 52.5513439211 4.10364879996 1.60316280624 0 0 0 +2103 1 52.7510376721 1.28624344447 4.0364896369 0 0 0 +2104 1 49.9912467399 3.89211222643 4.42615465183 0 0 0 +2105 1 55.40125 1.35125 1.35125 0 0 0 +2106 1 58.10375 4.05375 1.35125 0 0 0 +2107 1 58.10375 1.35125 4.05375 0 0 0 +2108 1 55.40125 4.05375 4.05375 0 0 0 +2109 1 60.80625 1.35125 1.35125 0 0 0 +2110 1 63.50875 4.05375 1.35125 0 0 0 +2111 1 63.50875 1.35125 4.05375 0 0 0 +2112 1 60.80625 4.05375 4.05375 0 0 0 +2113 1 -63.50875 6.75625 1.35125 0 0 0 +2114 1 -60.80625 9.45875 1.35125 0 0 0 +2115 1 -60.80625 6.75625 4.05375 0 0 0 +2116 1 -63.50875 9.45875 4.05375 0 0 0 +2117 1 -58.10375 6.75625 1.35125 0 0 0 +2118 1 -55.40125 9.45875 1.35125 0 0 0 +2119 1 -55.40125 6.75625 4.05375 0 0 0 +2120 1 -58.10375 9.45875 4.05375 0 0 0 +2121 1 -52.725549717 6.8377739782 1.46420992107 0 0 0 +2122 1 -50.0668519119 9.59556433231 1.17760401522 0 0 0 +2123 1 -49.9879829743 6.58592778388 4.04611606211 0 0 0 +2124 1 -52.9005959051 9.53006782012 3.97899243579 0 0 0 +2125 1 -47.2188295295 6.68719441582 1.26256982575 0 0 0 +2126 1 -44.4346381406 9.12993480995 1.59996731471 0 0 0 +2127 1 -44.2799590614 6.53065865312 3.94207089672 0 0 0 +2128 1 -47.2003792348 9.13957913698 4.04423720009 0 0 0 +2129 1 -41.7277324048 6.59477137875 1.30450532196 0 0 0 +2130 1 -39.3369760062 9.52066757064 1.26885555283 0 0 0 +2131 1 -39.1365994419 6.57236532005 4.03640078606 0 0 0 +2132 1 -41.668950352 9.37372375465 4.04283816408 0 0 0 +2133 1 -36.6933352261 6.69900498562 1.52235626878 0 0 0 +2134 1 -33.9842854912 9.27463876484 1.14907701735 0 0 0 +2135 1 -33.9124441876 6.85906678822 4.13306167118 0 0 0 +2136 1 -36.6497622591 9.37289102266 4.01640138747 0 0 0 +2137 1 -31.1464910639 6.73805433139 1.24354857268 0 0 0 +2138 1 -28.3664261779 9.46992345334 1.16576531511 0 0 0 +2139 1 -28.2419648071 6.56413200714 3.93770794976 0 0 0 +2140 1 -31.2871665624 9.5123350694 3.77125864691 0 0 0 +2141 1 -25.7418673339 6.63791965335 1.21446842657 0 0 0 +2142 1 -23.2663028054 9.42110780403 1.17205941447 0 0 0 +2143 1 -23.1729473525 6.60499147076 3.95372196199 0 0 0 +2144 1 -25.8249666871 9.21957001036 3.90987333133 0 0 0 +2145 1 -20.5812002741 6.80745470048 1.28914572121 0 0 0 +2146 1 -17.9127840633 9.27886858838 1.27901388191 0 0 0 +2147 1 -17.7481452412 6.66278307081 4.12506463808 0 0 0 +2148 1 -20.6019723058 9.51832079237 4.00325180157 0 0 0 +2149 1 -15.0505086493 6.59108099824 1.36237826544 0 0 0 +2150 1 -12.0011024487 9.20360309968 1.32981550621 0 0 0 +2151 1 -12.082846601 6.54891904198 3.89629102167 0 0 0 +2152 1 -14.8523388533 9.33401455765 3.90832246973 0 0 0 +2153 1 -9.3819754795 6.56297527744 1.09898580661 0 0 0 +2154 1 -6.79765946956 9.34174258988 1.19836999002 0 0 0 +2155 1 -6.68410194233 6.52064047369 3.84693719085 0 0 0 +2156 1 -9.32769928349 9.18885436185 3.90340104088 0 0 0 +2157 1 -3.89452436586 6.71074195145 1.46038494059 0 0 0 +2158 1 -1.4469082849 9.39491005509 1.47730875508 0 0 0 +2159 1 -1.31735663263 6.65086300914 4.1444813568 0 0 0 +2160 1 -4.17294587156 9.49296591197 4.00215346521 0 0 0 +2161 1 1.33937146694 6.77698258325 1.27491504953 0 0 0 +2162 1 3.97889512353 9.58184763443 1.24628608796 0 0 0 +2163 1 3.91919696654 6.67441470611 4.04235415943 0 0 0 +2164 1 1.2855315333 9.32289027962 4.08189544128 0 0 0 +2165 1 6.77913985359 6.67255726616 1.39655749527 0 0 0 +2166 1 9.38634548224 9.23203456409 1.17884235365 0 0 0 +2167 1 9.42295768525 6.66103942382 4.04294712154 0 0 0 +2168 1 6.75276811293 9.32872735947 4.02103418727 0 0 0 +2169 1 12.1683323517 6.85307471163 1.37475332248 0 0 0 +2170 1 14.859263517 9.33968131511 1.38679790412 0 0 0 +2171 1 14.8007409656 6.65413789996 4.17307552194 0 0 0 +2172 1 12.0379545488 9.47450880594 3.93401684605 0 0 0 +2173 1 17.4582013739 6.64750374509 1.30028119311 0 0 0 +2174 1 20.0951142704 9.37891810172 1.01299793 0 0 0 +2175 1 20.2860612193 6.78146642973 3.95174917535 0 0 0 +2176 1 17.4359450367 9.45821791753 4.02128787558 0 0 0 +2177 1 22.8187689425 6.86064168324 1.15057754639 0 0 0 +2178 1 25.7212125888 9.55618304605 1.12597667187 0 0 0 +2179 1 25.4704229878 6.68191564538 3.95943717384 0 0 0 +2180 1 23.1009297852 9.38285412468 3.89274752654 0 0 0 +2181 1 28.3519387405 6.6382351757 1.25819154691 0 0 0 +2182 1 31.0100261667 9.2740042176 1.12590383602 0 0 0 +2183 1 30.9775067463 6.66312606821 3.85997487115 0 0 0 +2184 1 28.1581942956 9.39367615445 3.79768033524 0 0 0 +2185 1 33.7965585793 6.59592103655 1.35097250297 0 0 0 +2186 1 36.4327940997 9.36648825681 1.15513120341 0 0 0 +2187 1 36.7471194814 6.762954415 4.07360526781 0 0 0 +2188 1 33.6790217278 9.41180557915 3.76236607485 0 0 0 +2189 1 39.3574717421 6.80060916157 1.30029934126 0 0 0 +2190 1 41.9798006089 9.40559436602 1.38205737664 0 0 0 +2191 1 42.2473555071 6.54295080615 4.05574437764 0 0 0 +2192 1 39.4585131711 9.29506269186 4.21741290964 0 0 0 +2193 1 44.7339039663 6.66900413602 1.11198305629 0 0 0 +2194 1 47.3433829673 9.37969691834 1.16454417762 0 0 0 +2195 1 47.3729090401 6.62218903748 4.26210884117 0 0 0 +2196 1 44.7069884103 9.35305403086 3.94289380725 0 0 0 +2197 1 50.026057733 6.65733792783 1.7276411962 0 0 0 +2198 1 52.6640479554 9.66203694366 1.58768377126 0 0 0 +2199 1 52.7852589838 6.80788322259 4.18588342082 0 0 0 +2200 1 49.7534739626 9.60285219428 4.11579250201 0 0 0 +2201 1 55.40125 6.75625 1.35125 0 0 0 +2202 1 58.10375 9.45875 1.35125 0 0 0 +2203 1 58.10375 6.75625 4.05375 0 0 0 +2204 1 55.40125 9.45875 4.05375 0 0 0 +2205 1 60.80625 6.75625 1.35125 0 0 0 +2206 1 63.50875 9.45875 1.35125 0 0 0 +2207 1 63.50875 6.75625 4.05375 0 0 0 +2208 1 60.80625 9.45875 4.05375 0 0 0 +2209 1 -63.50875 12.16125 1.35125 0 0 0 +2210 1 -60.80625 14.86375 1.35125 0 0 0 +2211 1 -60.80625 12.16125 4.05375 0 0 0 +2212 1 -63.50875 14.86375 4.05375 0 0 0 +2213 1 -58.10375 12.16125 1.35125 0 0 0 +2214 1 -55.40125 14.86375 1.35125 0 0 0 +2215 1 -55.40125 12.16125 4.05375 0 0 0 +2216 1 -58.10375 14.86375 4.05375 0 0 0 +2217 1 -52.9883564682 12.1150126498 1.34561625595 0 0 0 +2218 1 -50.0483095337 14.5124914791 1.27375994807 0 0 0 +2219 1 -50.0418441842 11.9227000193 3.96703885974 0 0 0 +2220 1 -52.7231138672 14.8546902685 4.04486636961 0 0 0 +2221 1 -46.994469592 11.7565449451 1.5458586835 0 0 0 +2222 1 -44.7852249382 14.7360554943 1.5332382962 0 0 0 +2223 1 -44.5614757022 11.9303305087 4.14624746894 0 0 0 +2224 1 -47.4066755777 14.4809566596 4.0933755619 0 0 0 +2225 1 -41.9902918181 12.12800448 1.47256744102 0 0 0 +2226 1 -39.3520545045 14.6983428306 1.21135361136 0 0 0 +2227 1 -39.2623536563 12.1927306333 4.11605819188 0 0 0 +2228 1 -42.0037614597 14.953460152 3.92528772562 0 0 0 +2229 1 -36.5696782717 11.8540161174 1.33942976 0 0 0 +2230 1 -33.8717345537 14.8511749169 1.33744377922 0 0 0 +2231 1 -33.9035464773 12.115627308 4.17006006035 0 0 0 +2232 1 -36.5379471713 14.9890550376 3.84667235064 0 0 0 +2233 1 -31.077751615 12.02187149 1.33786718674 0 0 0 +2234 1 -28.2528621614 14.7631978132 1.26778658399 0 0 0 +2235 1 -28.3266417146 12.1163557563 3.90083345612 0 0 0 +2236 1 -30.9951716637 14.7900414248 3.99800631319 0 0 0 +2237 1 -25.5175063797 12.1539300799 1.37028423924 0 0 0 +2238 1 -22.9723038659 14.9066761967 0.996516579137 0 0 0 +2239 1 -23.0094270369 12.2855636056 4.12473450504 0 0 0 +2240 1 -25.5560350662 14.8474751526 3.77674626644 0 0 0 +2241 1 -20.3690156918 12.0342599198 1.24140052696 0 0 0 +2242 1 -17.430647169 14.7125303182 1.48687401213 0 0 0 +2243 1 -17.5616771581 11.9053423092 3.8937862363 0 0 0 +2244 1 -20.2208004446 14.8821432332 3.81931460939 0 0 0 +2245 1 -14.8017086117 11.8252734156 1.27433975154 0 0 0 +2246 1 -11.9885620093 14.7257052818 1.43868659831 0 0 0 +2247 1 -12.0194452247 11.8903964145 4.04899032329 0 0 0 +2248 1 -14.5998604675 14.7519008576 4.00526669342 0 0 0 +2249 1 -9.40247805341 11.899726895 1.19765425324 0 0 0 +2250 1 -6.57552256914 14.8248782985 1.42899607167 0 0 0 +2251 1 -6.72004649539 12.1941319279 4.02174127305 0 0 0 +2252 1 -9.30523792782 15.0211557748 4.19245986454 0 0 0 +2253 1 -3.99878055473 12.0909342541 1.39621164072 0 0 0 +2254 1 -1.23359261629 14.9155423822 1.31844736808 0 0 0 +2255 1 -1.37454541422 12.1806551369 3.83695127313 0 0 0 +2256 1 -3.85229725455 14.8507583066 3.94056784328 0 0 0 +2257 1 1.3164552539 12.1913268301 1.2538029069 0 0 0 +2258 1 3.9207270708 14.7315553935 1.45307094314 0 0 0 +2259 1 3.87282965826 12.0214971906 4.06048928692 0 0 0 +2260 1 1.34001481889 14.6691429363 3.9770366803 0 0 0 +2261 1 6.67094196277 12.1120940228 1.30294615186 0 0 0 +2262 1 9.60042167648 14.6507111377 1.45264023618 0 0 0 +2263 1 9.4116299685 11.8844282571 3.94652832929 0 0 0 +2264 1 6.59293026119 14.8957046196 3.9933811544 0 0 0 +2265 1 12.3556806202 12.1107018363 1.29867718105 0 0 0 +2266 1 14.9319238079 14.8151994613 1.28285312481 0 0 0 +2267 1 14.7930237678 12.1372128442 4.04119941484 0 0 0 +2268 1 12.1629945701 14.9606034744 4.09338647611 0 0 0 +2269 1 17.6260219248 12.1319157376 1.1972430341 0 0 0 +2270 1 20.2652050927 14.873309031 1.26738534129 0 0 0 +2271 1 20.2180972936 11.8307908556 3.97594241211 0 0 0 +2272 1 17.5942617521 14.8875335217 3.98062168362 0 0 0 +2273 1 22.9960749826 12.119649909 1.07906786924 0 0 0 +2274 1 25.4487899191 14.8778189264 1.07125795036 0 0 0 +2275 1 25.6636042999 12.0759802366 3.83450466797 0 0 0 +2276 1 22.7072501625 14.795197914 3.78948381512 0 0 0 +2277 1 28.3505406881 12.0394872038 0.971381839452 0 0 0 +2278 1 31.2129323196 14.6302246077 1.16387842698 0 0 0 +2279 1 30.7664582407 12.0436581901 3.79583121921 0 0 0 +2280 1 28.2666973302 14.7511573005 3.69856082969 0 0 0 +2281 1 33.6899839177 11.8566055772 1.17086815027 0 0 0 +2282 1 36.4749752507 14.5835675414 1.10245690946 0 0 0 +2283 1 36.3807567235 12.1470202677 3.96297315844 0 0 0 +2284 1 33.6427157249 14.8327401621 3.91618378446 0 0 0 +2285 1 39.0670340002 11.8904211141 1.35588884331 0 0 0 +2286 1 42.0460420396 14.6720249609 1.32610286977 0 0 0 +2287 1 41.9206007865 12.1591445028 3.94269177844 0 0 0 +2288 1 39.0715658761 14.6864419454 3.80984925109 0 0 0 +2289 1 44.8204714647 12.134804632 1.34742917319 0 0 0 +2290 1 47.3010086975 14.8997123474 1.39529469939 0 0 0 +2291 1 47.1700980889 12.1772199431 4.09393105242 0 0 0 +2292 1 44.611095964 14.9538348527 4.0013460867 0 0 0 +2293 1 50.016319526 12.1915014493 1.40865578467 0 0 0 +2294 1 52.621784258 15.019059163 1.40892426182 0 0 0 +2295 1 52.8548247173 12.2070570286 4.16166014298 0 0 0 +2296 1 49.8912080232 14.9162320343 4.05298343734 0 0 0 +2297 1 55.40125 12.16125 1.35125 0 0 0 +2298 1 58.10375 14.86375 1.35125 0 0 0 +2299 1 58.10375 12.16125 4.05375 0 0 0 +2300 1 55.40125 14.86375 4.05375 0 0 0 +2301 1 60.80625 12.16125 1.35125 0 0 0 +2302 1 63.50875 14.86375 1.35125 0 0 0 +2303 1 63.50875 12.16125 4.05375 0 0 0 +2304 1 60.80625 14.86375 4.05375 0 0 0 +2305 1 -63.50875 -14.86375 6.75625 0 0 0 +2306 1 -60.80625 -12.16125 6.75625 0 0 0 +2307 1 -60.80625 -14.86375 9.45875 0 0 0 +2308 1 -63.50875 -12.16125 9.45875 0 0 0 +2309 1 -58.10375 -14.86375 6.75625 0 0 0 +2310 1 -55.40125 -12.16125 6.75625 0 0 0 +2311 1 -55.40125 -14.86375 9.45875 0 0 0 +2312 1 -58.10375 -12.16125 9.45875 0 0 0 +2313 1 -52.7490977064 -14.8689560423 6.89511568696 0 0 0 +2314 1 -49.8178420352 -12.356118884 6.78737611842 0 0 0 +2315 1 -50.0219240266 -15.090432588 9.5969456805 0 0 0 +2316 1 -52.7413825087 -12.2919724506 9.4390567597 0 0 0 +2317 1 -47.3071701262 -15.1035559085 6.58911179964 0 0 0 +2318 1 -44.6072332224 -12.0110979636 6.5842761004 0 0 0 +2319 1 -44.5629743778 -14.9838221626 9.28435032426 0 0 0 +2320 1 -47.2749540412 -12.5403242823 9.33380562914 0 0 0 +2321 1 -41.897428697 -14.7304117403 6.43143199191 0 0 0 +2322 1 -39.2714419898 -12.3035580754 6.46870984742 0 0 0 +2323 1 -39.3249911578 -14.9202866984 9.45537979905 0 0 0 +2324 1 -41.8715030839 -12.1222304838 9.29302128863 0 0 0 +2325 1 -36.5387951091 -14.9979690296 6.65518260082 0 0 0 +2326 1 -33.8026895504 -12.2640267778 6.44497700286 0 0 0 +2327 1 -33.8740935985 -14.8886755597 9.4018108443 0 0 0 +2328 1 -36.7817003049 -12.0920087302 9.38507223414 0 0 0 +2329 1 -31.0317072764 -14.9495431598 6.71798137551 0 0 0 +2330 1 -28.3052389006 -12.2970735859 6.54107869684 0 0 0 +2331 1 -28.3460942009 -14.7492007476 9.23033882967 0 0 0 +2332 1 -31.1186043784 -12.0287866283 9.33489194263 0 0 0 +2333 1 -25.7212390418 -14.9630012784 6.62689314591 0 0 0 +2334 1 -22.8672273277 -12.4249742846 6.27805724513 0 0 0 +2335 1 -23.05069219 -14.8231050694 9.4286238734 0 0 0 +2336 1 -25.646758697 -12.2414205088 9.24133298949 0 0 0 +2337 1 -20.1998009493 -14.8815552367 6.50899928167 0 0 0 +2338 1 -17.532284017 -12.1478644298 6.58438695901 0 0 0 +2339 1 -17.5653030481 -14.9860704173 9.36059599801 0 0 0 +2340 1 -20.3091905297 -12.4391122802 9.0915792668 0 0 0 +2341 1 -14.7200557308 -14.9658741871 6.69703630815 0 0 0 +2342 1 -12.0602340391 -12.1008493712 6.47415388615 0 0 0 +2343 1 -12.0095727034 -14.8996689362 9.34313192948 0 0 0 +2344 1 -14.8702381839 -12.2579503169 9.33527950754 0 0 0 +2345 1 -9.38878104381 -14.7348305996 6.61958201522 0 0 0 +2346 1 -6.73358233908 -12.0640568044 6.44583260319 0 0 0 +2347 1 -6.61548634185 -14.7973539438 9.18487102469 0 0 0 +2348 1 -9.27598699324 -12.1399633849 9.21100426055 0 0 0 +2349 1 -4.09187722672 -14.81603865 6.57446897189 0 0 0 +2350 1 -1.37928213641 -12.1807653931 6.51769889092 0 0 0 +2351 1 -1.14751946818 -14.8992658106 9.37317088265 0 0 0 +2352 1 -4.11368353744 -12.175086967 9.09574738655 0 0 0 +2353 1 1.37762306555 -15.0059319402 6.38441103652 0 0 0 +2354 1 4.07406369975 -12.0759975822 6.57233213643 0 0 0 +2355 1 3.89150885694 -14.8997063053 9.41705359936 0 0 0 +2356 1 1.12822571973 -12.3323336032 9.41747253214 0 0 0 +2357 1 6.67491760963 -14.7797889411 6.63256961222 0 0 0 +2358 1 9.52592916661 -12.3104345865 6.66065144118 0 0 0 +2359 1 9.3731933709 -14.9146997639 9.54282786473 0 0 0 +2360 1 6.55665149655 -12.1946827524 9.29916550805 0 0 0 +2361 1 12.1184905417 -14.8576510741 6.66164938949 0 0 0 +2362 1 14.8003115581 -12.1141325762 6.89740388234 0 0 0 +2363 1 14.9386533945 -14.9218239132 9.4487993797 0 0 0 +2364 1 12.1874067777 -12.0704739473 9.34423170769 0 0 0 +2365 1 17.6738178138 -14.9383449868 6.81266390525 0 0 0 +2366 1 20.2911890226 -12.0035885451 6.46456438433 0 0 0 +2367 1 20.4721035064 -14.8702350112 9.28514044579 0 0 0 +2368 1 17.5840191407 -12.2949708862 9.32180477296 0 0 0 +2369 1 22.8728883046 -14.935384779 6.51543046786 0 0 0 +2370 1 25.6166301056 -12.5097367073 6.63063839147 0 0 0 +2371 1 25.4708114759 -15.0084055523 9.31730527834 0 0 0 +2372 1 22.7079258078 -11.9932547131 9.14168893108 0 0 0 +2373 1 28.2650211821 -15.0450142045 6.5392588921 0 0 0 +2374 1 30.9933645001 -12.4314165664 6.62579760132 0 0 0 +2375 1 31.0570417682 -15.2351681912 9.15081707866 0 0 0 +2376 1 28.3686231653 -12.4252225781 9.22042214419 0 0 0 +2377 1 33.6381172809 -15.005127764 6.53029807684 0 0 0 +2378 1 36.4075788581 -12.2368622753 6.55964259789 0 0 0 +2379 1 36.4421983818 -15.1182212247 9.39511277333 0 0 0 +2380 1 33.8371154088 -12.5514655864 9.12941756408 0 0 0 +2381 1 39.1394494732 -15.0709064478 6.61566746941 0 0 0 +2382 1 41.6166431606 -12.3640344422 6.62717443723 0 0 0 +2383 1 41.6475617862 -14.8151672735 9.25439881918 0 0 0 +2384 1 38.8757391086 -12.2551884778 9.36644411177 0 0 0 +2385 1 44.5663797523 -14.7284879703 6.70286700744 0 0 0 +2386 1 47.2622964922 -11.9989507259 6.53240427254 0 0 0 +2387 1 47.3053716409 -14.7443518535 9.36223165586 0 0 0 +2388 1 44.5304986997 -